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

12345

/freebsd-13-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)
/freebsd-13-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-13-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...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangDeclVendor.cpp19 std::vector<clang::NamedDecl *> &decls) {
21 decls.clear();
28 decls.push_back(nd);
17 FindDecls(ConstString name, bool append, uint32_t max_matches, std::vector<clang::NamedDecl *> &decls) argument
H A DClangDeclVendor.h30 std::vector<clang::NamedDecl *> &decls);
H A DClangExternalASTSourceCallbacks.cpp41 llvm::SmallVectorImpl<clang::Decl *> &decls) {
52 llvm::SmallVector<clang::NamedDecl *, 4> decls; local
59 decls.push_back(omd);
61 return !SetExternalVisibleDeclsForName(DC, Name, decls).empty();
38 FindExternalLexicalDecls( const clang::DeclContext *decl_ctx, llvm::function_ref<bool(clang::Decl::Kind)> IsKindWeWant, llvm::SmallVectorImpl<clang::Decl *> &decls) argument
H A DNameSearchContext.h55 /// \param[in] decls
65 llvm::SmallVectorImpl<clang::NamedDecl *> &decls,
67 : m_clang_ts(clang_ts), m_decls(decls),
64 NameSearchContext(TypeSystemClang &clang_ts, llvm::SmallVectorImpl<clang::NamedDecl *> &decls, clang::DeclarationName name, const clang::DeclContext *dc) argument
H A DClangASTSource.cpp41 ScopedLexicalDeclEraser(std::set<const clang::Decl *> &decls, argument
43 : m_active_lexical_decls(decls), m_decl(decl) {}
386 llvm::SmallVectorImpl<Decl *> &decls) {
462 for (Decl *decl : original_decl_context->decls()) {
854 std::vector<clang::NamedDecl *> decls; local
856 if (!modules_decl_vendor->FindDecls(name, append, max_matches, decls))
862 clang::NamedDecl *const decl_from_modules = decls[0];
904 std::vector<clang::NamedDecl *> decls; local
907 if (!clang_decl_vendor->FindDecls(name, append, max_matches, decls))
913 clang::Decl *copied_decl = CopyDecl(decls[
383 FindExternalLexicalDecls( const DeclContext *decl_context, llvm::function_ref<bool(Decl::Kind)> predicate, llvm::SmallVectorImpl<Decl *> &decls) argument
1145 std::vector<clang::NamedDecl *> decls; local
1185 std::vector<clang::NamedDecl *> decls; local
1318 std::vector<clang::NamedDecl *> decls; local
1361 std::vector<clang::NamedDecl *> decls; local
[all...]
/freebsd-13-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.c117 decl_list *decls; local
125 tailp = &defp->def.st.decls;
128 decls = XALLOC(decl_list);
129 decls->decl = dec;
130 *tailp = decls;
131 tailp = &decls->next;
144 decl_list *decls; local
157 tailp = &defp->def.st.decls;
187 decls = XALLOC(decl_list);
188 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)
/freebsd-13-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-13-stable/usr.sbin/pmc/
H A DMakefile11 CWARNFLAGS.gcc+= -Wno-redundant-decls
/freebsd-13-stable/sbin/devd/
H A DMakefile42 CFLAGS.gcc = -Wno-redundant-decls
43 CXXFLAGS.gcc = -Wno-redundant-decls
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCDeclVendor.h31 std::vector<CompilerDecl> &decls) override;
H A DAppleObjCDeclVendor.cpp529 std::vector<CompilerDecl> &decls) {
539 decls.clear();
573 decls.push_back(m_ast_ctx.GetCompilerDecl(result_iface_decl));
614 decls.push_back(m_ast_ctx.GetCompilerDecl(iface_decl));
527 FindDecls(ConstString name, bool append, uint32_t max_matches, std::vector<CompilerDecl> &decls) argument
/freebsd-13-stable/sys/conf/
H A DMakefile.powerpc56 -Wno-error=redundant-decls \
/freebsd-13-stable/cddl/usr.sbin/dtrace/tests/common/
H A DMakefile18 decls \
/freebsd-13-stable/tools/regression/capsicum/syscalls/
H A DMakefile9 CFLAGS+= -Wcast-align -Wchar-subscripts -Wnested-externs -Wredundant-decls
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTCommon.h99 for (Decl *LexicalD : DC->decls()) {
/freebsd-13-stable/bin/csh/
H A DMakefile33 SRCS+= sh.decls.h glob.c glob.h mi.termios.c mi.wait.h mi.varargs.h
34 SRCS+= tw.decls.h tw.h tw.help.c tw.init.c tw.parse.c tw.spell.c \
36 SRCS+= ed.chared.c ed.decls.h ed.defns.c ed.h ed.init.c ed.inputl.c \
38 SRCS+= tc.alloc.c tc.bind.c tc.const.c tc.decls.h tc.disc.c \
/freebsd-13-stable/sys/contrib/zstd/doc/educational_decoder/
H A DMakefile29 -Wredundant-decls -Wstrict-prototypes -Wundef \

Completed in 120 milliseconds

12345