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

123456

/freebsd-current/contrib/llvm-project/lldb/source/Symbol/
H A DDeclVendor.cpp21 std::vector<CompilerDecl> decls; local
22 if (FindDecls(name, /*append*/ true, max_matches, decls))
23 for (auto decl : decls)
/freebsd-current/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-current/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)
118 auto val = decls().pop_back_val();
120 decls()[
147 DeclsTy &decls() { function in class:clang::UnresolvedSetImpl
150 const DeclsTy &decls() const { function in class:clang::UnresolvedSetImpl
[all...]
/freebsd-current/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.cpp42 llvm::SmallVectorImpl<clang::Decl *> &decls) {
53 llvm::SmallVector<clang::NamedDecl *, 4> decls; local
60 decls.push_back(omd);
62 return !SetExternalVisibleDeclsForName(DC, Name, decls).empty();
39 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
/freebsd-current/contrib/llvm-project/clang/lib/Headers/llvm_libc_wrappers/
H A Dinttypes.h18 #if __has_include(<llvm-libc-decls/inttypes.h>)
26 #include <llvm-libc-decls/inttypes.h>
H A Dtime.h18 #if __has_include(<llvm-libc-decls/time.h>)
28 #include <llvm-libc-decls/time.h>
H A Dassert.h18 #if __has_include(<llvm-libc-decls/assert.h>)
26 #include <llvm-libc-decls/assert.h>
H A Dstdio.h44 #if __has_include(<llvm-libc-decls/stdio.h>)
63 #include <llvm-libc-decls/stdio.h>
H A Dstdlib.h18 #if __has_include(<llvm-libc-decls/stdlib.h>)
37 #include <llvm-libc-decls/stdlib.h>
H A Dctype.h29 #if __has_include(<llvm-libc-decls/ctype.h>)
74 #include <llvm-libc-decls/ctype.h>
H A Dstring.h18 #if __has_include(<llvm-libc-decls/string.h>)
86 #include <llvm-libc-decls/string.h>
/freebsd-current/usr.sbin/pmc/
H A DMakefile6 CWARNFLAGS.gcc+= -Wno-redundant-decls
/freebsd-current/usr.bin/rpcgen/
H A Drpc_clntout.c114 ptype(proc->args.decls->decl.prefix,
115 proc->args.decls->decl.type, 1);
124 } else if (streq(proc->args.decls->decl.type, "void")) {
136 for (l = proc->args.decls; l != NULL; l = l->next) {
190 (streq(proc->args.decls->decl.type, "void"))) {
216 for (l = proc->args.decls; l != NULL; l = l->next) {
240 stringfix(proc->args.decls->decl.type),
242 (newstyle ? proc->args.decls->decl.name : "argp"),
250 stringfix(proc->args.decls->decl.type),
252 (newstyle ? proc->args.decls
[all...]
H A Drpc_sample.c101 if(!streq(proc->args.decls->decl.type, "void"))
102 ptype(proc->args.decls->decl.prefix,
103 proc->args.decls->decl.type, 1);
109 } else if (!streq(proc->args.decls->decl.type, "void")) {
110 for (l = proc->args.decls; l != NULL; l = l->next) {
140 if(streq(proc->args.decls->decl.type, "void"))
151 } else if (streq(proc->args.decls->decl.type, "void")) {
159 for (l = proc->args.decls; l != NULL; l = l->next) {
H A Drpc_parse.c107 decl_list *decls; local
115 tailp = &defp->def.st.decls;
118 decls = XALLOC(decl_list);
119 decls->decl = dec;
120 *tailp = decls;
121 tailp = &decls->next;
134 decl_list *decls; local
147 tailp = &defp->def.st.decls;
177 decls = XALLOC(decl_list);
178 plist->args.decls
[all...]
H A Drpc_parse.h120 decl_list *decls; member in struct:struct_def
141 decl_list *decls; member in struct:arg_list
H A Drpc_tblout.c127 printit( proc->args.decls->decl.prefix,
128 proc->args.decls->decl.type );
/freebsd-current/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-current/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCDeclVendor.h31 std::vector<CompilerDecl> &decls) override;
/freebsd-current/sbin/devd/
H A DMakefile71 CFLAGS.gcc = -Wno-redundant-decls
72 CXXFLAGS.gcc = -Wno-redundant-decls
/freebsd-current/tools/regression/capsicum/syscalls/
H A DMakefile8 CFLAGS+= -Wcast-align -Wchar-subscripts -Wnested-externs -Wredundant-decls
/freebsd-current/cddl/usr.sbin/dtrace/tests/common/
H A DMakefile17 decls \

Completed in 140 milliseconds

123456