Home
last modified time | relevance | path

Searched refs:type_node (Results 1 – 25 of 372) sorted by relevance

12345678910>>...15

/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/features/
H A Dcreate_stripped_java_factory.py115 def _GetNames(type_node): argument
118 if type_node is None:
122 names = [type_node.name]
123 if type_node.arguments:
129 return _GetNames(type_node.type)
132 return [type_node.name]
136 def _FormatType(type_node): argument
137 if type_node is None:
141 if not type_node.arguments:
142 return type_node.name
[all …]
/dports/devel/py-graphql-core/graphql-core-3.1.6/tests/language/
H A Dtest_schema_parser.py62 def type_node(name: str, loc: Location): function
435 type_node("Wo", (22, 24)),
436 type_node("rld", (27, 30)),
453 type_node("Wo", (27, 29)),
454 type_node("rld", (32, 35)),
471 type_node("Wo", (24, 26)),
472 type_node("rld", (29, 32)),
489 type_node("Wo", (29, 31)),
490 type_node("rld", (34, 37)),
692 type_node("Wo", (14, 16)),
[all …]
/dports/devel/py-graphql-core/graphql-core-3.1.6/src/graphql/utilities/
H A Dtype_from_ast.py19 schema: GraphQLSchema, type_node: NamedTypeNode
26 schema: GraphQLSchema, type_node: ListTypeNode
33 schema: GraphQLSchema, type_node: NonNullTypeNode
39 def type_from_ast(schema: GraphQLSchema, type_node: TypeNode) -> Optional[GraphQLType]:
45 type_node: TypeNode,
56 if isinstance(type_node, ListTypeNode):
57 inner_type = type_from_ast(schema, type_node.type)
59 if isinstance(type_node, NonNullTypeNode):
60 inner_type = type_from_ast(schema, type_node.type)
63 if isinstance(type_node, NamedTypeNode):
[all …]
/dports/devel/py-graphql-core2/graphql-core-2.2.1/graphql/utils/
H A Dtype_from_ast.py12 def type_from_ast(schema, type_node): argument
14 if isinstance(type_node, ast.ListType):
15 inner_type = type_from_ast(schema, type_node.type)
18 elif isinstance(type_node, ast.NonNullType):
19 inner_type = type_from_ast(schema, type_node.type)
22 elif isinstance(type_node, ast.NamedType):
23 schema_type = schema.get_type(type_node.name.value)
26 raise Exception("Unexpected type kind: {type_kind}".format(type_kind=type_node))
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/junipernetworks/junos/plugins/module_utils/network/junos/config/bgp_address_family/
H A Dbgp_address_family.py282 type_node, "accepted-prefix-limit"
382 type_node, "aggregate_label"
478 type_node, "entropy-label"
497 type_node, "explicit-null"
528 type_node, "graceful-restart"
538 type_node,
579 type_node, "output-queue-priority"
609 type_node, "prefix-limit"
668 type_node, "route-refresh-priority"
697 type_node, "withdraw-priority"
[all …]
/dports/devel/py-tartiflette/tartiflette-1.4.1/tartiflette/utils/
H A Dtype_from_ast.py16 type_node: Union["ListTypeNode", "NonNullTypeNode", "NamedTypeNode"],
28 if isinstance(type_node, ListTypeNode):
29 inner_type = schema_type_from_ast(schema, type_node.type)
31 if isinstance(type_node, NonNullTypeNode):
32 inner_type = schema_type_from_ast(schema, type_node.type)
34 if isinstance(type_node, NamedTypeNode):
36 return schema.find_type(type_node.name.value)
/dports/astro/oskar/OSKAR-2.8.0/docs/settings/
H A Dxml_to_rst.py136 type_node = get_first_child(node, ["type", "t"])
175 options = get_type_params(type_node)
218 p = get_type_params(type_node)
224 p = get_type_params(type_node)
230 p = get_type_params(type_node)
240 p = get_type_params(type_node)
249 p = get_type_params(type_node)
259 p = get_type_params(type_node)
279 type_node = child.find("type")
280 if type_node is None and depth == 0:
[all …]
/dports/lang/nwcc/nwcc_0.8.3/
H A Dtype.h229 struct type_node { struct
271 struct type_node *next; argument
274 struct type_node *prev; argument
367 struct type_node *tlist;
369 struct type_node *tlist_tail;
388 struct type_node *alloc_type_node(void);
393 struct type_node *
394 copy_tlist(struct type_node **dest, const struct type_node *tlist);
442 int is_any_elem_vla(struct type_node *tn);
H A Dtype.c103 struct type_node *
105 struct type_node *ret; in alloc_type_node()
190 compare_tlist(struct type_node *dest, struct type_node *src, int flag) {
388 struct type_node *
389 copy_tlist(struct type_node **dest, const struct type_node *src) {
392 struct type_node *tn;
550 struct type_node *te;
723 struct type_node *t;
968 struct type_node *tn;
1009 struct type_node *tn;
[all …]
/dports/lang/nwcc/nwcc_0.8.3/cpp/
H A Dtype.h226 struct type_node { struct
256 struct type_node *next; argument
259 struct type_node *prev; argument
344 struct type_node *tlist;
346 struct type_node *tlist_tail;
365 struct type_node *alloc_type_node(void);
370 struct type_node *
371 copy_tlist(struct type_node **dest, const struct type_node *tlist);
H A Dtype.c104 struct type_node *
106 struct type_node *ret; in alloc_type_node()
191 compare_tlist(struct type_node *dest, struct type_node *src, int flag) {
388 struct type_node *
389 copy_tlist(struct type_node **dest, const struct type_node *src) {
392 struct type_node *tn;
533 struct type_node *te;
683 struct type_node *t;
928 struct type_node *tn;
969 struct type_node *tn;
[all …]
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gcc/gcc/treelang/
H A Dtreetree.c129 static tree tree_lang_unsigned_type (tree type_node);
130 static tree tree_lang_signed_type (tree type_node);
291 tree type_node; in tree_code_create_function_prototype() local
310 type_node = get_type_for_numeric_type (ret_type); in tree_code_create_function_prototype()
1011 tree_lang_unsigned_type (tree type_node) in tree_lang_unsigned_type() argument
1019 tree_lang_signed_type (tree type_node) in tree_lang_signed_type() argument
1281 tree_push_type_decl(tree id, tree type_node) in tree_push_type_decl() argument
1284 TYPE_NAME (type_node) = decl; in tree_push_type_decl()
1285 TYPE_STUB_DECL (type_node) = decl; in tree_push_type_decl()
1296 TREE_TYPE (type_node) = type_node; in tree_push_atomic_type_decl()
[all …]
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/gcc/treelang/
H A Dtreetree.c129 static tree tree_lang_unsigned_type (tree type_node);
130 static tree tree_lang_signed_type (tree type_node);
291 tree type_node; in tree_code_create_function_prototype() local
310 type_node = get_type_for_numeric_type (ret_type); in tree_code_create_function_prototype()
1011 tree_lang_unsigned_type (tree type_node) in tree_lang_unsigned_type() argument
1019 tree_lang_signed_type (tree type_node) in tree_lang_signed_type() argument
1281 tree_push_type_decl(tree id, tree type_node) in tree_push_type_decl() argument
1284 TYPE_NAME (type_node) = decl; in tree_push_type_decl()
1285 TYPE_STUB_DECL (type_node) = decl; in tree_push_type_decl()
1296 TREE_TYPE (type_node) = type_node; in tree_push_atomic_type_decl()
[all …]
/dports/www/py-spyne/spyne-2.13.16/spyne/test/
H A Dsort_wsdl.py54 type_node = None
58 assert type_node is None
59 type_node = e
82 for e in type_node:
89 type_node.append(s)
/dports/devel/nsgenbind/nsgenbind-0.8/src/
H A Dduk-libdom-dictionary.c113 struct webidl_node *type_node; in output_member_acessor() local
118 type_node = webidl_node_find_type( in output_member_acessor()
123 if (type_node == NULL) { in output_member_acessor()
132 webidl_node_getnode(type_node), in output_member_acessor()
394 struct webidl_node *type_node; in output_member_declaration() local
397 type_node = webidl_node_find_type( in output_member_declaration()
402 if (type_node == NULL) { in output_member_declaration()
411 webidl_node_getnode(type_node), in output_member_declaration()
/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/monodoc/Monodoc/providers/
H A Decma-provider.cs394 foreach (Node type_node in ns_node.ChildNodes){ in PopulateIndex()
395 string typename = type_node.Caption.Substring (0, type_node.Caption.IndexOf (' ')); in PopulateIndex()
399 string url = type_node.PublicUrl; in PopulateIndex()
423 foreach (Node c in type_node.ChildNodes){ in PopulateIndex()
452 foreach (Node c in type_node.ChildNodes){ in PopulateIndex()
546 foreach (Node type_node in ns_node.ChildNodes) { in PopulateSearchableIndex()
547 string typename = type_node.Caption.Substring (0, type_node.Caption.IndexOf (' ')); in PopulateSearchableIndex()
549 string url = type_node.PublicUrl; in PopulateSearchableIndex()
565 doc.Title = type_node.Caption; in PopulateSearchableIndex()
693 doc.Title = type_node.Caption; in PopulateSearchableIndex()
[all …]
/dports/devel/tigcc/tigcc-0.96.b8_10/gnu/gcc-4.1-20060728/gcc/treelang/
H A Dtreetree.c130 static tree tree_lang_unsigned_type (tree type_node);
131 static tree tree_lang_signed_type (tree type_node);
326 tree type_node; in tree_code_create_function_prototype() local
336 type_node = tree_code_get_type (parm->type); in tree_code_create_function_prototype()
346 type_node = tree_code_get_type (ret_type); in tree_code_create_function_prototype()
347 fn_type = build_function_type (type_node, type_list); in tree_code_create_function_prototype()
879 tree_lang_unsigned_type (tree type_node) in tree_lang_unsigned_type() argument
887 tree_lang_signed_type (tree type_node) in tree_lang_signed_type() argument
1122 tree_push_type_decl(tree id, tree type_node) in tree_push_type_decl() argument
1124 tree decl = build_decl (TYPE_DECL, id, type_node); in tree_push_type_decl()
[all …]
/dports/devel/godot-tools/godot-demo-projects-8d9d58f112d8/3d/physics_tests/tests/performance/
H A Dtest_perf_contacts.gd24 var type_node = $DynamicShapes.get_child(0)
25 _object_templates.push_back(type_node)
26 $DynamicShapes.remove_child(type_node)
61 var type_node = _object_templates[type_index]
62 if type_node.name.find(type_name) > -1:
/dports/science/conduit/conduit-0.8.0/src/tests/conduit/
H A Dt_conduit_node_to_array.cpp74 Node type_node; in TEST() local
75 convert_fun(data_node, type_node); in TEST()
77 EXPECT_EQ(type_node.dtype().id(), node_tid); in TEST()
78 EXPECT_EQ(type_node.dtype().number_of_elements(), in TEST()
82 convert_to_uint8_array(type_node, temp_node); in TEST()
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/src/relay/backend/contrib/codegen_c/
H A Dcodegen.cc86 const auto* type_node = cn->checked_type().as<TensorTypeNode>(); in VisitExpr_() local
87 CHECK(type_node); in VisitExpr_()
88 const auto& dtype = GetDtypeString(type_node); in VisitExpr_()
132 const auto* type_node = call->checked_type().as<TensorTypeNode>(); in VisitExpr_() local
133 CHECK(type_node); in VisitExpr_()
134 const auto& dtype = GetDtypeString(type_node); in VisitExpr_()
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/sql/
H A Dparse_tree_column_attrs.h860 PT_type *type_node;
862 explicit PT_field_def_base(PT_type *type_node) in PT_field_def_base() argument
870 type_node(type_node) {} in PT_field_def_base()
874 if (super::contextualize(pc) || type_node->contextualize(pc)) return true; in contextualize()
876 type = type_node->type; in contextualize()
877 type_flags = type_node->get_type_flags(); in contextualize()
878 length = type_node->get_length(); in contextualize()
879 dec = type_node->get_dec(); in contextualize()
880 charset = type_node->get_charset(); in contextualize()
881 uint_geom_type = type_node->get_uint_geom_type(); in contextualize()
[all …]
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/gcc.dg/
H A Dloop-invariant.c12 struct type_node struct
19 struct type_node *referring; argument
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/gcc.dg/
H A Dloop-invariant.c12 struct type_node struct
19 struct type_node *referring; argument
/dports/devel/riscv64-gcc/gcc-8.3.0/gcc/testsuite/gcc.dg/
H A Dloop-invariant.c12 struct type_node struct
19 struct type_node *referring; argument
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/gcc.dg/
H A Dloop-invariant.c12 struct type_node struct
19 struct type_node *referring; argument

12345678910>>...15