Searched refs:decl (Results 1 - 25 of 154) sorted by relevance

1234567

/freebsd-current/contrib/llvm-project/llvm/include/llvm-c/
H A DDeprecated.h25 # define LLVM_ATTRIBUTE_C_DEPRECATED(decl, message) \
26 decl __attribute__((deprecated(message)))
28 # define LLVM_ATTRIBUTE_C_DEPRECATED(decl, message) \
29 decl __attribute__((deprecated))
31 # define LLVM_ATTRIBUTE_C_DEPRECATED(decl, message) \
32 __declspec(deprecated(message)) decl
34 # define LLVM_ATTRIBUTE_C_DEPRECATED(decl, message) \
35 decl
/freebsd-current/contrib/sendmail/include/sm/os/
H A Dsm_os_next.h24 #define SM_UNUSED(decl) decl
/freebsd-current/contrib/llvm-project/lldb/source/Symbol/
H A DDeclVendor.cpp23 for (auto decl : decls)
25 decl.GetTypeSystem()->GetTypeForDecl(decl.GetOpaqueDecl()))
/freebsd-current/contrib/sendmail/include/sm/
H A Dcdefs.h88 # define SM_UNUSED(decl) decl
90 # define SM_UNUSED(decl) decl __attribute__((__unused__))
93 # define SM_UNUSED(decl) decl
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.h47 /// constructing a new ASTImporter manually to copy over a type/decl, this class
97 clang::Decl *CopyDecl(clang::ASTContext *dst_ctx, clang::Decl *decl);
108 /// Copies the given decl to the destination type system.
110 clang::Decl *DeportDecl(clang::ASTContext *dst_ctx, clang::Decl *decl);
117 /// \param decl The RecordDecl to set the layout for.
119 void SetRecordLayout(clang::RecordDecl *decl, const LayoutInfo &layout);
150 bool CompleteTagDecl(clang::TagDecl *decl);
152 bool CompleteTagDeclWithOrigin(clang::TagDecl *decl, clang::TagDecl *origin);
161 /// 'original' decl is from now on used to import additional information
162 /// into the given decl
240 clang::Decl *decl = nullptr; member in struct:lldb_private::ClangASTImporter::DeclOrigin
358 setOrigin(const clang::Decl *decl, DeclOrigin origin) argument
370 removeOrigin(const clang::Decl *decl) argument
[all...]
H A DClangASTImporter.cpp67 clang::Decl *decl) {
70 clang::ASTContext *src_ast = &decl->getASTContext();
78 llvm::Expected<clang::Decl *> result = delegate_sp->Import(decl);
81 LLDB_LOG_ERROR(log, result.takeError(), "Couldn't import decl: {0}");
84 ClangASTMetadata *metadata = GetDeclMetadata(decl);
88 if (NamedDecl *named_decl = dyn_cast<NamedDecl>(decl))
92 decl->getDeclKindName(), named_decl->getNameAsString(),
98 decl->getDeclKindName(), user_id);
115 void OverrideOne(clang::Decl *decl) { argument
116 if (m_backups.contains(decl)) {
66 CopyDecl(clang::ASTContext *dst_ast, clang::Decl *decl) argument
126 ChainPassesThrough( clang::Decl *decl, clang::DeclContext *base, clang::DeclContext *(clang::Decl::*contextFromDecl)(), clang::DeclContext *(clang::DeclContext::*contextFromContext)()) argument
140 GetEscapedChild(clang::Decl *decl, clang::DeclContext *base = nullptr) argument
171 Override(clang::Decl *decl) argument
189 OverrideAllDeclsFromContainingFunction(clang::Decl *decl) argument
249 NamedDecl *decl = m_decls_to_complete.pop_back_val(); variable
328 DeportDecl(clang::ASTContext *dst_ctx, clang::Decl *decl) argument
549 SetRecordLayout(clang::RecordDecl *decl, const LayoutInfo &layout) argument
554 CompleteTagDecl(clang::TagDecl *decl) argument
574 CompleteTagDeclWithOrigin(clang::TagDecl *decl, clang::TagDecl *origin_decl) argument
711 GetDeclMetadata(const clang::Decl *decl) argument
723 GetDeclOrigin(const clang::Decl *decl) argument
729 SetDeclOrigin(const clang::Decl *decl, clang::Decl *original_decl) argument
736 RegisterNamespaceMap(const clang::NamespaceDecl *decl, NamespaceMapSP &namespace_map) argument
744 GetNamespaceMap(const clang::NamespaceDecl *decl) argument
756 BuildNamespaceMap(const clang::NamespaceDecl *decl) argument
[all...]
H A DClangUtil.cpp31 clang::Decl *ClangUtil::GetDecl(const CompilerDecl &decl) { argument
32 assert(llvm::isa<TypeSystemClang>(decl.GetTypeSystem()));
33 return static_cast<clang::Decl *>(decl.GetOpaqueDecl());
H A DClangUtil.h29 static clang::Decl *GetDecl(const CompilerDecl &decl);
H A DClangASTSource.cpp37 // Scoped class that will remove an active lexical decl from the set when it
43 const clang::Decl *decl)
44 : m_active_lexical_decls(decls), m_decl(decl) {}
186 TagDecl *ClangASTSource::FindCompleteType(const TagDecl *decl) { argument
190 dyn_cast<NamespaceDecl>(decl->getDeclContext())) {
204 ConstString name(decl->getName());
237 TypeQuery query(CompilerDecl(m_clang_ast_context, (void *)decl));
307 dyn_cast<ObjCInterfaceDecl>(original.decl)) {
414 LLDB_LOG(log, " FELD Original decl {0} (Decl*){1:x}:\n{2}",
416 static_cast<void *>(original.decl),
42 ScopedLexicalDeclEraser(std::set<const clang::Decl *> &decls, const clang::Decl *decl) argument
715 D *decl; member in class:TaggedASTDecl
1713 GetDeclOrigin(const clang::Decl *decl) argument
[all...]
/freebsd-current/lib/libc/i386/string/
H A Dstrncmp.S65 decl %edx
87 decl %edx
97 decl %edx
107 decl %edx
117 decl %edx
127 decl %edx
137 decl %edx
147 decl %edx
H A Dswab.S61 decl %ecx
92 decl %ecx
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerDecl.h37 CompilerDecl(TypeSystem *type_system, void *decl) argument
38 : m_type_system(type_system), m_opaque_decl(decl) {}
60 void SetDecl(TypeSystem *type_system, void *decl) { argument
62 m_opaque_decl = decl;
76 // If this decl represents a function, return the return type
79 // If this decl represents a function, return the number of arguments for the
83 // If this decl represents a function, return the argument type given a zero
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.h27 const Declaration &decl, int32_t byte_size)
28 : m_type_sp(type_sp), m_die(die), m_declaration(decl),
65 bool Find(const DWARFDIE &die, const Declaration &decl,
83 bool Find(ConstString name, const DWARFDIE &die, const Declaration &decl, argument
88 return pos->second.Find(die, decl, byte_size, entry);
26 UniqueDWARFASTType(lldb::TypeSP &type_sp, const DWARFDIE &die, const Declaration &decl, int32_t byte_size) argument
H A DUniqueDWARFASTType.cpp17 const lldb_private::Declaration &decl,
27 if (udt.m_declaration == decl) {
16 Find(const DWARFDIE &die, const lldb_private::Declaration &decl, const int32_t byte_size, UniqueDWARFASTType &entry) const argument
/freebsd-current/usr.bin/rpcgen/
H A Drpc_cout.c299 print_stat(1, &dl->decl);
392 if ((dl->decl.prefix == NULL) &&
393 ((ptr = find_type(dl->decl.type)) != NULL) &&
394 ((dl->decl.rel == REL_ALIAS) ||
395 (dl->decl.rel == REL_VECTOR))){
400 if (dl->decl.rel == REL_ALIAS)
411 plus, dl->decl.array_max,
415 dl->decl.array_max);
437 print_stat(indent + 1, &cur->decl);
464 print_stat(indent + 2, &cur->decl);
630 emit_inline(int indent, declaration *decl, int flag) argument
658 emit_single_in_line(int indent, declaration *decl, int flag, relation rel) argument
[all...]
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")) {
137 pdeclaration(proc->args.argname, &l->decl, 0, ", ");
190 (streq(proc->args.decls->decl.type, "void"))) {
218 l->decl.name, l->decl.name);
240 stringfix(proc->args.decls->decl.type),
242 (newstyle ? proc->args.decls->decl.name : "argp"),
250 stringfix(proc->args.decls->decl
[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")) {
112 ptype(l->decl.prefix, l->decl.type, 1);
113 if (strcmp(l->decl.type,"string") >= 1)
116 f_print(fout, "_%s;\n", l->decl.name);
140 if(streq(proc->args.decls->decl.type, "void"))
151 } else if (streq(proc->args.decls->decl
[all...]
H A Drpc_hout.c169 pdeclaration(name, &l->decl, 1,
190 pdeclaration(name, &l->decl, 1, ";\n");
201 declaration *decl; local
204 decl = &def->def.un.enum_decl;
205 if (streq(decl->type, "bool")) {
206 f_print(fout, "\tbool_t %s;\n", decl->name);
208 f_print(fout, "\t%s %s;\n", decl->type, decl->name);
215 decl = def->def.un.default_decl;
216 if (decl
[all...]
/freebsd-current/contrib/byacc/test/
H A Dbtyacc_demo.y41 Decl *decl;
57 %type decl(<scope>) declarator_list(<scope>, <type>)
61 %type <decl> declarator(<scope>, <type>) formal_arg(<scope>)
68 printf("%s accessed by symbol \"decl\" (case s.b. 273) @ position[%d,%d..%d,%d]\n",
72 free($<decl>$->scope); free($<decl>$->type); } decl
73 %destructor { printf("%s accessed by symbol with type <decl> (case s.b. 279 & 280) @ position[%d,%d..%d,%d]\n",
77 free($$); } <decl>
78 %destructor { printf("%s accessed by symbol of any type other than <decl>
[all...]
/freebsd-current/usr.bin/indent/
H A Dindent_codes.h56 #define decl 19 macro
/freebsd-current/crypto/openssl/test/
H A Dafalgtest.c35 int encl, encf, decl, decf; local
96 || !TEST_true(EVP_CipherUpdate(ctx, dbuf, &decl, ebuf, encl))
97 || !TEST_true(EVP_CipherFinal_ex(ctx, dbuf + decl, &decf)))
99 decl += decf;
101 if (!TEST_int_eq(decl, BUFFER_SIZE)
/freebsd-current/contrib/byacc/test/btyacc/
H A Dbtyacc_demo.tab.h28 Decl *decl; member in union:__anon12
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp193 static bool AddSourceInfoToDecl(const PDBSymbol &symbol, Declaration &decl) { argument
212 decl.SetFile(spec);
213 decl.SetColumn(first_line_up->getColumnNumber());
214 decl.SetLine(first_line_up->getLineNumber());
372 Declaration decl; local
466 AddSourceInfoToDecl(type, decl);
469 LLDB_INVALID_UID, lldb_private::Type::eEncodingIsUID, decl, clang_type,
509 OptionalClangModuleID(), decl,
535 AddSourceInfoToDecl(type, decl);
538 LLDB_INVALID_UID, lldb_private::Type::eEncodingIsUID, decl, ast_enu
863 clang::Decl *decl = m_uid_to_decl.lookup(sym_id); local
923 clang::Decl *decl = local
956 auto decl = m_ast.CreateFunctionDeclaration( local
1154 Declaration decl; local
1276 auto decl = TypeSystemClang::AddFieldToRecordType( local
1292 auto decl = TypeSystemClang::AddVariableToRecordType( local
1400 auto decl = m_ast.GetAsCXXRecordDecl(base_comp_type.GetOpaqueQualType()); local
[all...]
/freebsd-current/sys/amd64/amd64/
H A Defirt_support.S65 decl %ebx
68 decl %ebx
71 decl %ebx
74 decl %ebx
78 decl %ebx
/freebsd-current/bin/sh/
H A Dmknodes.c62 char *decl; /* declaration of field */ member in struct:field
154 char decl[2 * BUFLEN]; local
167 sprintf(decl, "union node *%s", name);
170 sprintf(decl, "struct nodelist *%s", name);
173 sprintf(decl, "char *%s", name);
176 sprintf(decl, "int %s", name);
186 fp->decl = savestr(linep);
190 fp->decl = savestr(decl);
226 fprintf(hfile, " %s;\n", fp->decl);
[all...]

Completed in 268 milliseconds

1234567