HomeSort by relevance Sort by last modified time
    Searched defs:classof (Results 51 - 75 of 94) sorted by null

1 23 4

  /external/llvm/include/llvm/
Function.h 403 static inline bool classof(const Function *) { return true; } function in class:llvm::Function
404 static inline bool classof(const Value *V) { function in class:llvm::Function
GlobalValue.h 290 static inline bool classof(const GlobalValue *) { return true; } function in class:llvm::GlobalValue
291 static inline bool classof(const Value *V) { function in class:llvm::GlobalValue
InlineAsm.h 192 static inline bool classof(const InlineAsm *) { return true; } function in class:llvm::InlineAsm
193 static inline bool classof(const Value *V) { function in class:llvm::InlineAsm
InstrTypes.h 76 static inline bool classof(const TerminatorInst *) { return true; } function in class:llvm::TerminatorInst
77 static inline bool classof(const Instruction *I) { function in class:llvm::TerminatorInst
80 static inline bool classof(const Value *V) { function in class:llvm::TerminatorInst
81 return isa<Instruction>(V) && classof(cast<Instruction>(V));
116 static inline bool classof(const UnaryInstruction *) { return true; } function in class:llvm::UnaryInstruction
117 static inline bool classof(const Instruction *I) { function in class:llvm::UnaryInstruction
124 static inline bool classof(const Value *V) { function in class:llvm::UnaryInstruction
125 return isa<Instruction>(V) && classof(cast<Instruction>(V));
364 static inline bool classof(const BinaryOperator *) { return true; } function in class:llvm::BinaryOperator
365 static inline bool classof(const Instruction *I) function in class:llvm::BinaryOperator
368 static inline bool classof(const Value *V) { function in class:llvm::BinaryOperator
614 static inline bool classof(const CastInst *) { return true; } function in class:llvm::CastInst
615 static inline bool classof(const Instruction *I) { function in class:llvm::CastInst
618 static inline bool classof(const Value *V) { function in class:llvm::CastInst
819 static inline bool classof(const CmpInst *) { return true; } function in class:llvm::CmpInst
820 static inline bool classof(const Instruction *I) { function in class:llvm::CmpInst
824 static inline bool classof(const Value *V) { function in class:llvm::CmpInst
    [all...]
Value.h 219 /// used to implement the classof checks. This should not be used for any
261 static inline bool classof(const Value *) { function in class:llvm::Value
  /external/llvm/include/llvm/Object/
ObjectFile.h 384 static inline bool classof(const Binary *v) { function in class:llvm::object::ObjectFile
387 static inline bool classof(const ObjectFile *v) { return true; } function in class:llvm::object::ObjectFile
  /external/llvm/include/llvm/Support/
YAMLParser.h 136 static inline bool classof(const Node *) { return true; } function in class:llvm::yaml::Node
169 static inline bool classof(const NullNode *) { return true; } function in class:llvm::yaml::NullNode
170 static inline bool classof(const Node *N) { function in class:llvm::yaml::NullNode
202 static inline bool classof(const ScalarNode *) { return true; } function in class:llvm::yaml::ScalarNode
203 static inline bool classof(const Node *N) { function in class:llvm::yaml::ScalarNode
249 static inline bool classof(const KeyValueNode *) { return true; } function in class:llvm::yaml::KeyValueNode
250 static inline bool classof(const Node *N) { function in class:llvm::yaml::KeyValueNode
365 static inline bool classof(const MappingNode *) { return true; } function in class:llvm::yaml::MappingNode
366 static inline bool classof(const Node *N) { function in class:llvm::yaml::MappingNode
428 static inline bool classof(const SequenceNode *) { return true; function in class:llvm::yaml::SequenceNode
429 static inline bool classof(const Node *N) { function in class:llvm::yaml::SequenceNode
453 static inline bool classof(const ScalarNode *) { return true; } function in class:llvm::yaml::AliasNode
454 static inline bool classof(const Node *N) { function in class:llvm::yaml::AliasNode
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.h 218 static bool classof(const DIEValue *) { return true; } function in class:llvm::DIEValue
260 static bool classof(const DIEInteger *) { return true; } function in class:llvm::DIEInteger
261 static bool classof(const DIEValue *I) { return I->getType() == isInteger; } function in class:llvm::DIEInteger
289 static bool classof(const DIELabel *) { return true; } function in class:llvm::DIELabel
290 static bool classof(const DIEValue *L) { return L->getType() == isLabel; } function in class:llvm::DIELabel
316 static bool classof(const DIEDelta *) { return true; } function in class:llvm::DIEDelta
317 static bool classof(const DIEValue *D) { return D->getType() == isDelta; } function in class:llvm::DIEDelta
346 static bool classof(const DIEEntry *) { return true; } function in class:llvm::DIEEntry
347 static bool classof(const DIEValue *E) { return E->getType() == isEntry; } function in class:llvm::DIEEntry
386 static bool classof(const DIEBlock *) { return true; function in class:llvm::DIEBlock
387 static bool classof(const DIEValue *E) { return E->getType() == isBlock; } function in class:llvm::DIEBlock
    [all...]
  /external/clang/include/clang/AST/
Decl.h 90 static bool classof(const Decl *D) { return classofKind(D->getKind()); } function in class:clang::TranslationUnitDecl
91 static bool classof(const TranslationUnitDecl *D) { return true; } function in class:clang::TranslationUnitDecl
339 static bool classof(const Decl *D) { return classofKind(D->getKind()); } function in class:clang::NamedDecl
340 static bool classof(const NamedDecl *D) { return true; } function in class:clang::NamedDecl
385 static bool classof(const Decl *D) { return classofKind(D->getKind()); } function in class:clang::LabelDecl
386 static bool classof(const LabelDecl *D) { return true; } function in class:clang::LabelDecl
511 static bool classof(const Decl *D) { return classofKind(D->getKind()); } function in class:clang::NamespaceDecl
512 static bool classof(const NamespaceDecl *D) { return true; } function in class:clang::NamespaceDecl
547 static bool classof(const Decl *D) { return classofKind(D->getKind()); } function in class:clang::ValueDecl
548 static bool classof(const ValueDecl *D) { return true; function in class:clang::ValueDecl
    [all...]
Comment.h 177 static bool classof(const Comment *) { return true; } function in class:clang::comments::Comment
215 static bool classof(const Comment *C) { function in class:clang::comments::InlineContentComment
220 static bool classof(const InlineContentComment *) { return true; } function in class:clang::comments::InlineContentComment
244 static bool classof(const Comment *C) { function in class:clang::comments::TextComment
248 static bool classof(const TextComment *) { return true; } function in class:clang::comments::TextComment
304 static bool classof(const Comment *C) { function in class:clang::comments::InlineCommandComment
308 static bool classof(const InlineCommandComment *) { return true; } function in class:clang::comments::InlineCommandComment
365 static bool classof(const Comment *C) { function in class:clang::comments::HTMLTagComment
370 static bool classof(const HTMLTagComment *) { return true; } function in class:clang::comments::HTMLTagComment
433 static bool classof(const Comment *C) function in class:clang::comments::HTMLStartTagComment
437 static bool classof(const HTMLStartTagComment *) { return true; } function in class:clang::comments::HTMLStartTagComment
490 static bool classof(const Comment *C) { function in class:clang::comments::HTMLEndTagComment
494 static bool classof(const HTMLEndTagComment *) { return true; } function in class:clang::comments::HTMLEndTagComment
512 static bool classof(const Comment *C) { function in class:clang::comments::BlockContentComment
517 static bool classof(const BlockContentComment *) { return true; } function in class:clang::comments::BlockContentComment
543 static bool classof(const Comment *C) { function in class:clang::comments::ParagraphComment
547 static bool classof(const ParagraphComment *) { return true; } function in class:clang::comments::ParagraphComment
610 static bool classof(const Comment *C) { function in class:clang::comments::BlockCommandComment
615 static bool classof(const BlockCommandComment *) { return true; } function in class:clang::comments::BlockCommandComment
699 static bool classof(const Comment *C) { function in class:clang::comments::ParamCommandComment
703 static bool classof(const ParamCommandComment *) { return true; } function in class:clang::comments::ParamCommandComment
777 static bool classof(const Comment *C) { function in class:clang::comments::TParamCommandComment
781 static bool classof(const TParamCommandComment *) { return true; } function in class:clang::comments::TParamCommandComment
828 static bool classof(const Comment *C) { function in class:clang::comments::VerbatimBlockLineComment
832 static bool classof(const VerbatimBlockLineComment *) { return true; } function in class:clang::comments::VerbatimBlockLineComment
860 static bool classof(const Comment *C) { function in class:clang::comments::VerbatimBlockComment
864 static bool classof(const VerbatimBlockComment *) { return true; } function in class:clang::comments::VerbatimBlockComment
917 static bool classof(const Comment *C) { function in class:clang::comments::VerbatimLineComment
921 static bool classof(const VerbatimLineComment *) { return true; } function in class:clang::comments::VerbatimLineComment
1054 static bool classof(const Comment *C) { function in class:clang::comments::FullComment
1058 static bool classof(const FullComment *) { return true; } function in class:clang::comments::FullComment
    [all...]
ExprCXX.h 83 static bool classof(const Stmt *T) { function in class:clang::CXXOperatorCallExpr
86 static bool classof(const CXXOperatorCallExpr *) { return true; } function in class:clang::CXXOperatorCallExpr
124 static bool classof(const Stmt *T) { function in class:clang::CXXMemberCallExpr
127 static bool classof(const CXXMemberCallExpr *) { return true; } function in class:clang::CXXMemberCallExpr
152 static bool classof(const Stmt *T) { function in class:clang::CUDAKernelCallExpr
155 static bool classof(const CUDAKernelCallExpr *) { return true; } function in class:clang::CUDAKernelCallExpr
196 static bool classof(const Stmt *T) { function in class:clang::CXXNamedCastExpr
207 static bool classof(const CXXNamedCastExpr *) { return true; } function in class:clang::CXXNamedCastExpr
234 static bool classof(const Stmt *T) { function in class:clang::CXXStaticCastExpr
237 static bool classof(const CXXStaticCastExpr *) { return true; function in class:clang::CXXStaticCastExpr
268 static bool classof(const Stmt *T) { function in class:clang::CXXDynamicCastExpr
271 static bool classof(const CXXDynamicCastExpr *) { return true; } function in class:clang::CXXDynamicCastExpr
300 static bool classof(const Stmt *T) { function in class:clang::CXXReinterpretCastExpr
303 static bool classof(const CXXReinterpretCastExpr *) { return true; } function in class:clang::CXXReinterpretCastExpr
328 static bool classof(const Stmt *T) { function in class:clang::CXXConstCastExpr
331 static bool classof(const CXXConstCastExpr *) { return true; } function in class:clang::CXXConstCastExpr
397 static bool classof(const Stmt *S) { function in class:clang::UserDefinedLiteral
400 static bool classof(const UserDefinedLiteral *) { return true; } function in class:clang::UserDefinedLiteral
428 static bool classof(const Stmt *T) { function in class:clang::CXXBoolLiteralExpr
431 static bool classof(const CXXBoolLiteralExpr *) { return true; } function in class:clang::CXXBoolLiteralExpr
454 static bool classof(const Stmt *T) { function in class:clang::CXXNullPtrLiteralExpr
457 static bool classof(const CXXNullPtrLiteralExpr *) { return true; } function in class:clang::CXXNullPtrLiteralExpr
535 static bool classof(const Stmt *T) { function in class:clang::CXXTypeidExpr
538 static bool classof(const CXXTypeidExpr *) { return true; } function in class:clang::CXXTypeidExpr
610 static bool classof(const Stmt *T) { function in class:clang::CXXUuidofExpr
613 static bool classof(const CXXUuidofExpr *) { return true; } function in class:clang::CXXUuidofExpr
658 static bool classof(const Stmt *T) { function in class:clang::CXXThisExpr
661 static bool classof(const CXXThisExpr *) { return true; } function in class:clang::CXXThisExpr
709 static bool classof(const Stmt *T) { function in class:clang::CXXThrowExpr
712 static bool classof(const CXXThrowExpr *) { return true; } function in class:clang::CXXThrowExpr
797 static bool classof(const Stmt *T) { function in class:clang::CXXDefaultArgExpr
800 static bool classof(const CXXDefaultArgExpr *) { return true; } function in class:clang::CXXDefaultArgExpr
874 static bool classof(const Stmt *T) { function in class:clang::CXXBindTemporaryExpr
877 static bool classof(const CXXBindTemporaryExpr *) { return true; } function in class:clang::CXXBindTemporaryExpr
1068 static bool classof(const CXXFunctionalCastExpr *) { return true; } function in class:clang::CXXConstructExpr
1103 static bool classof(const Stmt *T) { function in class:clang::CXXTemporaryObjectExpr
1106 static bool classof(const CXXTemporaryObjectExpr *) { return true; } function in class:clang::CXXTemporaryObjectExpr
1396 static bool classof(const Stmt *T) { function in class:clang::LambdaExpr
1399 static bool classof(const LambdaExpr *) { return true; } function in class:clang::LambdaExpr
1444 static bool classof(const Stmt *T) { function in class:clang::CXXScalarValueInitExpr
1447 static bool classof(const CXXScalarValueInitExpr *) { return true; } function in class:clang::CXXScalarValueInitExpr
    [all...]
TypeLoc.h 162 static bool classof(const TypeLoc *TL) { return true; } function in class:clang::TypeLoc
192 static bool classof(const TypeLoc *TL) { function in class:clang::UnqualTypeLoc
195 static bool classof(const UnqualTypeLoc *TL) { return true; } function in class:clang::UnqualTypeLoc
237 static bool classof(const TypeLoc *TL) { function in class:clang::QualifiedTypeLoc
240 static bool classof(const QualifiedTypeLoc *TL) { return true; } function in class:clang::QualifiedTypeLoc
297 return TypeClass::classof(Ty);
300 static bool classof(const TypeLoc *TL) { function in class:clang::ConcreteTypeLoc
303 static bool classof(const UnqualTypeLoc *TL) { function in class:clang::ConcreteTypeLoc
306 static bool classof(const Derived *TL) { function in class:clang::ConcreteTypeLoc
374 return TypeClass::classof(Ty)
377 static bool classof(const TypeLoc *TL) { function in class:clang::InheritingConcreteTypeLoc
380 static bool classof(const UnqualTypeLoc *TL) { function in class:clang::InheritingConcreteTypeLoc
383 static bool classof(const Derived *TL) { function in class:clang::InheritingConcreteTypeLoc
420 static bool classof(const TypeSpecTypeLoc *TL) { return true; } function in class:clang::TypeSpecTypeLoc
    [all...]
  /external/clang/include/clang/Analysis/
ProgramPoint.h 143 static bool classof(const ProgramPoint*) { return true; } function in class:clang::ProgramPoint
189 static bool classof(const ProgramPoint* Location) { function in class:clang::BlockEntrance
207 static bool classof(const ProgramPoint* Location) { function in class:clang::BlockExit
225 static bool classof(const ProgramPoint* Location) { function in class:clang::StmtPoint
240 static bool classof(const ProgramPoint* Location) { function in class:clang::PreStmt
260 static bool classof(const ProgramPoint* Location) { function in class:clang::PostStmt
273 static bool classof(const ProgramPoint* Location) { function in class:clang::PostCondition
284 static bool classof(const ProgramPoint *location) { function in class:clang::LocationCheck
296 static bool classof(const ProgramPoint *location) { function in class:clang::PreLoad
307 static bool classof(const ProgramPoint *location) function in class:clang::PreStore
318 static bool classof(const ProgramPoint* Location) { function in class:clang::PostLoad
336 static bool classof(const ProgramPoint* Location) { function in class:clang::PostStore
354 static bool classof(const ProgramPoint* Location) { function in class:clang::PostLValue
367 static bool classof(const ProgramPoint* Location) { function in class:clang::PreStmtPurgeDeadSymbols
380 static bool classof(const ProgramPoint* Location) { function in class:clang::PostStmtPurgeDeadSymbols
401 static bool classof(const ProgramPoint* Location) { function in class:clang::BlockEdge
412 static bool classof(const ProgramPoint *Location) { function in class:clang::PostInitializer
431 static bool classof(const ProgramPoint *Location) { function in class:clang::ImplicitCallPoint
446 static bool classof(const ProgramPoint *Location) { function in class:clang::PreImplicitCall
460 static bool classof(const ProgramPoint *Location) { function in class:clang::PostImplicitCall
481 static bool classof(const ProgramPoint *Location) { function in class:clang::CallEnter
501 static bool classof(const ProgramPoint *Location) { function in class:clang::CallExitBegin
519 static bool classof(const ProgramPoint *Location) { function in class:clang::CallExitEnd
534 static bool classof(const ProgramPoint* Location) { function in class:clang::EpsilonPoint
    [all...]
CFG.h 92 static bool classof(const CFGElement *E) { return true; } function in class:clang::CFGElement
103 static bool classof(const CFGElement *E) { function in class:clang::CFGStmt
119 static bool classof(const CFGElement *E) { function in class:clang::CFGInitializer
137 static bool classof(const CFGElement *E) { function in class:clang::CFGImplicitDtor
160 static bool classof(const CFGElement *elem) { function in class:clang::CFGAutomaticObjDtor
176 static bool classof(const CFGElement *E) { function in class:clang::CFGBaseDtor
192 static bool classof(const CFGElement *E) { function in class:clang::CFGMemberDtor
208 static bool classof(const CFGElement *E) { function in class:clang::CFGTemporaryDtor
    [all...]
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 98 static bool classof(const PreprocessedEntity *) { return true; } function in class:clang::PreprocessedEntity
132 static bool classof(const PreprocessedEntity *PD) { function in class:clang::PreprocessingDirective
136 static bool classof(const PreprocessingDirective *) { return true; } function in class:clang::PreprocessingDirective
155 static bool classof(const PreprocessedEntity *PE) { function in class:clang::MacroDefinition
158 static bool classof(const MacroDefinition *) { return true; } function in class:clang::MacroDefinition
193 static bool classof(const PreprocessedEntity *PE) { function in class:clang::MacroExpansion
196 static bool classof(const MacroExpansion *) { return true; } function in class:clang::MacroExpansion
253 static bool classof(const PreprocessedEntity *PE) { function in class:clang::InclusionDirective
256 static bool classof(const InclusionDirective *) { return true; } function in class:clang::InclusionDirective
  /external/clang/include/clang/Sema/
ScopeInfo.h 148 static bool classof(const FunctionScopeInfo *FSI) { return true; } function in class:clang::sema::FunctionScopeInfo
299 static bool classof(const FunctionScopeInfo *FSI) { function in class:clang::sema::CapturingScopeInfo
302 static bool classof(const CapturingScopeInfo *BSI) { return true; } function in class:clang::sema::CapturingScopeInfo
327 static bool classof(const FunctionScopeInfo *FSI) { function in class:clang::sema::BlockScopeInfo
330 static bool classof(const BlockScopeInfo *BSI) { return true; } function in class:clang::sema::BlockScopeInfo
383 static bool classof(const FunctionScopeInfo *FSI) { function in class:clang::sema::LambdaScopeInfo
386 static bool classof(const LambdaScopeInfo *BSI) { return true; } function in class:clang::sema::LambdaScopeInfo
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 428 static bool classof(const BugReporter* R) { return true; } function in class:clang::ento::BugReporter
467 /// classof - Used by isa<>, cast<>, and dyn_cast<>.
468 static bool classof(const BugReporter* R) { function in class:clang::ento::GRBugReporter
PathDiagnostic.h 364 static inline bool classof(const PathDiagnosticPiece *P) { function in class:clang::ento::PathDiagnosticPiece
495 static inline bool classof(const PathDiagnosticPiece *P) { function in class:clang::ento::PathDiagnosticEventPiece
564 static inline bool classof(const PathDiagnosticPiece *P) { function in class:clang::ento::PathDiagnosticCallPiece
618 static inline bool classof(const PathDiagnosticPiece *P) { function in class:clang::ento::PathDiagnosticControlFlowPiece
642 static inline bool classof(const PathDiagnosticPiece *P) { function in class:clang::ento::PathDiagnosticMacroPiece
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 342 static bool classof(const CallEvent *) { return true; } function in class:clang::ento::CallEvent
381 static bool classof(const CallEvent *CA) { function in class:clang::ento::AnyFunctionCall
408 static bool classof(const CallEvent *CA) { function in class:clang::ento::SimpleCall
431 static bool classof(const CallEvent *CA) { function in class:clang::ento::FunctionCall
481 static bool classof(const CallEvent *CA) { function in class:clang::ento::BlockCall
516 static bool classof(const CallEvent *CA) { function in class:clang::ento::CXXInstanceCall
555 static bool classof(const CallEvent *CA) { function in class:clang::ento::CXXMemberCall
594 static bool classof(const CallEvent *CA) { function in class:clang::ento::CXXMemberOperatorCall
643 static bool classof(const CallEvent *CA) { function in class:clang::ento::CXXDestructorCall
696 static bool classof(const CallEvent *CA) function in class:clang::ento::CXXConstructorCall
737 static bool classof(const CallEvent *CE) { function in class:clang::ento::CXXAllocatorCall
847 static bool classof(const CallEvent *CA) { function in class:clang::ento::ObjCMethodCall
    [all...]
SymbolManager.h 72 static inline bool classof(const SymExpr*) { return true; } function in class:clang::ento::SymExpr
120 static inline bool classof(const SymExpr *SE) { function in class:clang::ento::SymbolData
150 static inline bool classof(const SymExpr *SE) { function in class:clang::ento::SymbolRegionValue
196 static inline bool classof(const SymExpr *SE) { function in class:clang::ento::SymbolConjured
230 static inline bool classof(const SymExpr *SE) { function in class:clang::ento::SymbolDerived
261 static inline bool classof(const SymExpr *SE) { function in class:clang::ento::SymbolExtent
306 static inline bool classof(const SymExpr *SE) { function in class:clang::ento::SymbolMetadata
342 static inline bool classof(const SymExpr *SE) { function in class:clang::ento::SymbolCast
385 static inline bool classof(const SymExpr *SE) { function in class:clang::ento::SymIntExpr
426 static inline bool classof(const SymExpr *SE) function in class:clang::ento::IntSymExpr
467 static inline bool classof(const SymExpr *SE) { function in class:clang::ento::SymSymExpr
    [all...]
  /external/clang/tools/libclang/
IndexingContext.h 104 static bool classof(const DeclInfo *) { return true; } function in struct:clang::cxindex::DeclInfo
126 static bool classof(const DeclInfo *D) { function in struct:clang::cxindex::ObjCContainerDeclInfo
129 static bool classof(const ObjCContainerDeclInfo *D) { return true; } function in struct:clang::cxindex::ObjCContainerDeclInfo
152 static bool classof(const DeclInfo *D) { function in struct:clang::cxindex::ObjCInterfaceDeclInfo
155 static bool classof(const ObjCInterfaceDeclInfo *D) { return true; } function in struct:clang::cxindex::ObjCInterfaceDeclInfo
167 static bool classof(const DeclInfo *D) { function in struct:clang::cxindex::ObjCProtocolDeclInfo
170 static bool classof(const ObjCProtocolDeclInfo *D) { return true; } function in struct:clang::cxindex::ObjCProtocolDeclInfo
183 static bool classof(const DeclInfo *D) { function in struct:clang::cxindex::ObjCCategoryDeclInfo
186 static bool classof(const ObjCCategoryDeclInfo *D) { return true; } function in struct:clang::cxindex::ObjCCategoryDeclInfo
197 static bool classof(const DeclInfo *D) function in struct:clang::cxindex::ObjCPropertyDeclInfo
200 static bool classof(const ObjCPropertyDeclInfo *D) { return true; } function in struct:clang::cxindex::ObjCPropertyDeclInfo
209 static bool classof(const DeclInfo *D) { function in struct:clang::cxindex::CXXClassDeclInfo
212 static bool classof(const CXXClassDeclInfo *D) { return true; } function in struct:clang::cxindex::CXXClassDeclInfo
225 static bool classof(const AttrInfo *) { return true; } function in struct:clang::cxindex::AttrInfo
240 static bool classof(const AttrInfo *A) { function in struct:clang::cxindex::IBOutletCollectionInfo
243 static bool classof(const IBOutletCollectionInfo *D) { return true; } function in struct:clang::cxindex::IBOutletCollectionInfo
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 703 bool DeclContext::classof(const Decl *D) { function in class:DeclContext
    [all...]
  /external/llvm/include/llvm/MC/
MCExpr.h 103 static bool classof(const MCExpr *) { return true; } function in class:llvm::MCExpr
132 static bool classof(const MCExpr *E) { function in class:llvm::MCConstantExpr
135 static bool classof(const MCConstantExpr *) { return true; } function in class:llvm::MCConstantExpr
248 static bool classof(const MCExpr *E) { function in class:llvm::MCSymbolRefExpr
251 static bool classof(const MCSymbolRefExpr *) { return true; } function in class:llvm::MCSymbolRefExpr
302 static bool classof(const MCExpr *E) { function in class:llvm::MCUnaryExpr
305 static bool classof(const MCUnaryExpr *) { return true; } function in class:llvm::MCUnaryExpr
437 static bool classof(const MCExpr *E) { function in class:llvm::MCBinaryExpr
440 static bool classof(const MCBinaryExpr *) { return true; } function in class:llvm::MCBinaryExpr
461 static bool classof(const MCExpr *E) function in class:llvm::MCTargetExpr
464 static bool classof(const MCTargetExpr *) { return true; } function in class:llvm::MCTargetExpr
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 387 /// classof - Methods for support type inquiry through isa, cast, and
390 static inline bool classof(const MachineCodeEmitter*) { return true; } function in class:__anon10308::JITEmitter
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 102 static inline bool classof(const Matcher *) { return true; } function in class:llvm::Matcher
221 static inline bool classof(const Matcher *N) { function in class:llvm::ScopeMatcher
247 static inline bool classof(const Matcher *N) { function in class:llvm::RecordMatcher
281 static inline bool classof(const Matcher *N) { function in class:llvm::RecordChildMatcher
300 static inline bool classof(const Matcher *N) { function in class:llvm::RecordMemRefMatcher
319 static inline bool classof(const Matcher *N) { function in class:llvm::CaptureGlueInputMatcher
340 static inline bool classof(const Matcher *N) { function in class:llvm::MoveChildMatcher
360 static inline bool classof(const Matcher *N) { function in class:llvm::MoveParentMatcher
383 static inline bool classof(const Matcher *N) { function in class:llvm::CheckSameMatcher
408 static inline bool classof(const Matcher *N) function in class:llvm::CheckPatternPredicateMatcher
431 static inline bool classof(const Matcher *N) { function in class:llvm::CheckPredicateMatcher
457 static inline bool classof(const Matcher *N) { function in class:llvm::CheckOpcodeMatcher
481 static inline bool classof(const Matcher *N) { function in class:llvm::SwitchOpcodeMatcher
509 static inline bool classof(const Matcher *N) { function in class:llvm::CheckTypeMatcher
535 static inline bool classof(const Matcher *N) { function in class:llvm::SwitchTypeMatcher
564 static inline bool classof(const Matcher *N) { function in class:llvm::CheckChildTypeMatcher
591 static inline bool classof(const Matcher *N) { function in class:llvm::CheckIntegerMatcher
616 static inline bool classof(const Matcher *N) { function in class:llvm::CheckCondCodeMatcher
640 static inline bool classof(const Matcher *N) { function in class:llvm::CheckValueTypeMatcher
684 static inline bool classof(const Matcher *N) { function in class:llvm::CheckComplexPatMatcher
712 static inline bool classof(const Matcher *N) { function in class:llvm::CheckAndImmMatcher
736 static inline bool classof(const Matcher *N) { function in class:llvm::CheckOrImmMatcher
757 static inline bool classof(const Matcher *N) { function in class:llvm::CheckFoldableChainNodeMatcher
780 static inline bool classof(const Matcher *N) { function in class:llvm::EmitIntegerMatcher
805 static inline bool classof(const Matcher *N) { function in class:llvm::EmitStringIntegerMatcher
831 static inline bool classof(const Matcher *N) { function in class:llvm::EmitRegisterMatcher
857 static inline bool classof(const Matcher *N) { function in class:llvm::EmitConvertToTargetMatcher
911 static inline bool classof(const Matcher *N) { function in class:llvm::EmitCopyToRegMatcher
940 static inline bool classof(const Matcher *N) { function in class:llvm::EmitNodeXFormMatcher
1031 static inline bool classof(const Matcher *N) { function in class:llvm::EmitNodeMatcher
1055 static inline bool classof(const Matcher *N) { function in class:llvm::MorphNodeToMatcher
1104 static inline bool classof(const Matcher *N) { function in class:llvm::CompleteMatchMatcher
    [all...]

Completed in 587 milliseconds

1 23 4