Home
last modified time | relevance | path

Searched refs:selection_set (Results 1 – 25 of 231) sorted by relevance

12345678910

/dports/devel/py-graphql-core/graphql-core-3.1.6/tests/language/
H A Dtest_parser.py122 selection_set = cast(OperationDefinitionNode, definitions[0]).selection_set
223 selection_set = definition.selection_set
225 assert selection_set.loc == (0, 40)
253 selection_set = field.selection_set # type: ignore
268 assert field.selection_set is None
279 assert field.selection_set is None
290 assert field.selection_set is None
316 selection_set = definition.selection_set
318 assert selection_set.loc == (6, 29)
332 selection_set = field.selection_set # type: ignore
[all …]
H A Dtest_visitor.py276 selection_set = None variable in describe_visitor.allows_visiting_only_specified_nodes.TestVisitor
294 selection_set = None variable in describe_visitor.allows_editing_a_node_both_on_enter_and_on_leave.TestVisitor
299 assert len(node.selection_set.selections) == 3
300 self.selection_set = node.selection_set
301 node.selection_set = SelectionSetNode(selections=[])
308 assert not node.selection_set.selections
309 node.selection_set = self.selection_set
373 assert node.selection_set
374 node.selection_set.selections = (
981 selection_set: Optional[SelectionSetNode]
[all …]
/dports/devel/py-tartiflette/tartiflette-1.4.1/tartiflette/language/validators/query/
H A Dsingle_root_field.py28 self, operation, selection_set, fragments, path
30 nb_selections = len(selection_set.selections)
36 nodes=[operation, selection_set],
43 selected = selection_set.selections[0]
51 operation, frag.selection_set, fragments, path
56 operation, selected.selection_set, fragments, path
66 operation.selection_set,
H A Dleaf_field_selections.py34 if not field.selection_set and is_gql_composite_type:
44 if field.selection_set and not is_gql_composite_type:
/dports/devel/py-tartiflette/tartiflette-1.4.1/tartiflette/language/ast/
H A Dinline_fragment.py17 selection_set: "SelectionSetNode",
32 self.selection_set = selection_set
49 and self.selection_set == other.selection_set
65 self.selection_set,
H A Dfragment_definition.py25 selection_set: "SelectionSetNode",
43 self.selection_set = selection_set
60 and self.selection_set == other.selection_set
77 self.selection_set,
H A Dfield.py28 selection_set: Optional["SelectionSetNode"] = None,
49 self.selection_set = selection_set
66 and self.selection_set == other.selection_set
84 self.selection_set,
H A Doperation_definition.py25 selection_set: "SelectionSetNode",
47 self.selection_set = selection_set
67 and self.selection_set == other.selection_set
86 self.selection_set,
/dports/devel/py-graphql-core/graphql-core-3.1.6/src/graphql/validation/rules/
H A Dscalar_leafs.py21 selection_set = node.selection_set
23 if selection_set:
29 selection_set,
32 elif not selection_set:
H A Doverlapping_fields_can_be_merged.py72 selection_set,
158 selection_set: SelectionSetNode,
555 selection_set1 = node1.selection_set
556 selection_set2 = node2.selection_set
629 selection_set: SelectionSetNode,
637 cached = cached_fields_and_fragment_names.get(selection_set)
645 cached_fields_and_fragment_names[selection_set] = cached
660 cached = cached_fields_and_fragment_names.get(fragment.selection_set)
673 selection_set: SelectionSetNode,
677 for selection in selection_set.selections:
[all …]
H A Dsingle_field_subscriptions.py20 if len(node.selection_set.selections) != 1:
29 node.selection_set.selections[1:],
/dports/devel/py-tartiflette/tartiflette-1.4.1/tartiflette/execution/
H A Dcollect.py181 selection_set: "SelectionSetNode",
212 for selection in selection_set.selections:
230 selection.selection_set,
253 fragment_definition.selection_set,
279 selection_set = field_node.selection_set
280 if selection_set:
284 selection_set,
/dports/devel/py-graphql-core2/graphql-core-2.2.1/graphql/validation/rules/
H A Doverlapping_fields_can_be_merged.py172 selection_set, # type: SelectionSet
181 context, cached_fields_and_fragment_names, parent_type, selection_set
566 selection_set1 = ast1.selection_set
567 selection_set2 = ast2.selection_set
590 selection_set, # type: SelectionSet argument
593 cached = cached_fields_and_fragment_names.get(selection_set)
604 cached_fields_and_fragment_names[selection_set] = cached
619 cached = cached_fields_and_fragment_names.get(fragment.selection_set)
636 selection_set, # type: SelectionSet argument
642 for selection in selection_set.selections:
[all …]
H A Dscalar_leafs.py27 if node.selection_set:
31 [node.selection_set],
35 elif not node.selection_set:
/dports/devel/py-graphql-core2/graphql-core-2.2.1/graphql/language/
H A Dast.py84 self.selection_set = selection_set
96 and self.selection_set == other.selection_set
115 self.selection_set,
222 self.selection_set = selection_set
234 and self.selection_set == other.selection_set
256 self.selection_set,
358 self.selection_set = selection_set
368 and self.selection_set == other.selection_set
409 self.selection_set = selection_set
420 and self.selection_set == other.selection_set
[all …]
H A Dprinter.py36 selection_set = node.selection_set
42 return selection_set
44 return join([op, join([name, var_defs]), directives, selection_set], " ")
62 node.selection_set,
84 node.selection_set,
94 + node.selection_set
/dports/devel/py-graphql-core2/graphql-core-2.2.1/graphql/execution/
H A Dutils.py165 selection_set = field_ast.selection_set
166 if selection_set:
170 selection_set,
227 selection_set, # type: SelectionSet argument
240 for selection in selection_set.selections:
257 ctx, runtime_type, selection.selection_set, fields, prev_fragment_names
279 ctx, runtime_type, fragment.selection_set, fields, prev_fragment_names
/dports/devel/py-graphql-core/graphql-core-3.1.6/src/graphql/utilities/
H A Dseparate_operations.py37 definition_node.selection_set
46 for fragment_name in collect_dependencies(operation.selection_set):
98 def collect_dependencies(selection_set: SelectionSetNode) -> List[str]:
100 visit(selection_set, collector)
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/extension/dbus/
H A Dpytester.py36 selection_set(x)
115 doc.selection_set(rect2)
117 doc.selection_set(rect3)
132 doc.selection_set(rect1)
135 doc.selection_set(rect4)
166 doc.selection_set(rect1)
/dports/devel/py-graphql-core/graphql-core-3.1.6/src/graphql/language/
H A Dprinter.py34 selection_set: str
80 name, op, selection_set = node.name, node.operation, node.selection_set
86 join((op.value, join((name, var_defs)), directives, selection_set), " ")
88 else selection_set
111 return join((args_line, join(node.directives, " "), node.selection_set), " ")
130 node.selection_set,
/dports/devel/py-graphql-core2/graphql-core-2.2.1/graphql/validation/
H A Dvalidation.py135 nodes_to_visit = [operation.selection_set]
146 nodes_to_visit.append(fragment.selection_set)
161 elif selection.selection_set:
162 sets_to_visit.append(selection.selection_set)
/dports/cad/openroad/OpenROAD-2.0/src/gui/src/
H A Dgui.cpp233 bool Gui::anyObjectInSet(bool selection_set, odb::dbObjectType obj_type) const in anyObjectInSet() argument
235 return main_window->anyObjectInSet(selection_set, obj_type); in anyObjectInSet()
279 SelectionSet selection_set; in addNetToHighlightSet() local
280 selection_set.insert(makeSelected(net)); in addNetToHighlightSet()
281 main_window->addHighlighted(selection_set, highlight_group); in addNetToHighlightSet()
/dports/devel/py-tartiflette/tartiflette-1.4.1/libgraphqlparser/
H A Dparser.ypp221 %type <selectionSet> selection_set
369selection_set { $$ = new OperationDefinition(@$, strdup("query"), nullptr, nullptr, nullptr, $1); }
370 …| operation_type name_opt selection_set { $$ = new OperationDefinition(@$, $1, $2, nullptr, …
371 …| operation_type name_opt variable_definitions selection_set { $$ = new OperationDefinition(…
372 …| operation_type name_opt directives selection_set { $$ = new OperationDefinition(@$, $1, $2…
373 …| operation_type name_opt variable_definitions directives selection_set { $$ = new Operation…
405 selection_set:
411 | selection_set
446 …"..." "on" type_condition directives_opt selection_set { $$ = new InlineFragment(@$, $3, $4, $5); }
447 | "..." directives_opt selection_set { $$ = new InlineFragment(@$, nullptr, $2, $3); }
[all …]
/dports/devel/libgraphqlparser/libgraphqlparser-0.7.0/
H A Dparser.ypp223 %type <selectionSet> selection_set
371selection_set { $$ = new OperationDefinition(@$, strdup("query"), nullptr, nullptr, nullptr, $1); }
372 …| operation_type name_opt selection_set { $$ = new OperationDefinition(@$, $1, $2, nullptr, …
373 …| operation_type name_opt variable_definitions selection_set { $$ = new OperationDefinition(…
374 …| operation_type name_opt directives selection_set { $$ = new OperationDefinition(@$, $1, $2…
375 …| operation_type name_opt variable_definitions directives selection_set { $$ = new Operation…
407 selection_set:
413 | selection_set
448 …"..." "on" type_condition directives_opt selection_set { $$ = new InlineFragment(@$, $3, $4, $5); }
449 | "..." directives_opt selection_set { $$ = new InlineFragment(@$, nullptr, $2, $3); }
[all …]
/dports/x11-toolkits/py-easygui/easygui-0.98.1/easygui/boxes/
H A Dchoice_box.py464 self.choiceboxWidget.selection_set(first=n)
471 self.choiceboxWidget.selection_set(first=n)
479 self.choiceboxWidget.selection_set(
482 self.choiceboxWidget.selection_set(first=0)
489 self.choiceboxWidget.selection_set(first=lastIndex)
497 self.choiceboxWidget.selection_set(0, len(self.choices) - 1)

12345678910