Home
last modified time | relevance | path

Searched refs:classof (Results 1 – 25 of 123) sorted by relevance

12345

/external/llvm/include/llvm/IR/
DIntrinsicInst.h49 static inline bool classof(const CallInst *I) { in classof() function
54 static inline bool classof(const Value *V) { in classof() function
55 return isa<CallInst>(V) && classof(cast<CallInst>(V)); in classof()
65 static inline bool classof(const IntrinsicInst *I) { in classof() function
73 static inline bool classof(const Value *V) { in classof() function
74 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
100 static inline bool classof(const IntrinsicInst *I) { in classof() function
103 static inline bool classof(const Value *V) { in classof() function
104 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
133 static inline bool classof(const IntrinsicInst *I) { in classof() function
[all …]
DOperator.h65 static inline bool classof(const Instruction *) { return true; } in classof() function
66 static inline bool classof(const ConstantExpr *) { return true; } in classof() function
67 static inline bool classof(const Value *V) { in classof() function
107 static inline bool classof(const Instruction *I) { in classof() function
113 static inline bool classof(const ConstantExpr *CE) { in classof() function
119 static inline bool classof(const Value *V) { in classof() function
120 return (isa<Instruction>(V) && classof(cast<Instruction>(V))) || in classof()
121 (isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V))); in classof()
152 static inline bool classof(const ConstantExpr *CE) { in classof() function
155 static inline bool classof(const Instruction *I) { in classof() function
[all …]
DInstructions.h146 static inline bool classof(const Instruction *I) { in classof() function
149 static inline bool classof(const Value *V) { in classof() function
150 return isa<Instruction>(V) && classof(cast<Instruction>(V)); in classof()
271 static inline bool classof(const Instruction *I) { in classof() function
274 static inline bool classof(const Value *V) { in classof() function
275 return isa<Instruction>(V) && classof(cast<Instruction>(V)); in classof()
392 static inline bool classof(const Instruction *I) { in classof() function
395 static inline bool classof(const Value *V) { in classof() function
396 return isa<Instruction>(V) && classof(cast<Instruction>(V)); in classof()
463 static inline bool classof(const Instruction *I) {
[all …]
DDiagnosticInfo.h148 static bool classof(const DiagnosticInfo *DI) { in classof() function
175 static bool classof(const DiagnosticInfo *DI) { in classof() function
203 static bool classof(const DiagnosticInfo *DI) { in classof() function
228 static bool classof(const DiagnosticInfo *DI) { in classof() function
268 static bool classof(const DiagnosticInfo *DI) { in classof() function
328 static bool classof(const DiagnosticInfo *DI) { in classof() function
354 static bool classof(const DiagnosticInfo *DI) { in classof() function
381 static bool classof(const DiagnosticInfo *DI) { in classof() function
436 static bool classof(const DiagnosticInfo *DI) { in classof() function
DDerivedTypes.h88 static inline bool classof(const Type *T) { in classof() function
139 static inline bool classof(const Type *T) { in classof() function
161 static inline bool classof(const Type *T) { in classof() function
296 static inline bool classof(const Type *T) { in classof() function
325 static inline bool classof(const Type *T) { in classof() function
354 static inline bool classof(const Type *T) { in classof() function
440 static inline bool classof(const Type *T) { in classof() function
471 static inline bool classof(const Type *T) { in classof() function
DInstrTypes.h72 static inline bool classof(const Instruction *I) { in classof() function
75 static inline bool classof(const Value *V) { in classof() function
76 return isa<Instruction>(V) && classof(cast<Instruction>(V)); in classof()
111 static inline bool classof(const Instruction *I) { in classof() function
118 static inline bool classof(const Value *V) { in classof() function
119 return isa<Instruction>(V) && classof(cast<Instruction>(V)); in classof()
360 static inline bool classof(const Instruction *I) {
363 static inline bool classof(const Value *V) {
364 return isa<Instruction>(V) && classof(cast<Instruction>(V));
661 static inline bool classof(const Instruction *I) {
[all …]
DDebugInfoMetadata.h198 static bool classof(const Metadata *MD) { in classof() function
310 static bool classof(const Metadata *MD) {
350 static bool classof(const Metadata *MD) {
398 static bool classof(const Metadata *MD) {
438 static bool classof(const Metadata *MD) {
498 static bool classof(const Metadata *MD) {
584 static bool classof(const Metadata *MD) {
648 static bool classof(const Metadata *MD) {
670 static bool classof(const Metadata *MD) {
766 static bool classof(const Metadata *MD) {
[all …]
/external/clang/include/clang/Driver/
DAction.h115 static bool classof(const Action *A) { in classof() function
131 static bool classof(const Action *A) { in classof() function
143 static bool classof(const Action *A) { in classof() function
154 static bool classof(const Action *A) { in classof() function
164 static bool classof(const Action *A) { in classof() function
174 static bool classof(const Action *A) { in classof() function
184 static bool classof(const Action *A) { in classof() function
194 static bool classof(const Action *A) { in classof() function
204 static bool classof(const Action *A) { in classof() function
214 static bool classof(const Action *A) { in classof() function
[all …]
/external/llvm/docs/
DHowToSetUpLLVMStyleRTTI.rst152 is through a small static member function ``classof``. In order to have
180 + static bool classof(const Shape *S) {
191 + static bool classof(const Shape *S) {
196 The job of ``classof`` is to dynamically determine whether an object of
199 ``classof`` in ``Derived`` which will accept an object of type ``Base``.
212 check roughly like ``Circle::classof(S)``. For more information, see
213 :ref:`classof-contract`.
215 The argument to ``classof`` should always be an *ancestor* class because
218 ``Foo`` automatically has a ``classof`` like:
225 static bool classof(const T *,
[all …]
/external/llvm/utils/TableGen/
DDAGISelMatcher.h224 static inline bool classof(const Matcher *N) { in classof() function
250 static inline bool classof(const Matcher *N) { in classof() function
284 static inline bool classof(const Matcher *N) { in classof() function
303 static inline bool classof(const Matcher *N) { in classof() function
322 static inline bool classof(const Matcher *N) { in classof() function
343 static inline bool classof(const Matcher *N) { in classof() function
363 static inline bool classof(const Matcher *N) { in classof() function
386 static inline bool classof(const Matcher *N) { in classof() function
413 static inline bool classof(const Matcher *N) { in classof() function
439 static inline bool classof(const Matcher *N) { in classof() function
[all …]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DMemRegion.h201 assert(classof(this)); in MemRegion()
211 static bool classof(const MemRegion *R) { in classof() function
223 static bool classof(const MemRegion *R) { in classof() function
249 static bool classof(const MemRegion *R) { in classof() function
269 static bool classof(const MemRegion *R) { in classof() function
288 static bool classof(const MemRegion *R) { in classof() function
308 static bool classof(const MemRegion *R) { in classof() function
326 static bool classof(const MemRegion *R) { in classof() function
341 static bool classof(const MemRegion *R) { in classof() function
355 static bool classof(const MemRegion *R) { in classof() function
[all …]
DSymbolManager.h117 static inline bool classof(const SymExpr *SE) { in classof() function
147 static inline bool classof(const SymExpr *SE) { in classof() function
193 static inline bool classof(const SymExpr *SE) { in classof() function
227 static inline bool classof(const SymExpr *SE) { in classof() function
258 static inline bool classof(const SymExpr *SE) { in classof() function
303 static inline bool classof(const SymExpr *SE) { in classof() function
339 static inline bool classof(const SymExpr *SE) { in classof() function
361 static inline bool classof(const SymExpr *SE) { in classof() function
397 static inline bool classof(const SymExpr *SE) { in classof() function
432 static inline bool classof(const SymExpr *SE) { in classof() function
[all …]
/external/clang/include/clang/AST/
DStmtOpenMP.h196 static bool classof(const Stmt *S) { in classof() function
265 static bool classof(const Stmt *T) { in classof() function
611 static bool classof(const Stmt *T) { in classof() function
680 static bool classof(const Stmt *T) { in classof() function
744 static bool classof(const Stmt *T) { in classof() function
809 static bool classof(const Stmt *T) { in classof() function
867 static bool classof(const Stmt *T) { in classof() function
914 static bool classof(const Stmt *T) { in classof() function
971 static bool classof(const Stmt *T) { in classof() function
1018 static bool classof(const Stmt *T) { in classof() function
[all …]
DOpenMPClause.h64 static bool classof(const OMPClause *) { return true; } in classof() function
192 static bool classof(const OMPClause *T) { in classof() function
245 static bool classof(const OMPClause *T) { in classof() function
299 static bool classof(const OMPClause *T) { in classof() function
355 static bool classof(const OMPClause *T) { in classof() function
411 static bool classof(const OMPClause *T) { in classof() function
480 static bool classof(const OMPClause *T) { in classof() function
551 static bool classof(const OMPClause *T) { in classof() function
649 static bool classof(const OMPClause *T) { in classof() function
678 static bool classof(const OMPClause *T) { in classof() function
[all …]
DComment.h252 static bool classof(const Comment *C) { in classof() function
279 static bool classof(const Comment *C) { in classof() function
337 static bool classof(const Comment *C) { in classof() function
396 static bool classof(const Comment *C) { in classof() function
470 static bool classof(const Comment *C) { in classof() function
525 static bool classof(const Comment *C) { in classof() function
545 static bool classof(const Comment *C) { in classof() function
574 static bool classof(const Comment *C) { in classof() function
643 static bool classof(const Comment *C) { in classof() function
739 static bool classof(const Comment *C) { in classof() function
[all …]
DExprCXX.h100 static bool classof(const Stmt *T) { in classof() function
149 static bool classof(const Stmt *T) { in classof() function
176 static bool classof(const Stmt *T) { in classof() function
221 static bool classof(const Stmt *T) { in classof() function
259 static bool classof(const Stmt *T) { in classof() function
293 static bool classof(const Stmt *T) { in classof() function
328 static bool classof(const Stmt *T) { in classof() function
358 static bool classof(const Stmt *T) { in classof() function
424 static bool classof(const Stmt *S) { in classof() function
455 static bool classof(const Stmt *T) { in classof() function
[all …]
DStmtObjC.h63 static bool classof(const Stmt *T) { in classof() function
112 static bool classof(const Stmt *T) { in classof() function
144 static bool classof(const Stmt *T) { in classof() function
244 static bool classof(const Stmt *T) { in classof() function
303 static bool classof(const Stmt *T) { in classof() function
337 static bool classof(const Stmt *T) { in classof() function
366 static bool classof(const Stmt *T) { in classof() function
DType.h1931 static bool classof(const Type *T) { return T->getTypeClass() == Builtin; }
1961 static bool classof(const Type *T) { return T->getTypeClass() == Complex; }
1992 static bool classof(const Type *T) { return T->getTypeClass() == Paren; }
2039 static bool classof(const Type *T) { return T->getTypeClass() == Pointer; }
2075 static bool classof(const Type *T) {
2097 static bool classof(const Type *T) { return T->getTypeClass() == Decayed; }
2130 static bool classof(const Type *T) {
2176 static bool classof(const Type *T) {
2194 static bool classof(const Type *T) {
2210 static bool classof(const Type *T) {
[all …]
/external/clang/include/clang/Analysis/Analyses/
DThreadSafetyLogical.h52 static bool classof(const LExpr *E) { return E->kind() == LExpr::Terminal; } in classof() function
73 static bool classof(const LExpr *E) { return E->kind() == LExpr::And; } in classof() function
80 static bool classof(const LExpr *E) { return E->kind() == LExpr::Or; } in classof() function
92 static bool classof(const LExpr *E) { return E->kind() == LExpr::Not; } in classof() function
DThreadSafetyTIL.h347 static bool classof(const SExpr *E) { return E->opcode() == COP_Variable; } in classof() function
416 static bool classof(const SExpr *E) { return E->opcode() == COP_Future; } in classof() function
474 static bool classof(const SExpr *E) { return E->opcode() == COP_Undefined; } in classof() function
497 static bool classof(const SExpr *E) { return E->opcode() == COP_Wildcard; } in classof() function
518 static bool classof(const SExpr *E) { return E->opcode() == COP_Literal; } in classof() function
629 static bool classof(const SExpr *E) { return E->opcode() == COP_LiteralPtr; } in classof() function
657 static bool classof(const SExpr *E) { return E->opcode() == COP_Function; } in classof() function
708 static bool classof(const SExpr *E) { return E->opcode() == COP_SFunction; } in classof() function
758 static bool classof(const SExpr *E) { return E->opcode() == COP_Code; } in classof() function
794 static bool classof(const SExpr *E) { return E->opcode() == COP_Field; } in classof() function
[all …]
/external/llvm/include/llvm/CodeGen/
DDIE.h288 static bool classof(const DIEValue *I) { return I->getType() == isInteger; } in classof() function
317 static bool classof(const DIEValue *E) { return E->getType() == isExpr; } in classof() function
346 static bool classof(const DIEValue *L) { return L->getType() == isLabel; } in classof() function
373 static bool classof(const DIEValue *D) { return D->getType() == isDelta; } in classof() function
403 static bool classof(const DIEValue *D) { return D->getType() == isString; } in classof() function
438 static bool classof(const DIEValue *E) { return E->getType() == isEntry; } in classof() function
464 static bool classof(const DIEValue *E) { in classof() function
509 static bool classof(const DIEValue *E) { return E->getType() == isLoc; } in classof() function
549 static bool classof(const DIEValue *E) { return E->getType() == isBlock; } in classof() function
579 static bool classof(const DIEValue *E) { return E->getType() == isLocList; } in classof() function
DSelectionDAGNodes.h994 static bool classof(const SDNode *N) {
1039 static bool classof(const SDNode *N) {
1131 static bool classof(const SDNode *N) {
1253 static bool classof(const SDNode *N) {
1286 static bool classof(const SDNode *N) {
1354 static bool classof(const SDNode *N) {
1380 static bool classof(const SDNode *N) {
1429 static bool classof(const SDNode *N) {
1451 static bool classof(const SDNode *N) {
1470 static bool classof(const SDNode *N) {
[all …]
/external/llvm/include/llvm/Analysis/
DScalarEvolutionExpressions.h50 static inline bool classof(const SCEV *S) { in classof() function
71 static inline bool classof(const SCEV *S) { in classof() function
90 static inline bool classof(const SCEV *S) { in classof() function
107 static inline bool classof(const SCEV *S) { in classof() function
124 static inline bool classof(const SCEV *S) { in classof() function
169 static inline bool classof(const SCEV *S) { in classof() function
190 static inline bool classof(const SCEV *S) { in classof() function
224 static inline bool classof(const SCEV *S) { in classof() function
242 static inline bool classof(const SCEV *S) { in classof() function
273 static inline bool classof(const SCEV *S) { in classof() function
[all …]
/external/clang/include/clang/Lex/
DMacroInfo.h482 static bool classof(const MacroDirective *) { return true; } in classof() function
514 static bool classof(const MacroDirective *MD) { in classof() function
517 static bool classof(const DefMacroDirective *) { return true; } in classof() function
530 static bool classof(const MacroDirective *MD) { in classof() function
533 static bool classof(const UndefMacroDirective *) { return true; } in classof() function
548 static bool classof(const MacroDirective *MD) { in classof() function
551 static bool classof(const VisibilityMacroDirective *) { return true; } in classof() function
/external/lldb/include/lldb/Breakpoint/
DBreakpointResolverFileRegex.h53 static inline bool classof(const BreakpointResolverFileRegex *) { return true; } in classof() function
54 static inline bool classof(const BreakpointResolver *V) { in classof() function

12345