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

1234567

/freebsd-13-stable/contrib/sendmail/include/sm/os/
H A Dsm_os_next.h24 #define SM_UNUSED(decl) decl
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DDeclVendor.cpp25 for (auto decl : decls)
27 decl.GetTypeSystem()->GetTypeForDecl(decl.GetOpaqueDecl()))
/freebsd-13-stable/sys/contrib/ngatm/netnatm/msg/
H A Dgeniec.awk38 decl[i,j] = ""
52 if(decl[i,j] == "") {
55 printf " &%s,", decl[i,j]
87 decl[number,ncoding] = "decl_" coding "_" ie
109 decl[number,ncoding] = "decl_" coding "_" ie
/freebsd-13-stable/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-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
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.find(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
244 NamedDecl *decl = m_decls_to_complete.pop_back_val(); local
318 DeportDecl(clang::ASTContext *dst_ctx, clang::Decl *decl) argument
544 SetRecordLayout(clang::RecordDecl *decl, const LayoutInfo &layout) argument
549 CompleteTagDecl(clang::TagDecl *decl) argument
569 CompleteTagDeclWithOrigin(clang::TagDecl *decl, clang::TagDecl *origin_decl) argument
709 GetDeclMetadata(const clang::Decl *decl) argument
721 GetDeclOrigin(const clang::Decl *decl) argument
733 SetDeclOrigin(const clang::Decl *decl, clang::Decl *original_decl) argument
749 RegisterNamespaceMap(const clang::NamespaceDecl *decl, NamespaceMapSP &namespace_map) argument
757 GetNamespaceMap(const clang::NamespaceDecl *decl) argument
769 BuildNamespaceMap(const clang::NamespaceDecl *decl) argument
[all...]
H A DClangASTImporter.h57 clang::Decl *CopyDecl(clang::ASTContext *dst_ctx, clang::Decl *decl);
61 clang::Decl *DeportDecl(clang::ASTContext *dst_ctx, clang::Decl *decl);
68 /// \param decl The RecordDecl to set the layout for.
70 void SetRecordLayout(clang::RecordDecl *decl, const LayoutInfo &layout);
87 bool CompleteTagDecl(clang::TagDecl *decl);
89 bool CompleteTagDeclWithOrigin(clang::TagDecl *decl, clang::TagDecl *origin);
97 void SetDeclOrigin(const clang::Decl *decl, clang::Decl *original_decl);
99 ClangASTMetadata *GetDeclMetadata(const clang::Decl *decl);
109 void RegisterNamespaceMap(const clang::NamespaceDecl *decl,
112 NamespaceMapSP GetNamespaceMap(const clang::NamespaceDecl *decl);
166 clang::Decl *decl; member in struct:lldb_private::ClangASTImporter::DeclOrigin
[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.cpp36 // Scoped class that will remove an active lexical decl from the set when it
42 const clang::Decl *decl)
43 : m_active_lexical_decls(decls), m_decl(decl) {}
183 TagDecl *ClangASTSource::FindCompleteType(const TagDecl *decl) { argument
187 dyn_cast<NamespaceDecl>(decl->getDeclContext())) {
203 ConstString name(decl->getName());
235 ConstString name(decl->getName());
263 // We have found a type by basename and we need to make sure the decl
266 if (!TypeSystemClang::DeclsAreEquivalent(const_cast<TagDecl *>(decl),
322 dyn_cast<ObjCInterfaceDecl>(original.decl)) {
41 ScopedLexicalDeclEraser(std::set<const clang::Decl *> &decls, const clang::Decl *decl) argument
718 D *decl; member in class:TaggedASTDecl
1732 GetDeclOrigin(const clang::Decl *decl) argument
[all...]
/freebsd-13-stable/lib/libc/i386/string/
H A Dstrncmp.S67 decl %edx
89 decl %edx
99 decl %edx
109 decl %edx
119 decl %edx
129 decl %edx
139 decl %edx
149 decl %edx
H A Dswab.S63 decl %ecx
94 decl %ecx
/freebsd-13-stable/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-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.h29 const lldb_private::Declaration &decl, int32_t byte_size)
30 : m_type_sp(type_sp), m_die(die), m_declaration(decl),
67 bool Find(const DWARFDIE &die, const lldb_private::Declaration &decl,
87 const lldb_private::Declaration &decl, const int32_t byte_size,
92 return pos->second.Find(die, decl, byte_size, entry);
28 UniqueDWARFASTType(lldb::TypeSP &type_sp, const DWARFDIE &die, const lldb_private::Declaration &decl, int32_t byte_size) argument
86 Find(lldb_private::ConstString name, const DWARFDIE &die, const lldb_private::Declaration &decl, const int32_t byte_size, UniqueDWARFASTType &entry) const argument
H A DUniqueDWARFASTType.cpp14 const lldb_private::Declaration &decl,
24 if (udt.m_declaration == decl) {
13 Find(const DWARFDIE &die, const lldb_private::Declaration &decl, const int32_t byte_size, UniqueDWARFASTType &entry) const argument
/freebsd-13-stable/usr.bin/rpcgen/
H A Drpc_cout.c309 print_stat(1, &dl->decl);
402 if ((dl->decl.prefix == NULL) &&
403 ((ptr = find_type(dl->decl.type)) != NULL) &&
404 ((dl->decl.rel == REL_ALIAS) ||
405 (dl->decl.rel == REL_VECTOR))){
410 if (dl->decl.rel == REL_ALIAS)
421 plus, dl->decl.array_max,
425 dl->decl.array_max);
447 print_stat(indent + 1, &cur->decl);
474 print_stat(indent + 2, &cur->decl);
640 emit_inline(int indent, declaration *decl, int flag) argument
668 emit_single_in_line(int indent, declaration *decl, int flag, relation rel) argument
[all...]
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")) {
147 pdeclaration(proc->args.argname, &l->decl, 0, ", ");
200 (streq(proc->args.decls->decl.type, "void"))) {
228 l->decl.name, l->decl.name);
250 stringfix(proc->args.decls->decl.type),
252 (newstyle ? proc->args.decls->decl.name : "argp"),
260 stringfix(proc->args.decls->decl
[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")) {
117 ptype(l->decl.prefix, l->decl.type, 1);
118 if (strcmp(l->decl.type,"string") >= 1)
121 f_print(fout, "_%s;\n", l->decl.name);
145 if(streq(proc->args.decls->decl.type, "void"))
156 } else if (streq(proc->args.decls->decl
[all...]
H A Drpc_hout.c179 pdeclaration(name, &l->decl, 1,
200 pdeclaration(name, &l->decl, 1, ";\n");
211 declaration *decl; local
214 decl = &def->def.un.enum_decl;
215 if (streq(decl->type, "bool")) {
216 f_print(fout, "\tbool_t %s;\n", decl->name);
218 f_print(fout, "\t%s %s;\n", decl->type, decl->name);
225 decl = def->def.un.default_decl;
226 if (decl
[all...]
/freebsd-13-stable/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-13-stable/usr.bin/indent/
H A Dindent_codes.h59 #define decl 19 macro
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DUdtRecordCompleter.cpp96 auto decl = local
98 lldbassert(decl);
101 m_layout.base_offsets.insert(std::make_pair(decl, offset));
134 auto decl = TypeSystemClang::AddVariableToRecordType( local
140 std::string qual_name = decl->getQualifiedNameAsString();
151 clang::QualType qual_type = decl->getType();
152 unsigned type_width = decl->getASTContext().getIntWidth(qual_type);
158 decl, constant.Value.extOrTrunc(type_width));
175 decl, basic_type_enum == lldb::eBasicTypeFloat
178 decl
231 clang::FieldDecl *decl = TypeSystemClang::AddFieldToRecordType( local
270 Declaration decl; local
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp184 Declaration &decl) {
203 decl.SetFile(spec);
204 decl.SetColumn(first_line_up->getColumnNumber());
205 decl.SetLine(first_line_up->getLineNumber());
363 Declaration decl; local
457 GetDeclarationForSymbol(type, decl);
461 lldb_private::Type::eEncodingIsUID, decl, clang_type,
501 OptionalClangModuleID(), decl,
527 GetDeclarationForSymbol(type, decl);
530 nullptr, LLDB_INVALID_UID, lldb_private::Type::eEncodingIsUID, decl,
183 GetDeclarationForSymbol(const PDBSymbol &symbol, Declaration &decl) argument
837 clang::Decl *decl = m_uid_to_decl.lookup(sym_id); local
897 clang::Decl *decl = local
930 auto decl = m_ast.CreateFunctionDeclaration( local
1125 Declaration decl; local
1247 auto decl = TypeSystemClang::AddFieldToRecordType( local
1263 auto decl = TypeSystemClang::AddVariableToRecordType( local
1362 auto decl = m_ast.GetAsCXXRecordDecl(base_comp_type.GetOpaqueQualType()); local
[all...]
/freebsd-13-stable/contrib/byacc/test/btyacc/
H A Dbtyacc_demo.tab.h28 Decl *decl; member in union:__anon365
/freebsd-13-stable/sys/amd64/amd64/
H A Defirt_support.S68 decl %ebx
71 decl %ebx
74 decl %ebx
77 decl %ebx
81 decl %ebx
/freebsd-13-stable/bin/sh/
H A Dmknodes.c76 char *decl; /* declaration of field */ member in struct:field
168 char decl[2 * BUFLEN]; local
181 sprintf(decl, "union node *%s", name);
184 sprintf(decl, "struct nodelist *%s", name);
187 sprintf(decl, "char *%s", name);
190 sprintf(decl, "int %s", name);
200 fp->decl = savestr(linep);
204 fp->decl = savestr(decl);
240 fprintf(hfile, " %s;\n", fp->decl);
[all...]

Completed in 300 milliseconds

1234567