| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| UnresolvedSet.h | 83 iterator begin() { return iterator(decls().begin()); } 84 iterator end() { return iterator(decls().end()); } 86 const_iterator begin() const { return const_iterator(decls().begin()); } 87 const_iterator end() const { return const_iterator(decls().end()); } 89 ArrayRef<DeclAccessPair> pairs() const { return decls(); } 96 decls().push_back(DeclAccessPair::make(D, AS)); 103 for (DeclsTy::iterator I = decls().begin(), E = decls().end(); I != E; ++I) 117 void erase(unsigned I) { decls()[I] = decls().pop_back_val(); 139 DeclsTy &decls() { function in class:clang::UnresolvedSetImpl 142 const DeclsTy &decls() const { function in class:clang::UnresolvedSetImpl [all...] |
| TemplateName.h | 124 llvm::ArrayRef<NamedDecl*> decls() const { function in class:clang::OverloadedTemplateStorage
|
| DeclBase.h | 324 /// Access - Used by C++ decls for the access specifier. 643 /// deserialized Decls. 1243 using Decls = llvm::PointerUnion<NamedDecl*, DeclListNode*>; 1248 Decls Ptr; 1249 iterator(Decls Node) : Ptr(Node) { } 1287 Decls Rest = nullptr; 1293 using Decls = DeclListNode::Decls; 1296 Decls Result; 1300 DeclContextLookupResult(Decls Result) : Result(Result) { 2109 decl_range decls() const { return decl_range(decls_begin(), decls_end()); } function in class:clang::DeclContext [all...] |
| ExprCXX.h | 2978 llvm::iterator_range<decls_iterator> decls() const { function in class:clang::OverloadExpr
|
| /src/external/apache2/llvm/dist/clang/utils/ |
| modfuzz.py | 4 # 1) Update the 'decls' list below with your fuzzing configuration. 25 if i not in model.decls: 28 if i in model.decls: 34 model.decls[i] = True 37 decls = [ variable 70 self.decls = {} 141 model.modules[n] = (model.source, model.decls) 142 (model.source, model.decls) = ('', {}) 148 d = random.choice([decl for decl in decls if decl.valid(model)]) 159 model.decls.update(model.modules[module_name][1] [all...] |
| /src/usr.bin/rpcgen/ |
| rpc_parse.c | 124 decl_list *decls; local 132 tailp = &defp->def.st.decls; 135 decls = ALLOC(decl_list); 136 decls->decl = dec; 137 *tailp = decls; 138 tailp = &decls->next; 151 decl_list *decls; local 164 tailp = &defp->def.st.decls; 192 decls = ALLOC(decl_list); 193 plist->args.decls = decls [all...] |
| rpc_parse.h | 94 decl_list *decls; member in struct:struct_def 115 decl_list *decls; member in struct:arg_list
|
| /src/external/gpl3/gcc.old/dist/gcc/objc/ |
| objc-runtime-shared-support.cc | 43 /* Hooks for string decls etc. */ 161 tree decls, *chain = NULL; local 166 decls = add_field_decl (objc_object_type, "self", &chain); 172 objc_finish_struct (objc_super_template, decls); 187 tree decls, *chain = NULL; local 192 decls = add_field_decl (objc_selector_type, "_cmd", &chain); 200 objc_finish_struct (_SLT_record, decls); 209 tree decls, *chain = NULL; local 214 decls = add_field_decl (objc_selector_type, "_cmd", &chain); 219 objc_finish_struct (proto_record, decls); 234 tree array_type, decls, *chain = NULL; local 265 tree array_type, decls, *chain = NULL; local 476 tree decls, *chain = NULL; local 568 tree array_type, decls, *chain = NULL; local 594 tree decls, *chain = NULL; local [all...] |
| objc-gnu-runtime-abi-01.cc | 212 type = lang_hooks.decls.pushdecl (build_decl (input_location, 332 tree decls, *chain = NULL; local 337 decls = add_field_decl (objc_selector_type, "sel_id", &chain); 342 objc_finish_struct (objc_selector_template, decls); 364 tree ptype, decls, *chain = NULL; local 369 decls = add_field_decl (build_pointer_type (objc_class_template), 417 objc_finish_struct (objc_class_template, decls); 431 tree ptype, decls, *chain = NULL; local 436 decls = add_field_decl (string_type_node, "category_name", &chain); 451 objc_finish_struct (objc_category_template, decls); 465 tree ptype, decls, *chain = NULL; local 1857 vec<constructor_elt, va_gc> *decls = NULL; local [all...] |
| objc-next-runtime-abi-01.cc | 275 type = lang_hooks.decls.pushdecl (build_decl (input_location, 425 tree ptype, decls, *chain = NULL; local 430 decls = add_field_decl (build_pointer_type (objc_class_template), 485 objc_finish_struct (objc_class_template, decls); 504 tree ptype, decls, *chain = NULL; local 509 decls = add_field_decl (string_type_node, "category_name", &chain); 535 objc_finish_struct (objc_category_template, decls); 558 tree ptype, decls, *chain = NULL; local 571 decls = add_field_decl (ptype, "isa", &chain); 586 objc_finish_struct (objc_protocol_template, decls); 1052 tree decls, *chain = NULL; local 1081 tree decls, *chain = NULL; local 1115 tree ptrt, decls, *chain = NULL; local 1258 tree array_type, decls, *chain = NULL; local 2426 tree decls, temp_type, *chain = NULL; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/c-family/ |
| c-gimplify.cc | 74 /* Since walk_tree doesn't call the callback function on the decls 652 tree decls, bind; local 655 decls = NULL_TREE; 657 decls = BLOCK_VARS (block); 660 decls = block; 661 if (DECL_ARTIFICIAL (decls)) 666 BLOCK_VARS (block) = decls; 673 if (decls || block) 675 bind = build3 (BIND_EXPR, void_type_node, decls, body, block);
|
| c-pragma.cc | 504 tree oldname, newname, decls, x; local 517 for (decls = c_linkage_bindings (oldname); 518 decls; ) 521 if (TREE_CODE (decls) == TREE_LIST) 523 decl = TREE_VALUE (decls); 524 decls = TREE_CHAIN (decls); 528 decl = decls; 529 decls = NULL_TREE;
|
| /src/external/gpl3/gcc.old/dist/gcc/d/ |
| types.cc | 343 /* For all decls in the FIELDS chain, adjust their field offset by OFFSET. 437 /* Because the front-end shares field decls across classes, don't 496 Dsymbols *decls = attrib->include (NULL); local 497 if (decls != NULL) 499 fields += layout_aggregate_members (decls, context, inherited_p);
|
| d-builtins.cc | 50 /* Record built-in types and their associated decls for re-use when 686 /* Recursively search through attribute decls. */ 687 Dsymbols *decls = ad->include (NULL); local 688 if (decls && decls->length) 690 for (size_t i = 0; i < decls->length; i++) 692 Dsymbol *sym = (*decls)[i]; 882 /* Used for ModuleInfo, ClassInfo, and Interface decls. */
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| ipa-free-lang-data.cc | 54 /* Data used when collecting DECLs and TYPEs for language data removal. */ 59 free_lang_data_d () : decls (100), types (100) {} 68 auto_vec<tree> decls; member in class:__anon11247::free_lang_data_d 82 fld->decls.safe_push (t); 674 /* We need to keep field decls associated with their trees. Otherwise tree 716 decls, so we have to do our own traversals here. */ 868 /* Find decls and types in T. */ 909 /* Find decls and types referenced in EH region R and store them in 910 FLD->DECLS and FLD->TYPES. */ 949 /* Find decls and types referenced in cgraph node N and store them i [all...] |
| langhooks.h | 198 /* Language hooks related to decls and the symbol table. */ 213 /* Returns the chain of decls so far in the current scope level. */ 254 With 'for_present_check' set to false, decls which are optional parameters 255 themselve are returned as tree - or a NULL_TREE otherwise. Those decls are 541 struct lang_hooks_for_decls decls; member in struct:lang_hooks
|
| attribs.cc | 1119 that is, the target strings of the function decls are different. This assumes 1140 /* Diagnose missing target attribute if one of the decls is already 1683 /* Given decls OLDDECL and NEWDECL, merge their attributes and return 2082 const tree decls[] = { decl, TREE_TYPE (decl) }; 2085 || TREE_DEPRECATED (decls[1]) 2087 || TREE_DEPRECATED (TREE_TYPE (decls[1]))) 2091 tree decl_attrs[] = { DECL_ATTRIBUTES (decl), TYPE_ATTRIBUTES (decls[1]) }; 2136 if (has_attribute (decls[k], decl_attrs[k], blacklist[i])) 2460 /* VLA bounds that are expressions as opposed to DECLs are 2080 const tree decls[] = { decl, TREE_TYPE (decl) }; local
|
| tree-nested.cc | 365 sized DECLs, and inefficient to copy large aggregates. Don't bother 371 /* Variable-sized DECLs can only come from OMP clauses at this point 1145 indirections apply to decls for which use_pointer_in_frame is true. */ 1620 /* Create nonlocal debug decls for nonlocal VLA array bounds. */ 1830 /* Adjust decls mentioned in NAMELIST_DECL. */ 1831 tree decls = NAMELIST_DECL_ASSOCIATED_DECL (var); local 1835 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (decls), i, decl) 1841 CONSTRUCTOR_ELT (decls, i)->value 2582 /* Adjust decls mentioned in NAMELIST_DECL. */ 2583 tree decls = NAMELIST_DECL_ASSOCIATED_DECL (var) local [all...] |
| tree-inline.cc | 83 multiple function decls, each with a unique parameter list. 227 /* Remap anonymous SSA names or SSA names of anonymous decls. */ 356 necessary DECLs have already been remapped and we do not want to duplicate 708 decl and for all embedded decls returns the passed in decl. */ 727 /* We cannot duplicate function decls. */ 740 remap_decls (tree decls, vec<tree, va_gc> **nonlocalized_list, 747 for (old_var = decls; old_var; old_var = DECL_CHAIN (old_var)) 753 /* We need to add this variable to the local decls as otherwise 921 /* This will remap a lot of the same decls again, but this should be 965 /* This will remap a lot of the same decls again, but this should b 5798 tree old_var, decls = gimple_bind_vars (stmt); local [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| Scope.h | 58 /// just contain loop constructs but don't contain decls. 300 decl_range decls() const { function in class:clang::Scope
|
| /src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| UninitializedValues.cpp | 55 // DeclToIndex: a mapping from Decls we track to value indices. 162 unsigned decls = declToIndex.size(); local 163 scratch.resize(decls); 169 val.resize(decls); 372 for (auto *DI : DS->decls()) { 773 for (auto *DI : DS->decls()) {
|
| /src/external/apache2/llvm/dist/clang/lib/Parse/ |
| Parser.cpp | 418 // decls in it. 1085 Decl* decls[] = {AnonRecord, TheDecl}; local 1086 return Actions.BuildDeclaratorGroup(decls);
|
| ParseDeclCXX.cpp | 2682 Decl* decls[] = {AnonRecord, TheDecl}; local 2683 return Actions.BuildDeclaratorGroup(decls);
|
| ParseDecl.cpp | 1703 // parsing c none objective-c decls. 1791 Decl* decls[] = {AnonRecord, TheDecl}; local 1792 return Actions.BuildDeclaratorGroup(decls); 6635 // this in C and not C++, where the decls will continue to live in the 6640 for (Decl *D : getCurScope()->decls()) {
|
| /src/external/gpl3/gcc.old/dist/gcc/lto/ |
| lto-common.cc | 203 vec<tree, va_gc> *decls = NULL; local 204 vec_alloc (decls, size); 207 vec_safe_push (decls, 211 state->streams[i] = decls; 295 random local decls in types. */ 606 /* Check presence of pointers to decls in fields of a tree_typed T. */ 615 /* Check presence of pointers to decls in fields of a tree_common T. */ 626 /* Check presence of pointers to decls in fields of a decl_minimal T. */ 638 /* Check presence of pointers to decls in fields of a decl_common T. */ 653 /* Check presence of pointers to decls in fields of a decl_with_vis T. * [all...] |