Searched refs:decls (Results 1 - 25 of 122) sorted by relevance

12345

/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DDeclVendor.cpp23 std::vector<CompilerDecl> decls; local
24 if (FindDecls(name, /*append*/ true, max_matches, decls))
25 for (auto decl : decls)
H A DClangExternalASTSourceCallbacks.cpp38 llvm::SmallVectorImpl<clang::Decl *> &decls) {
35 FindExternalLexicalDecls( const clang::DeclContext *decl_ctx, llvm::function_ref<bool(clang::Decl::Kind)> IsKindWeWant, llvm::SmallVectorImpl<clang::Decl *> &decls) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclGroup.cpp28 DeclGroup::DeclGroup(unsigned numdecls, Decl** decls) : NumDecls(numdecls) { argument
30 assert(decls);
31 std::uninitialized_copy(decls, decls + numdecls,
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DUnresolvedSet.h83 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()
139 DeclsTy &decls() { function in class:clang::UnresolvedSetImpl
142 const DeclsTy &decls() const { function in class:clang::UnresolvedSetImpl
[all...]
H A DDeclGroup.h31 DeclGroup(unsigned numdecls, Decl** decls);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangDeclVendor.cpp18 std::vector<clang::NamedDecl *> &decls) {
20 decls.clear();
27 decls.push_back(nd);
16 FindDecls(ConstString name, bool append, uint32_t max_matches, std::vector<clang::NamedDecl *> &decls) argument
H A DClangDeclVendor.h27 std::vector<clang::NamedDecl *> &decls);
H A DClangASTSource.cpp40 ScopedLexicalDeclEraser(std::set<const clang::Decl *> &decls, argument
42 : m_active_lexical_decls(decls), m_decl(decl) {}
421 llvm::SmallVectorImpl<Decl *> &decls) {
774 std::vector<clang::NamedDecl *> decls; local
776 if (!modules_decl_vendor->FindDecls(name, append, max_matches, decls))
786 clang::NamedDecl *const decl_from_modules = decls[0];
835 std::vector<clang::NamedDecl *> decls; local
838 if (!clang_decl_vendor->FindDecls(name, append, max_matches, decls))
848 clang::Decl *copied_decl = CopyDecl(decls[0]);
1223 std::vector<clang::NamedDecl *> decls; local
418 FindExternalLexicalDecls( const DeclContext *decl_context, llvm::function_ref<bool(Decl::Kind)> predicate, llvm::SmallVectorImpl<Decl *> &decls) argument
1263 std::vector<clang::NamedDecl *> decls; local
1406 std::vector<clang::NamedDecl *> decls; local
1450 std::vector<clang::NamedDecl *> decls; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dc-gimplify.c143 tree decls, bind; local
146 decls = NULL_TREE;
148 decls = BLOCK_VARS (block);
151 decls = block;
152 if (DECL_ARTIFICIAL (decls))
157 BLOCK_VARS (block) = decls;
164 if (decls || block)
166 bind = build3 (BIND_EXPR, void_type_node, decls, body, block);
/freebsd-11-stable/usr.bin/rpcgen/
H A Drpc_clntout.c124 ptype(proc->args.decls->decl.prefix,
125 proc->args.decls->decl.type, 1);
134 } else if (streq(proc->args.decls->decl.type, "void")) {
146 for (l = proc->args.decls; l != NULL; l = l->next) {
200 (streq(proc->args.decls->decl.type, "void"))) {
226 for (l = proc->args.decls; l != NULL; l = l->next) {
250 stringfix(proc->args.decls->decl.type),
252 (newstyle ? proc->args.decls->decl.name : "argp"),
260 stringfix(proc->args.decls->decl.type),
262 (newstyle ? proc->args.decls
[all...]
H A Drpc_sample.c106 if(!streq(proc->args.decls->decl.type, "void"))
107 ptype(proc->args.decls->decl.prefix,
108 proc->args.decls->decl.type, 1);
114 } else if (!streq(proc->args.decls->decl.type, "void")) {
115 for (l = proc->args.decls; l != NULL; l = l->next) {
145 if(streq(proc->args.decls->decl.type, "void"))
156 } else if (streq(proc->args.decls->decl.type, "void")) {
164 for (l = proc->args.decls; l != NULL; l = l->next) {
H A Drpc_parse.c116 decl_list *decls; local
124 tailp = &defp->def.st.decls;
127 decls = XALLOC(decl_list);
128 decls->decl = dec;
129 *tailp = decls;
130 tailp = &decls->next;
143 decl_list *decls; local
156 tailp = &defp->def.st.decls;
186 decls = XALLOC(decl_list);
187 plist->args.decls
[all...]
H A Drpc_parse.h125 decl_list *decls; member in struct:struct_def
146 decl_list *decls; member in struct:arg_list
H A Drpc_tblout.c137 printit( proc->args.decls->decl.prefix,
138 proc->args.decls->decl.type );
H A Drpc_cout.c307 for (dl = plist->args.decls; dl != NULL;
400 for (dl = def->def.st.decls; dl != NULL; dl = dl->next) { /* xxx */
548 for (dl = def->def.st.decls; dl != NULL; dl = dl->next)
553 for (dl = def->def.st.decls; dl != NULL; dl = dl->next)
565 for (dl = def->def.st.decls; dl != NULL; dl = dl->next)
587 for (dl = def->def.st.decls; dl != NULL; dl = dl->next)
603 for (dl = def->def.st.decls; dl != NULL; dl = dl->next)
H A Drpc_hout.c177 for (l = plist->args.decls;
199 for (l = def->def.st.decls; l != NULL; l = l->next) {
352 streq(proc->args.decls->decl.type, "void")) {
356 for (dl = proc->args.decls; dl != NULL; dl = dl->next) {
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DDeclVendor.h42 /// If true, FindDecls will clear "decls" when it starts.
49 /// The number of Decls added to decls; will not exceed
53 std::vector<CompilerDecl> &decls) = 0;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCDeclVendor.h31 std::vector<CompilerDecl> &decls) override;
/freebsd-11-stable/cddl/usr.sbin/dtrace/tests/common/
H A DMakefile18 decls \
/freebsd-11-stable/tools/regression/capsicum/syscalls/
H A DMakefile9 CFLAGS+= -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls
/freebsd-11-stable/bin/csh/
H A DMakefile27 SRCS+= sh.decls.h glob.c glob.h mi.termios.c mi.wait.h mi.varargs.h
28 SRCS+= tw.decls.h tw.h tw.help.c tw.init.c tw.parse.c tw.spell.c \
30 SRCS+= ed.chared.c ed.decls.h ed.defns.c ed.h ed.init.c ed.inputl.c \
32 SRCS+= tc.alloc.c tc.bind.c tc.const.c tc.decls.h tc.disc.c \
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTCommon.h99 for (Decl *LexicalD : DC->decls()) {
/freebsd-11-stable/contrib/tcsh/
H A DMakefile.std288 PSSRCS= sh.decls.h glob.c glob.h dotlock.c dotlock.h mi.termios.c mi.wait.h mi.varargs.h ma.setp.c \
298 TWSRCS= tw.decls.h tw.h tw.help.c tw.init.c tw.parse.c tw.spell.c \
303 EDSRCS= ed.chared.c ed.decls.h ed.defns.c ed.h ed.init.c ed.inputl.c \
308 TCSRCS= tc.alloc.c tc.bind.c tc.const.c tc.decls.h tc.disc.c \
599 TCH=tc.h tc.const.h tc.decls.h tc.nls.h tc.os.h tc.sig.h
601 sh.decls.h ${TCH}
602 TWH=tw.h tw.decls.h
603 EDH=ed.h ed.decls.h
H A DMakefile.vms266 PSSRCS= sh.decls.h glob.c glob.h mi.termios.c mi.wait.h mi.varargs.h ma.setp.c \
276 TWSRCS= tw.decls.h tw.h tw.help.c tw.init.c tw.parse.c tw.spell.c \
281 EDSRCS= ed.chared.c ed.decls.h ed.defns.c ed.h ed.init.c ed.inputl.c \
286 TCSRCS= tc.alloc.c tc.bind.c tc.const.c tc.decls.h tc.disc.c \
564 TCH=tc.h tc.const.h tc.decls.h tc.nls.h tc.os.h tc.sig.h
566 sh.decls.h ${TCH}
567 TWH=tw.h tw.decls.h
568 EDH=ed.h ed.decls.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DUSRFinder.cpp84 for (auto *CurrDecl : Context.getTranslationUnitDecl()->decls()) {

Completed in 132 milliseconds

12345