| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| DeclGroup.cpp | 1 //===- DeclGroup.cpp - Classes for representing groups of Decls -----------===// 20 DeclGroup* DeclGroup::Create(ASTContext &C, Decl **Decls, unsigned NumDecls) { 24 new (Mem) DeclGroup(NumDecls, Decls); 28 DeclGroup::DeclGroup(unsigned numdecls, Decl** decls) : NumDecls(numdecls) { 30 assert(decls); 31 std::uninitialized_copy(decls, decls + numdecls,
|
| /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...] |
| /src/external/gpl3/gcc/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...] |
| /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...] |
| /src/usr.bin/rpcgen/ |
| rpc_clntout.c | 123 ptype(proc->args.decls->decl.prefix, proc->args.decls->decl.type, 1); 136 if (!streq(proc->args.decls->decl.type, "void")) { 138 for (l = proc->args.decls; l != NULL; l = l->next) 199 if (newstyle && !args2 && (streq(proc->args.decls->decl.type, "void"))) { 218 for (l = proc->args.decls; l != NULL; l = l->next) { 239 stringfix(proc->args.decls->decl.type), 241 (newstyle ? proc->args.decls->decl.name : "argp"), 247 stringfix(proc->args.decls->decl.type), 249 (newstyle ? proc->args.decls->decl.name : "argp") [all...] |
| rpc_sample.c | 103 if (streq(proc->args.decls->decl.type, "void")) 107 ptype(proc->args.decls->decl.prefix, proc->args.decls->decl.type, 1); 111 if (!streq(proc->args.decls->decl.type, "void")) { 112 for (l = proc->args.decls; l != NULL; l = l->next) { 154 if (streq(proc->args.decls->decl.type, "void")) /* cast to void* */ 160 if (streq(proc->args.decls->decl.type, "void")) { 164 for (l = proc->args.decls; l != NULL; l = l->next) {
|
| 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
|
| rpc_tblout.c | 146 printit(proc->args.decls->decl.prefix, 147 proc->args.decls->decl.type);
|
| /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/external/apache2/llvm/dist/libcxx/utils/google-benchmark/tools/ |
| strip_asm.py | 23 decls = set() 28 decls.add(m.group(0)) 29 if len(decls) == 0: 31 needs_dot = next(iter(decls))[0] != '.' 34 for ld in decls:
|
| /src/external/apache2/llvm/dist/llvm/utils/benchmark/tools/ |
| strip_asm.py | 23 decls = set() 28 decls.add(m.group(0)) 29 if len(decls) == 0: 31 needs_dot = next(iter(decls))[0] != '.' 34 for ld in decls:
|
| /src/external/bsd/zstd/dist/contrib/recovery/ |
| Makefile | 22 -Wredundant-decls -Wmissing-prototypes
|
| /src/usr.sbin/syslogd/ |
| Makefile | 18 CPPFLAGS+=-I${NETBSDSRCDIR}/usr.bin/who -DSUPPORT_UTMPX -DSUPPORT_UTMP -Wredundant-decls
|
| /src/external/bsd/zstd/dist/contrib/diagnose_corruption/ |
| Makefile | 22 -Wredundant-decls -Wmissing-prototypes
|
| /src/external/bsd/zstd/dist/contrib/externalSequenceProducer/ |
| Makefile | 23 -Wredundant-decls
|
| /src/external/gpl3/gcc/dist/gcc/ |
| tree-assume.cc | 349 auto_bitmap decls; variable 358 bitmap_set_bit (decls, SSA_NAME_VERSION (name)); 361 if (bitmap_empty_p (decls)) 367 assume_query query (ranger, fun, decls);
|
| gimple-low.cc | 302 auto_vec<tree> decls; member in struct:lower_assumption_data 319 data->decls.safe_push (lhs); 331 data->decls.safe_push (var); 394 ((lower_assumption_data *) id)->decls.safe_push (decl); 541 unsigned int sz = lad.decls.length (); 544 tree v = lad.decls[i]; 601 vargs.safe_grow (1 + (lad.decls.length () - sz), true); 605 for (unsigned i = lad.decls.length (); i > sz; --i) 607 tree *v = decl_map.get (lad.decls[i - 1]); 614 vargs[i - sz] = lad.decls[i - 1] [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);
|
| /src/external/gpl3/gcc.old/lib/libobjc/arch/aarch64/ |
| defs.mk | 10 G_OBJC_H=objc.h objc-exception.h objc-sync.h NXConstStr.h Object.h Protocol.h message.h objc-decls.h runtime.h thr.h
|
| /src/external/gpl3/gcc.old/lib/libobjc/arch/aarch64eb/ |
| defs.mk | 10 G_OBJC_H=objc.h objc-exception.h objc-sync.h NXConstStr.h Object.h Protocol.h message.h objc-decls.h runtime.h thr.h
|
| /src/external/gpl3/gcc.old/lib/libobjc/arch/alpha/ |
| defs.mk | 10 G_OBJC_H=objc.h objc-exception.h objc-sync.h NXConstStr.h Object.h Protocol.h message.h objc-decls.h runtime.h thr.h
|
| /src/external/gpl3/gcc.old/lib/libobjc/arch/arm/ |
| defs.mk | 10 G_OBJC_H=objc.h objc-exception.h objc-sync.h NXConstStr.h Object.h Protocol.h message.h objc-decls.h runtime.h thr.h
|
| /src/external/gpl3/gcc.old/lib/libobjc/arch/armeb/ |
| defs.mk | 10 G_OBJC_H=objc.h objc-exception.h objc-sync.h NXConstStr.h Object.h Protocol.h message.h objc-decls.h runtime.h thr.h
|
| /src/external/gpl3/gcc.old/lib/libobjc/arch/earm/ |
| defs.mk | 10 G_OBJC_H=objc.h objc-exception.h objc-sync.h NXConstStr.h Object.h Protocol.h message.h objc-decls.h runtime.h thr.h
|