Searched refs:Class (Results 1 - 25 of 230) sorted by relevance

12345678910

/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyClassDefinitionDumper.h34 void start(const PDBSymbolTypeUDT &Class);
35 void start(const ClassLayout &Class);
38 void prettyPrintClassIntro(const ClassLayout &Class);
39 void prettyPrintClassOutro(const ClassLayout &Class);
H A DPrettyTypeDumper.cpp102 while (auto Class = E.getNext()) {
110 if (Class->getUnmodifiedTypeId() != 0) {
115 if (Printer.IsTypeExcluded(Class->getName(), Class->getLength())) {
120 auto Layout = std::make_unique<ClassLayout>(std::move(Class));
180 const PDBSymbolTypeUDT &Class) {
181 if (Class.getUnmodifiedTypeId() != 0) {
182 if (Class.isConstType())
184 if (Class.isVolatileType())
186 if (Class
179 printClassDecl(LinePrinter &Printer, const PDBSymbolTypeUDT &Class) argument
348 dumpClassLayout(const ClassLayout &Class) argument
[all...]
H A DPrettyClassDefinitionDumper.cpp29 void ClassDefinitionDumper::start(const PDBSymbolTypeUDT &Class) { argument
33 ClassLayout Layout(Class);
51 const PDBSymbolTypeUDT &Class = Layout.getClass(); local
60 WithColor(Printer, PDB_ColorItem::Keyword).get() << Class.getUdtKind() << " ";
61 WithColor(Printer, PDB_ColorItem::Type).get() << Class.getName();
H A DPrettyTypeDumper.h34 void dumpClassLayout(const ClassLayout &Class);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DObjCARCInstKind.h58 raw_ostream &operator<<(raw_ostream &OS, const ARCInstKind Class);
61 bool IsUser(ARCInstKind Class);
64 bool IsRetain(ARCInstKind Class);
67 bool IsAutorelease(ARCInstKind Class);
71 bool IsForwarding(ARCInstKind Class);
75 bool IsNoopOnNull(ARCInstKind Class);
79 bool IsNoopOnGlobal(ARCInstKind Class);
83 bool IsAlwaysTail(ARCInstKind Class);
87 bool IsNeverTail(ARCInstKind Class);
91 bool IsNoThrow(ARCInstKind Class);
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DDependencyAnalysis.cpp36 ARCInstKind Class) {
37 switch (Class) {
70 ARCInstKind Class) {
71 // First perform a quick check if Class can not touch ref counts.
72 if (!CanDecrementRefCount(Class))
76 return CanAlterRefCount(Inst, Ptr, PA, Class);
82 ProvenanceAnalysis &PA, ARCInstKind Class) {
85 if (Class == ARCInstKind::Call)
139 ARCInstKind Class = GetARCInstKind(Inst); local
140 switch (Class) {
34 CanAlterRefCount(const Instruction *Inst, const Value *Ptr, ProvenanceAnalysis &PA, ARCInstKind Class) argument
67 CanDecrementRefCount(const Instruction *Inst, const Value *Ptr, ProvenanceAnalysis &PA, ARCInstKind Class) argument
81 CanUse(const Instruction *Inst, const Value *Ptr, ProvenanceAnalysis &PA, ARCInstKind Class) argument
151 ARCInstKind Class = GetARCInstKind(Inst); local
164 ARCInstKind Class = GetARCInstKind(Inst); local
194 ARCInstKind Class = GetBasicARCInstKind(Inst); local
[all...]
H A DDependencyAnalysis.h67 ARCInstKind Class);
72 ProvenanceAnalysis &PA, ARCInstKind Class);
77 ProvenanceAnalysis &PA, ARCInstKind Class);
H A DPtrState.cpp231 ARCInstKind Class) {
235 if (!CanAlterRefCount(Inst, Ptr, PA, Class))
259 ARCInstKind Class) {
289 if (CanUse(Inst, Ptr, PA, Class)) {
293 } else if (Seq == S_Release && IsUser(Class)) {
298 } else if (const auto *Call = getreturnRVOperand(*Inst, Class)) {
307 if (CanUse(Inst, Ptr, PA, Class)) {
383 ARCInstKind Class) {
386 if (!CanAlterRefCount(Inst, Ptr, PA, Class) &&
387 Class !
228 HandlePotentialAlterRefCount(Instruction *Inst, const Value *Ptr, ProvenanceAnalysis &PA, ARCInstKind Class) argument
256 HandlePotentialUse(BasicBlock *BB, Instruction *Inst, const Value *Ptr, ProvenanceAnalysis &PA, ARCInstKind Class) argument
380 HandlePotentialAlterRefCount(Instruction *Inst, const Value *Ptr, ProvenanceAnalysis &PA, ARCInstKind Class) argument
415 HandlePotentialUse(Instruction *Inst, const Value *Ptr, ProvenanceAnalysis &PA, ARCInstKind Class) argument
[all...]
H A DPtrState.h184 ProvenanceAnalysis &PA, ARCInstKind Class);
186 ProvenanceAnalysis &PA, ARCInstKind Class);
202 ProvenanceAnalysis &PA, ARCInstKind Class);
205 ProvenanceAnalysis &PA, ARCInstKind Class);
H A DObjCARC.h74 ARCInstKind Class) {
75 if (Class != ARCInstKind::RetainRV)
73 getreturnRVOperand(const Instruction &Inst, ARCInstKind Class) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DObjCNoReturn.cpp20 static bool isSubclass(const ObjCInterfaceDecl *Class, IdentifierInfo *II) { argument
21 if (!Class)
23 if (Class->getIdentifier() == II)
25 return isSubclass(Class->getSuperClass(), II);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DReproducerInstrumentation.h71 #define LLDB_REGISTER_CONSTRUCTOR(Class, Signature) \
72 R.Register<Class * Signature>(&construct<Class Signature>::doit, "", #Class, \
73 #Class, #Signature)
74 #define LLDB_REGISTER_METHOD(Result, Class, Method, Signature) \
76 &invoke<Result(Class::*) Signature>::method<(&Class::Method)>::doit, \
77 #Result, #Class, #Method, #Signature)
78 #define LLDB_REGISTER_METHOD_CONST(Result, Class, Metho
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h52 #define CV_DEFINE_ENUM_CLASS_FLAGS_OPERATORS(Class) \
53 inline Class operator|(Class a, Class b) { \
54 return static_cast<Class>( \
55 static_cast<std::underlying_type<Class>::type>(a) | \
56 static_cast<std::underlying_type<Class>::type>(b)); \
58 inline Class operator&(Class a, Class
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DTpiHashing.h23 : FullRecordHash(Full), ForwardDeclHash(Forward), Class(std::move(CR)) {
45 return Class;
56 codeview::ClassRecord Class; member in union:llvm::pdb::TagRecordHash::__anon1806
H A DNativeTypeUDT.h24 codeview::ClassRecord Class);
63 Optional<codeview::ClassRecord> Class; member in class:llvm::pdb::NativeTypeUDT
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp231 : Self(P), Class(C) {}
234 Self->DeallocateParsedClasses(Class);
238 Self->ParseLexedMethodDeclarations(*Class);
242 Self->ParseLexedMemberInitializers(*Class);
246 Self->ParseLexedMethodDefs(*Class);
250 Self->ParseLexedPragmas(*Class);
273 void Parser::ParseLexedMethodDeclarations(ParsingClass &Class) { argument
274 bool HasTemplateScope = !Class.TopLevelClass && Class.TemplateScope;
279 Actions.ActOnReenterTemplateScope(getCurScope(), Class
478 ParseLexedMethodDefs(ParsingClass &Class) argument
582 ParseLexedMemberInitializers(ParsingClass &Class) argument
665 ParseLexedPragmas(ParsingClass &Class) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DObjCARCInstKind.cpp30 const ARCInstKind Class) {
31 switch (Class) {
226 ARCInstKind Class = GetFunctionClass(F); local
227 if (Class != ARCInstKind::CallOrUser)
228 return Class;
311 bool llvm::objcarc::IsUser(ARCInstKind Class) { argument
312 switch (Class) {
345 bool llvm::objcarc::IsRetain(ARCInstKind Class) { argument
346 switch (Class) {
381 bool llvm::objcarc::IsAutorelease(ARCInstKind Class) { argument
29 operator <<(raw_ostream &OS, const ARCInstKind Class) argument
416 IsForwarding(ARCInstKind Class) argument
451 IsNoopOnNull(ARCInstKind Class) argument
486 IsNoopOnGlobal(ARCInstKind Class) argument
521 IsAlwaysTail(ARCInstKind Class) argument
557 IsNeverTail(ARCInstKind Class) argument
596 IsNoThrow(ARCInstKind Class) argument
635 CanInterruptRV(ARCInstKind Class) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DASTTypeTraits.cpp43 #define OPENMP_CLAUSE(TextualSpelling, Class) {NKI_OMPClause, #Class},
96 case Stmt::CLASS##Class: return ASTNodeKind(NKI_##CLASS);
105 #define TYPE(Class, Base) \
106 case Type::Class: return ASTNodeKind(NKI_##Class##Type);
107 #define ABSTRACT_TYPE(Class, Base)
115 #define OPENMP_CLAUSE(Name, Class) \
116 case OMPC_##Name: return ASTNodeKind(NKI_##Class);
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-instr/
H A DInstrument.cpp70 static std::string GetRecordMethodMacro(StringRef Result, StringRef Class, argument
78 OS << "(" << Result << ", " << Class << ", " << Method;
89 static std::string GetRecordConstructorMacro(StringRef Class, argument
95 OS << "LLDB_RECORD_CONSTRUCTOR(" << Class << ", (" << Signature << "), "
98 OS << "LLDB_RECORD_CONSTRUCTOR_NO_ARGS(" << Class << ");\n\n"; local
103 static std::string GetRecordDummyMacro(StringRef Result, StringRef Class, argument
110 OS << "LLDB_RECORD_DUMMY(" << Result << ", " << Class << ", " << Method;
116 static std::string GetRegisterConstructorMacro(StringRef Class, argument
120 OS << "LLDB_REGISTER_CONSTRUCTOR(" << Class << ", (" << Signature << "));\n";
124 static std::string GetRegisterMethodMacro(StringRef Result, StringRef Class, argument
[all...]
/freebsd-11-stable/stand/efi/include/
H A Defifs.h63 UINT32 Class; member in struct:_EFI_FILE_HEADER
97 UINT32 Class; member in struct:_EFI_LBAL
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeUDT.cpp22 Class(std::move(CR)), Tag(Class.getPointer()) {}
93 if (Class)
94 return Session.getSymbolCache().findSymbolByTypeIndex(Class->VTableShape);
103 if (Class)
104 return Class->getSize();
114 case TypeRecordKind::Class:
115 return PDB_UdtType::Class;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaLambda.cpp251 CXXRecordDecl *Class = CXXRecordDecl::CreateLambda(Context, DC, Info, local
256 DC->addDecl(Class);
258 return Class;
359 CXXMethodDecl *Sema::startLambdaDefinition(CXXRecordDecl *Class, argument
372 if (Class->isDependentContext() || TemplateParams) {
395 Context, Class, EndLoc,
402 Class->addDecl(Method);
409 FunctionTemplateDecl::Create(Context, Class,
416 Class->addDecl(TemplateMethod);
434 CXXRecordDecl *Class, CXXMethodDec
433 handleLambdaNumbering( CXXRecordDecl *Class, CXXMethodDecl *Method, Optional<std::tuple<unsigned, bool, Decl *>> Mangling) argument
973 CXXRecordDecl *Class = createLambdaClosureType(Intro.Range, MethodTyInfo, local
1253 CXXRecordDecl *Class = LSI->Lambda; local
1283 addFunctionPointerConversion(Sema &S, SourceRange IntroducerRange, CXXRecordDecl *Class, CXXMethodDecl *CallOperator) argument
1443 addBlockPointerConversion(Sema &S, SourceRange IntroducerRange, CXXRecordDecl *Class, CXXMethodDecl *CallOperator) argument
1660 CXXRecordDecl *Class; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
H A DDriverOptions.cpp26 {PREFIX, NAME, HELPTEXT, METAVAR, OPT_##ID, Option::KIND##Class, \
/freebsd-11-stable/sys/contrib/dev/acpica/components/executer/
H A Dexresolv.c279 RefType = StackDesc->Reference.Class;
538 switch (ObjDesc->Reference.Class)
545 if (ObjDesc->Reference.Class == ACPI_REFCLASS_REFOF)
620 Status = AcpiDsMethodDataGetValue (ObjDesc->Reference.Class,
630 Status = AcpiDsMethodDataGetNode (ObjDesc->Reference.Class,
656 "Unknown Reference Class 0x%2.2X",
657 ObjDesc->Reference.Class));
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCXX.cpp54 const CXXRecordDecl *Class = D->getParent(); local
58 if (Class->mayInsertExtraPadding())
62 if (Class->getNumVBases()) {
71 for (const auto *I : Class->fields())
77 for (const auto &I : Class->bases()) {
101 const ASTRecordLayout &ClassLayout = Context.getASTRecordLayout(Class);

Completed in 397 milliseconds

12345678910