| /src/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroInstr.h | 61 static bool classof(const IntrinsicInst *I) { in classof() function 64 static bool classof(const Value *V) { in classof() function 65 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof() 73 static bool classof(const IntrinsicInst *I) { in classof() function 76 static bool classof(const Value *V) { in classof() function 77 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof() 98 static bool classof(const CallBase *CB) { in classof() function 109 static bool classof(const Value *V) { in classof() function 110 return isa<CallBase>(V) && classof(cast<CallBase>(V)); in classof() 133 static bool classof(const IntrinsicInst *I) { in classof() function [all …]
|
| /src/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | IntrinsicInst.h | 130 static bool classof(const CallInst *I) { in classof() function 135 static bool classof(const Value *V) { in classof() function 136 return isa<CallInst>(V) && classof(cast<CallInst>(V)); in classof() 156 static bool classof(const IntrinsicInst *I) { in classof() function 159 static bool classof(const Value *V) { in classof() function 160 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof() 183 static bool classof(const IntrinsicInst *I) { in classof() function 186 static bool classof(const Value *V) { in classof() function 187 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof() 416 static bool classof(const IntrinsicInst *I) { in classof() function [all …]
|
| H A D | Instructions.h | 152 static bool classof(const Instruction *I) { in classof() function 155 static bool classof(const Value *V) { in classof() function 156 return isa<Instruction>(V) && classof(cast<Instruction>(V)); in classof() 264 static bool classof(const Instruction *I) { in classof() function 267 static bool classof(const Value *V) { in classof() function 268 return isa<Instruction>(V) && classof(cast<Instruction>(V)); in classof() 388 static bool classof(const Instruction *I) { in classof() function 391 static bool classof(const Value *V) { in classof() function 392 return isa<Instruction>(V) && classof(cast<Instruction>(V)); in classof() 464 static bool classof(const Instruction *I) { [all …]
|
| H A D | Operator.h | 58 static bool classof(const Instruction *) { return true; } in classof() function 59 static bool classof(const ConstantExpr *) { return true; } in classof() function 60 static bool classof(const Value *V) { in classof() function 126 static bool classof(const Instruction *I) { in classof() function 132 static bool classof(const ConstantExpr *CE) { in classof() function 138 static bool classof(const Value *V) { in classof() function 139 return (isa<Instruction>(V) && classof(cast<Instruction>(V))) || in classof() 140 (isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V))); in classof() 182 static bool classof(const ConstantExpr *CE) { 185 static bool classof(const Instruction *I) { [all …]
|
| H A D | DiagnosticInfo.h | 179 static bool classof(const DiagnosticInfo *DI) { in classof() function 207 static bool classof(const DiagnosticInfo *DI) { in classof() function 229 static bool classof(const DiagnosticInfo *DI) { in classof() function 253 static bool classof(const DiagnosticInfo *DI) { in classof() function 283 static bool classof(const DiagnosticInfo *DI) { in classof() function 388 static bool classof(const DiagnosticInfo *DI) { in classof() function 406 static bool classof(const DiagnosticInfo *DI) { in classof() function 489 static bool classof(const DiagnosticInfo *DI) { in classof() function 678 static bool classof(const DiagnosticInfo *DI) { in classof() function 710 static bool classof(const DiagnosticInfo *DI) { in classof() function [all …]
|
| /src/contrib/llvm-project/clang/include/clang/Tooling/Syntax/ |
| H A D | Nodes.h | 119 static bool classof(const Node *N); 130 static bool classof(const Node *N); 138 static bool classof(const Node *N); 149 static bool classof(const Node *N); 158 static bool classof(const Node *N); 176 static bool classof(const Node *N); 188 static bool classof(const Node *N); 201 static bool classof(const Node *N); 212 static bool classof(const Node *N); 220 static bool classof(const Node *N); [all …]
|
| /src/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | GenericMachineInstrs.h | 40 static bool classof(const MachineInstr *MI) { in classof() function 74 static bool classof(const MachineInstr *MI) { in classof() function 75 return GenericMachineInstr::classof(MI) && MI->hasOneMemOperand(); in classof() 86 static bool classof(const MachineInstr *MI) { in classof() function 116 static bool classof(const MachineInstr *MI) { in classof() function 124 static bool classof(const MachineInstr *MI) { in classof() function 133 static bool classof(const MachineInstr *MI) { in classof() function 148 static bool classof(const MachineInstr *MI) { in classof() function 156 static bool classof(const MachineInstr *MI) { in classof() function 176 static bool classof(const MachineInstr *MI) { in classof() function [all …]
|
| /src/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | Action.h | 243 static bool classof(const Action *A) { in classof() function 260 static bool classof(const Action *A) { in classof() function 396 static bool classof(const Action *A) { return A->getKind() == OffloadClass; } in classof() function 407 static bool classof(const Action *A) { in classof() function 419 static bool classof(const Action *A) { in classof() function 433 static bool classof(const Action *A) { in classof() function 444 static bool classof(const Action *A) { in classof() function 457 static bool classof(const Action *A) { in classof() function 468 static bool classof(const Action *A) { in classof() function 479 static bool classof(const Action *A) { in classof() function [all …]
|
| /src/contrib/llvm-project/clang/lib/AST/ |
| H A D | OpenACCClause.cpp | 20 bool OpenACCClauseWithParams::classof(const OpenACCClause *C) { in classof() function in OpenACCClauseWithParams 21 return OpenACCDeviceTypeClause::classof(C) || in classof() 22 OpenACCClauseWithCondition::classof(C) || in classof() 23 OpenACCClauseWithExprs::classof(C); in classof() 25 bool OpenACCClauseWithExprs::classof(const OpenACCClause *C) { in classof() function in OpenACCClauseWithExprs 26 return OpenACCWaitClause::classof(C) || OpenACCNumGangsClause::classof(C) || in classof() 27 OpenACCClauseWithSingleIntExpr::classof(C) || in classof() 28 OpenACCClauseWithVarList::classof(C); in classof() 30 bool OpenACCClauseWithVarList::classof(const OpenACCClause *C) { in classof() function in OpenACCClauseWithVarList 31 return OpenACCPrivateClause::classof(C) || in classof() [all …]
|
| /src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/ |
| H A D | CTFTypes.h | 49 static bool classof(const CTFType *T) { return T->kind == eInteger; } in classof() function 60 static bool classof(const CTFType *T) { in classof() function 73 static bool classof(const CTFType *T) { return T->kind == ePointer; } in classof() function 80 static bool classof(const CTFType *T) { return T->kind == eConst; } in classof() function 87 static bool classof(const CTFType *T) { return T->kind == eVolatile; } in classof() function 93 static bool classof(const CTFType *T) { return T->kind == eRestrict; } in classof() function 100 static bool classof(const CTFType *T) { return T->kind == eTypedef; } in classof() function 110 static bool classof(const CTFType *T) { return T->kind == eArray; } in classof() function 131 static bool classof(const CTFType *T) { return T->kind == eEnum; } in classof() function 144 static bool classof(const CTFType *T) { return T->kind == eFunction; } in classof() function [all …]
|
| /src/contrib/llvm-project/llvm/utils/TableGen/Common/ |
| H A D | DAGISelMatcher.h | 234 static bool classof(const Matcher *N) { return N->getKind() == Scope; } in classof() function 258 static bool classof(const Matcher *N) { return N->getKind() == RecordNode; } in classof() function 289 static bool classof(const Matcher *N) { return N->getKind() == RecordChild; } in classof() function 303 static bool classof(const Matcher *N) { return N->getKind() == RecordMemRef; } in classof() function 316 static bool classof(const Matcher *N) { in classof() function 335 static bool classof(const Matcher *N) { return N->getKind() == MoveChild; } in classof() function 355 static bool classof(const Matcher *N) { return N->getKind() == MoveSibling; } in classof() function 370 static bool classof(const Matcher *N) { return N->getKind() == MoveParent; } in classof() function 389 static bool classof(const Matcher *N) { return N->getKind() == CheckSame; } in classof() function 412 static bool classof(const Matcher *N) { in classof() function [all …]
|
| /src/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | MemRegion.h | 213 assert(classof(this)); in MemSpaceRegion() 223 static bool classof(const MemRegion *R) { in classof() function 240 static bool classof(const MemRegion *R) { in classof() function 250 assert(classof(this)); in GlobalsSpaceRegion() 254 static bool classof(const MemRegion *R) { in classof() function 283 static bool classof(const MemRegion *R) { in classof() function 300 assert(classof(this)); in NonStaticGlobalSpaceRegion() 304 static bool classof(const MemRegion *R) { in classof() function 322 static bool classof(const MemRegion *R) { in classof() function 341 static bool classof(const MemRegion *R) { in classof() function [all …]
|
| H A D | SVals.h | 196 static bool classof(SVal V) { return V.getKind() == UndefinedValKind; } in classof() function 206 static bool classof(SVal V) { return !V.isUndef(); } in classof() function 217 static bool classof(SVal V) { return V.getKind() == UnknownValKind; } in classof() function 228 static bool classof(SVal V) { return !V.isUnknownOrUndef(); } in classof() function 247 static bool classof(SVal V) { in classof() function 264 static bool classof(SVal V) { in classof() function 293 static bool classof(SVal V) { return V.getKind() == SymbolValKind; } in classof() function 303 static bool classof(SVal V) { return V.getKind() == ConcreteIntKind; } in classof() function 326 static bool classof(SVal V) { return V.getKind() == LocAsIntegerKind; } in classof() function 346 static bool classof(SVal V) { return V.getKind() == CompoundValKind; } in classof() function [all …]
|
| /src/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCFragment.h | 112 static bool classof(const MCFragment *F) { return F->getKind() == FT_Dummy; } in classof() function 133 static bool classof(const MCFragment *F) { in classof() function 221 static bool classof(const MCFragment *F) { in classof() function 235 static bool classof(const MCFragment *F) { in classof() function 253 static bool classof(const MCFragment *F) { in classof() function 280 static bool classof(const MCFragment *F) { in classof() function 329 static bool classof(const MCFragment *F) { in classof() function 356 static bool classof(const MCFragment *F) { in classof() function 386 static bool classof(const MCFragment *F) { in classof() function 411 static bool classof(const MCFragment *F) { in classof() function [all …]
|
| /src/contrib/llvm-project/clang/include/clang/Analysis/ |
| H A D | ConstructionContext.h | 322 assert(classof(this)); in VariableConstructionContext() 335 static bool classof(const ConstructionContext *CC) { in classof() function 353 static bool classof(const ConstructionContext *CC) { in classof() function 382 static bool classof(const ConstructionContext *CC) { in classof() function 395 assert(classof(this)); in ConstructorInitializerConstructionContext() 406 static bool classof(const ConstructionContext *CC) { in classof() function 424 static bool classof(const ConstructionContext *CC) { in classof() function 456 static bool classof(const ConstructionContext *CC) { in classof() function 477 static bool classof(const ConstructionContext *CC) { in classof() function 517 static bool classof(const ConstructionContext *CC) { in classof() function [all …]
|
| /src/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | WasmYAML.h | 199 static bool classof(const Section *S) { in classof() function 221 static bool classof(const Section *S) { in classof() function 238 static bool classof(const Section *S) { in classof() function 251 static bool classof(const Section *S) { in classof() function 266 static bool classof(const Section *S) { in classof() function 279 static bool classof(const Section *S) { in classof() function 290 static bool classof(const Section *S) { in classof() function 300 static bool classof(const Section *S) { in classof() function 310 static bool classof(const Section *S) { in classof() function 320 static bool classof(const Section *S) { in classof() function [all …]
|
| /src/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | OpenACCClause.h | 41 static bool classof(const OpenACCClause *) { return false; } in classof() function 64 static bool classof(const OpenACCClause *C) { in classof() function 86 static bool classof(const OpenACCClause *C) { in classof() function 107 static bool classof(const OpenACCClause *C) { in classof() function 133 static bool classof(const OpenACCClause *C) { in classof() function 159 static bool classof(const OpenACCClause *C) { in classof() function 185 static bool classof(const OpenACCClause *C) { in classof() function 211 static bool classof(const OpenACCClause *C); 260 static bool classof(const OpenACCClause *C) { in classof() function 299 static bool classof(const OpenACCClause *C) { in classof() function [all …]
|
| H A D | StmtOpenMP.h | 180 static bool classof(const Stmt *S) { in classof() function 571 static bool classof(const Stmt *S) { in classof() function 691 static bool classof(const Stmt *T) { in classof() function 967 static bool classof(const Stmt *T) { in classof() function 1009 static bool classof(const Stmt *T) { in classof() function 1535 static bool classof(const Stmt *T) { in classof() function 1636 static bool classof(const Stmt *T) { in classof() function 1727 static bool classof(const Stmt *T) { in classof() function 1790 static bool classof(const Stmt *T) { in classof() function 1870 static bool classof(const Stmt *T) { in classof() function [all …]
|
| /src/contrib/llvm-project/clang/include/clang/ExtractAPI/ |
| H A D | API.h | 306 static bool classof(const APIRecord *Record) { return true; } in classof() function 308 static bool classof(const RecordContext *Ctx) { return true; } in classof() function 315 static bool classof(const APIRecord *Record) { in classof() function 323 static bool classof(const RecordContext *Context) { return true; } in classof() function 398 static bool classof(const APIRecord *Record) { in classof() function 431 static bool classof(const APIRecord *Record) { in classof() function 457 static bool classof(const APIRecord *Record) { in classof() function 477 static bool classof(const APIRecord *Record) { in classof() function 508 static bool classof(const APIRecord *Record) { in classof() function 536 static bool classof(const APIRecord *Record) { in classof() function [all …]
|
| /src/contrib/llvm-project/lld/COFF/ |
| H A D | Symbols.h | 161 static bool classof(const Symbol *s) { return s->kind() <= LastDefinedKind; } in classof() function 183 static bool classof(const Symbol *s) { in classof() function 210 static bool classof(const Symbol *s) { in classof() function 230 static bool classof(const Symbol *s) { in classof() function 255 static bool classof(const Symbol *s) { in classof() function 275 static bool classof(const Symbol *s) { in classof() function 299 static bool classof(const Symbol *s) { return s->kind() == LazyArchiveKind; } in classof() function 310 static bool classof(const Symbol *s) { return s->kind() == LazyObjectKind; } in classof() function 319 static bool classof(const Symbol *s) { in classof() function 332 static bool classof(const Symbol *s) { return s->kind() == UndefinedKind; } in classof() function [all …]
|
| /src/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
| H A D | Value.h | 101 static bool classof(const Value *Val) { in classof() function 122 static bool classof(const Value *Val) { in classof() function 139 static bool classof(const Value *Val) { in classof() function 154 static bool classof(const Value *Val) { in classof() function 164 static bool classof(const Value *Val) { in classof() function 175 static bool classof(const Value *Val) { in classof() function
|
| /src/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/ |
| H A D | GlobalISelMatchTable.h | 912 static bool classof(const PredicateMatcher *P) { in classof() function 947 static bool classof(const PredicateMatcher *P) { in classof() function 985 static bool classof(const PredicateMatcher *P) { in classof() function 1012 static bool classof(const PredicateMatcher *P) { in classof() function 1037 static bool classof(const PredicateMatcher *P) { in classof() function 1067 static bool classof(const PredicateMatcher *P) { in classof() function 1088 static bool classof(const PredicateMatcher *P) { in classof() function 1102 static bool classof(const PredicateMatcher *P) { in classof() function 1115 static bool classof(const PredicateMatcher *P) { in classof() function 1138 static bool classof(const PredicateMatcher *P) { in classof() function [all …]
|
| /src/contrib/llvm-project/llvm/include/llvm/XRay/ |
| H A D | FDRRecords.h | 97 static bool classof(const Record *R) { in classof() function 128 static bool classof(const Record *R) { in classof() function 153 static bool classof(const Record *R) { in classof() function 179 static bool classof(const Record *R) { in classof() function 201 static bool classof(const Record *R) { in classof() function 230 static bool classof(const Record *R) { in classof() function 257 static bool classof(const Record *R) { in classof() function 286 static bool classof(const Record *R) { in classof() function 308 static bool classof(const Record *R) { in classof() function 331 static bool classof(const Record *R) { in classof() function [all …]
|
| /src/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | ScalarEvolutionExpressions.h | 75 static bool classof(const SCEV *S) { return S->getSCEVType() == scConstant; } in classof() function 92 static bool classof(const SCEV *S) { return S->getSCEVType() == scVScale; } in classof() function 122 static bool classof(const SCEV *S) { in classof() function 137 static bool classof(const SCEV *S) { return S->getSCEVType() == scPtrToInt; } in classof() function 148 static bool classof(const SCEV *S) { in classof() function 163 static bool classof(const SCEV *S) { return S->getSCEVType() == scTruncate; } in classof() function 175 static bool classof(const SCEV *S) { in classof() function 189 static bool classof(const SCEV *S) { in classof() function 237 static bool classof(const SCEV *S) { in classof() function 255 static bool classof(const SCEV *S) { in classof() function [all …]
|
| /src/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ConstantsContext.h | 59 static bool classof(const ConstantExpr *CE) { in classof() function 62 static bool classof(const Value *V) { in classof() function 63 return isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V)); in classof() 86 static bool classof(const ConstantExpr *CE) { in classof() function 89 static bool classof(const Value *V) { in classof() function 90 return isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V)); in classof() 113 static bool classof(const ConstantExpr *CE) { in classof() function 116 static bool classof(const Value *V) { in classof() function 117 return isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V)); in classof() 141 static bool classof(const ConstantExpr *CE) { in classof() function [all …]
|