HomeSort by relevance Sort by last modified time
    Searched refs:classof (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /external/llvm/include/llvm/IR/
IntrinsicInst.h 48 static inline bool classof(const CallInst *I) { function in class:llvm::IntrinsicInst
53 static inline bool classof(const Value *V) { function in class:llvm::IntrinsicInst
54 return isa<CallInst>(V) && classof(cast<CallInst>(V));
64 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::DbgInfoIntrinsic
72 static inline bool classof(const Value *V) { function in class:llvm::DbgInfoIntrinsic
73 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
87 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::DbgDeclareInst
90 static inline bool classof(const Value *V) { function in class:llvm::DbgDeclareInst
91 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
108 static inline bool classof(const IntrinsicInst *I) function in class:llvm::DbgValueInst
111 static inline bool classof(const Value *V) { function in class:llvm::DbgValueInst
174 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::MemIntrinsic
183 static inline bool classof(const Value *V) { function in class:llvm::MemIntrinsic
203 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::MemSetInst
206 static inline bool classof(const Value *V) { function in class:llvm::MemSetInst
235 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::MemTransferInst
239 static inline bool classof(const Value *V) { function in class:llvm::MemTransferInst
250 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::MemCpyInst
253 static inline bool classof(const Value *V) { function in class:llvm::MemCpyInst
263 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::MemMoveInst
266 static inline bool classof(const Value *V) { function in class:llvm::MemMoveInst
275 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::VAStartInst
278 static inline bool classof(const Value *V) { function in class:llvm::VAStartInst
289 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::VAEndInst
292 static inline bool classof(const Value *V) { function in class:llvm::VAEndInst
303 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::VACopyInst
306 static inline bool classof(const Value *V) { function in class:llvm::VACopyInst
    [all...]
Operator.h 68 static inline bool classof(const Instruction *) { return true; } function in class:llvm::Operator
69 static inline bool classof(const ConstantExpr *) { return true; } function in class:llvm::Operator
70 static inline bool classof(const Value *V) { function in class:llvm::Operator
111 static inline bool classof(const Instruction *I) { function in class:llvm::OverflowingBinaryOperator
117 static inline bool classof(const ConstantExpr *CE) { function in class:llvm::OverflowingBinaryOperator
123 static inline bool classof(const Value *V) { function in class:llvm::OverflowingBinaryOperator
124 return (isa<Instruction>(V) && classof(cast<Instruction>(V))) ||
125 (isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V)));
157 static inline bool classof(const ConstantExpr *CE) { function in class:llvm::PossiblyExactOperator
160 static inline bool classof(const Instruction *I) function in class:llvm::PossiblyExactOperator
163 static inline bool classof(const Value *V) { function in class:llvm::PossiblyExactOperator
302 static inline bool classof(const Instruction *I) { function in class:llvm::FPMathOperator
305 static inline bool classof(const Value *V) { function in class:llvm::FPMathOperator
316 static inline bool classof(const Instruction *I) { function in class:llvm::ConcreteOperator
319 static inline bool classof(const ConstantExpr *CE) { function in class:llvm::ConcreteOperator
322 static inline bool classof(const Value *V) { function in class:llvm::ConcreteOperator
    [all...]
Instructions.h 116 static inline bool classof(const Instruction *I) { function in class:llvm::AllocaInst
119 static inline bool classof(const Value *V) { function in class:llvm::AllocaInst
120 return isa<Instruction>(V) && classof(cast<Instruction>(V));
236 static inline bool classof(const Instruction *I) { function in class:llvm::LoadInst
239 static inline bool classof(const Value *V) { function in class:llvm::LoadInst
240 return isa<Instruction>(V) && classof(cast<Instruction>(V));
358 static inline bool classof(const Instruction *I) { function in class:llvm::StoreInst
361 static inline bool classof(const Value *V) { function in class:llvm::StoreInst
362 return isa<Instruction>(V) && classof(cast<Instruction>(V));
429 static inline bool classof(const Instruction *I) function in class:llvm::FenceInst
432 static inline bool classof(const Value *V) { function in class:llvm::FenceInst
529 static inline bool classof(const Instruction *I) { function in class:llvm::AtomicCmpXchgInst
532 static inline bool classof(const Value *V) { function in class:llvm::AtomicCmpXchgInst
673 static inline bool classof(const Instruction *I) { function in class:llvm::AtomicRMWInst
676 static inline bool classof(const Value *V) { function in class:llvm::AtomicRMWInst
865 static inline bool classof(const Instruction *I) { function in class:llvm::GetElementPtrInst
868 static inline bool classof(const Value *V) { function in class:llvm::GetElementPtrInst
1046 static inline bool classof(const Instruction *I) { function in class:llvm::ICmpInst
1049 static inline bool classof(const Value *V) { function in class:llvm::ICmpInst
1155 static inline bool classof(const Instruction *I) { function in class:llvm::FCmpInst
1158 static inline bool classof(const Value *V) { function in class:llvm::FCmpInst
1374 static inline bool classof(const Instruction *I) { function in class:llvm::CallInst
1377 static inline bool classof(const Value *V) { function in class:llvm::CallInst
1479 static inline bool classof(const Instruction *I) { function in class:llvm::SelectInst
1482 static inline bool classof(const Value *V) { function in class:llvm::SelectInst
1521 static inline bool classof(const Instruction *I) { function in class:llvm::VAArgInst
1524 static inline bool classof(const Value *V) { function in class:llvm::VAArgInst
1574 static inline bool classof(const Instruction *I) { function in class:llvm::ExtractElementInst
1577 static inline bool classof(const Value *V) { function in class:llvm::ExtractElementInst
1632 static inline bool classof(const Instruction *I) { function in class:llvm::InsertElementInst
1635 static inline bool classof(const Value *V) { function in class:llvm::InsertElementInst
1712 static inline bool classof(const Instruction *I) { function in class:llvm::ShuffleVectorInst
1715 static inline bool classof(const Value *V) { function in class:llvm::ShuffleVectorInst
1807 static inline bool classof(const Instruction *I) { function in class:llvm::ExtractValueInst
1810 static inline bool classof(const Value *V) { function in class:llvm::ExtractValueInst
1928 static inline bool classof(const Instruction *I) { function in class:llvm::InsertValueInst
1931 static inline bool classof(const Value *V) { function in class:llvm::InsertValueInst
2144 static inline bool classof(const Instruction *I) { function in class:llvm::PHINode
2147 static inline bool classof(const Value *V) { function in class:llvm::PHINode
2251 static inline bool classof(const Instruction *I) { function in class:llvm::LandingPadInst
2254 static inline bool classof(const Value *V) { function in class:llvm::LandingPadInst
2319 static inline bool classof(const Instruction *I) { function in class:llvm::ReturnInst
2322 static inline bool classof(const Value *V) { function in class:llvm::ReturnInst
2421 static inline bool classof(const Value *V) { function in class:llvm::BranchInst
2828 static inline bool classof(const Instruction *I) { function in class:llvm::SwitchInst
2831 static inline bool classof(const Value *V) { function in class:llvm::SwitchInst
2926 static inline bool classof(const Instruction *I) { function in class:llvm::IndirectBrInst
2929 static inline bool classof(const Value *V) { function in class:llvm::IndirectBrInst
3210 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::ResumeInst
3213 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::ResumeInst
3254 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::UnreachableInst
3257 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::UnreachableInst
3294 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::TruncInst
3297 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::TruncInst
3330 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::ZExtInst
3333 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::ZExtInst
3366 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::SExtInst
3369 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::SExtInst
3402 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::FPTruncInst
3405 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::FPTruncInst
3438 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::FPExtInst
3441 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::FPExtInst
3474 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::UIToFPInst
3477 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::UIToFPInst
3510 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::SIToFPInst
3513 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::SIToFPInst
3546 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::FPToUIInst
3549 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::FPToUIInst
3582 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::FPToSIInst
3585 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::FPToSIInst
3622 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::IntToPtrInst
3625 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::IntToPtrInst
3670 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::PtrToIntInst
3673 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::PtrToIntInst
3706 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::BitCastInst
3709 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::BitCastInst
    [all...]
Argument.h 89 static inline bool classof(const Value *V) { function in class:llvm::Argument
DerivedTypes.h 88 static inline bool classof(const Type *T) { function in class:llvm::IntegerType
136 static inline bool classof(const Type *T) { function in class:llvm::FunctionType
158 static inline bool classof(const Type *T) { function in class:llvm::CompositeType
293 static inline bool classof(const Type *T) {
322 static inline bool classof(const Type *T) { function in class:llvm::SequentialType
351 static inline bool classof(const Type *T) { function in class:llvm::ArrayType
417 static inline bool classof(const Type *T) { function in class:llvm::VectorType
448 static inline bool classof(const Type *T) { function in class:llvm::PointerType
GlobalAlias.h 79 static inline bool classof(const Value *V) { function in class:llvm::GlobalAlias
  /frameworks/compile/mclinker/include/mcld/Fragment/
NullFragment.h 33 static bool classof(const Fragment *F) function in class:mcld::NullFragment
36 static bool classof(const NullFragment *) function in class:mcld::NullFragment
RegionFragment.h 34 static bool classof(const Fragment *F) function in class:mcld::RegionFragment
37 static bool classof(const RegionFragment *) function in class:mcld::RegionFragment
TargetFragment.h 34 static bool classof(const Fragment *F) function in class:mcld::TargetFragment
37 static bool classof(const TargetFragment *) function in class:mcld::TargetFragment
AlignFragment.h 39 static bool classof(const Fragment *F) function in class:mcld::AlignFragment
41 static bool classof(const AlignFragment *) { return true; } function in class:mcld::AlignFragment
FillFragment.h 33 static bool classof(const Fragment *F) function in class:mcld::FillFragment
36 static bool classof(const FillFragment *) { return true; } function in class:mcld::FillFragment
Fragment.h 61 static bool classof(const Fragment *O) { return true; } function in class:mcld::Fragment
  /external/clang/include/clang/Sema/
SemaConsumer.h 42 static bool classof(const ASTConsumer *Consumer) { function in class:clang::SemaConsumer
LocInfoType.h 55 static bool classof(const Type *T) { function in class:clang::LocInfoType
  /frameworks/compile/mclinker/unittests/
MCRegionFragmentTest.cpp 54 ASSERT_FALSE(llvm::MCDataFragment::classof(frag));
55 ASSERT_TRUE(MCRegionFragment::classof(frag));
69 ASSERT_FALSE(llvm::MCDataFragment::classof(frag));
70 ASSERT_TRUE(MCRegionFragment::classof(frag));
  /external/clang/include/clang/Driver/
Action.h 103 static bool classof(const Action *A) { function in class:clang::driver::InputAction
119 static bool classof(const Action *A) { function in class:clang::driver::BindArchAction
131 static bool classof(const Action *A) { function in class:clang::driver::JobAction
142 static bool classof(const Action *A) { function in class:clang::driver::PreprocessJobAction
152 static bool classof(const Action *A) { function in class:clang::driver::PrecompileJobAction
162 static bool classof(const Action *A) { function in class:clang::driver::AnalyzeJobAction
172 static bool classof(const Action *A) { function in class:clang::driver::MigrateJobAction
182 static bool classof(const Action *A) { function in class:clang::driver::CompileJobAction
192 static bool classof(const Action *A) { function in class:clang::driver::AssembleJobAction
202 static bool classof(const Action *A) function in class:clang::driver::LinkJobAction
212 static bool classof(const Action *A) { function in class:clang::driver::LipoJobAction
222 static bool classof(const Action *A) { function in class:clang::driver::DsymutilJobAction
231 static bool classof(const Action *A) { function in class:clang::driver::VerifyJobAction
    [all...]
Job.h 76 static bool classof(const Job *J) { function in class:clang::driver::Command
110 static bool classof(const Job *J) { function in class:clang::driver::JobList
  /external/llvm/include/llvm/CodeGen/
PseudoSourceValue.h 50 /// classof - Methods for support type inquiry through isa, cast, and
53 static inline bool classof(const Value *V) { function in class:llvm::PseudoSourceValue
89 /// classof - Methods for support type inquiry through isa, cast, and
92 static inline bool classof(const Value *V) { function in class:llvm::FixedStackPseudoSourceValue
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsELFStreamer.h 33 static bool classof(const MCStreamer *S) { function in class:llvm::MipsELFStreamer
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 189 assert(classof(this));
199 static bool classof(const MemRegion *R) { function in class:clang::ento::MemSpaceRegion
211 static bool classof(const MemRegion *R) { function in class:clang::ento::GlobalsSpaceRegion
237 static bool classof(const MemRegion *R) { function in class:clang::ento::StaticGlobalSpaceRegion
257 static bool classof(const MemRegion *R) { function in class:clang::ento::NonStaticGlobalSpaceRegion
276 static bool classof(const MemRegion *R) { function in class:clang::ento::GlobalSystemSpaceRegion
296 static bool classof(const MemRegion *R) { function in class:clang::ento::GlobalImmutableSpaceRegion
314 static bool classof(const MemRegion *R) { function in class:clang::ento::GlobalInternalSpaceRegion
329 static bool classof(const MemRegion *R) { function in class:clang::ento::HeapSpaceRegion
343 static bool classof(const MemRegion *R) function in class:clang::ento::UnknownSpaceRegion
363 static bool classof(const MemRegion *R) { function in class:clang::ento::StackSpaceRegion
379 static bool classof(const MemRegion *R) { function in class:clang::ento::StackLocalsSpaceRegion
394 static bool classof(const MemRegion *R) { function in class:clang::ento::StackArgumentsSpaceRegion
422 static bool classof(const MemRegion* R) { function in class:clang::ento::SubRegion
458 static bool classof(const MemRegion* R) { function in class:clang::ento::AllocaRegion
479 static bool classof(const MemRegion* R) { function in class:clang::ento::TypedRegion
511 static bool classof(const MemRegion* R) { function in class:clang::ento::TypedValueRegion
526 static bool classof(const MemRegion* R) { function in class:clang::ento::CodeTextRegion
566 static bool classof(const MemRegion* R) { function in class:clang::ento::FunctionTextRegion
608 static bool classof(const MemRegion* R) { function in class:clang::ento::BlockTextRegion
682 static bool classof(const MemRegion* R) { function in class:clang::ento::BlockDataRegion
720 static bool classof(const MemRegion* R) { function in class:clang::ento::SymbolicRegion
756 static bool classof(const MemRegion* R) { function in class:clang::ento::StringRegion
790 static bool classof(const MemRegion* R) { function in class:clang::ento::ObjCStringRegion
822 static bool classof(const MemRegion* R) { function in class:clang::ento::CompoundLiteralRegion
841 static bool classof(const MemRegion* R) { function in class:clang::ento::DeclRegion
873 static bool classof(const MemRegion* R) { function in class:clang::ento::VarRegion
903 static bool classof(const MemRegion* R) { function in class:clang::ento::CXXThisRegion
932 static bool classof(const MemRegion* R) { function in class:clang::ento::FieldRegion
960 static bool classof(const MemRegion* R) { function in class:clang::ento::ObjCIvarRegion
1025 static bool classof(const MemRegion* R) { function in class:clang::ento::ElementRegion
1053 static bool classof(const MemRegion* R) { function in class:clang::ento::CXXTempObjectRegion
1082 static bool classof(const MemRegion *region) { function in class:clang::ento::CXXBaseObjectRegion
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 219 static inline bool classof(const Matcher *N) { function in class:llvm::ScopeMatcher
245 static inline bool classof(const Matcher *N) { function in class:llvm::RecordMatcher
279 static inline bool classof(const Matcher *N) { function in class:llvm::RecordChildMatcher
298 static inline bool classof(const Matcher *N) { function in class:llvm::RecordMemRefMatcher
317 static inline bool classof(const Matcher *N) { function in class:llvm::CaptureGlueInputMatcher
338 static inline bool classof(const Matcher *N) { function in class:llvm::MoveChildMatcher
358 static inline bool classof(const Matcher *N) { function in class:llvm::MoveParentMatcher
381 static inline bool classof(const Matcher *N) { function in class:llvm::CheckSameMatcher
406 static inline bool classof(const Matcher *N) { function in class:llvm::CheckPatternPredicateMatcher
429 static inline bool classof(const Matcher *N) function in class:llvm::CheckPredicateMatcher
455 static inline bool classof(const Matcher *N) { function in class:llvm::CheckOpcodeMatcher
479 static inline bool classof(const Matcher *N) { function in class:llvm::SwitchOpcodeMatcher
507 static inline bool classof(const Matcher *N) { function in class:llvm::CheckTypeMatcher
533 static inline bool classof(const Matcher *N) { function in class:llvm::SwitchTypeMatcher
562 static inline bool classof(const Matcher *N) { function in class:llvm::CheckChildTypeMatcher
589 static inline bool classof(const Matcher *N) { function in class:llvm::CheckIntegerMatcher
614 static inline bool classof(const Matcher *N) { function in class:llvm::CheckCondCodeMatcher
638 static inline bool classof(const Matcher *N) { function in class:llvm::CheckValueTypeMatcher
682 static inline bool classof(const Matcher *N) { function in class:llvm::CheckComplexPatMatcher
710 static inline bool classof(const Matcher *N) { function in class:llvm::CheckAndImmMatcher
734 static inline bool classof(const Matcher *N) { function in class:llvm::CheckOrImmMatcher
755 static inline bool classof(const Matcher *N) { function in class:llvm::CheckFoldableChainNodeMatcher
778 static inline bool classof(const Matcher *N) { function in class:llvm::EmitIntegerMatcher
803 static inline bool classof(const Matcher *N) { function in class:llvm::EmitStringIntegerMatcher
829 static inline bool classof(const Matcher *N) { function in class:llvm::EmitRegisterMatcher
855 static inline bool classof(const Matcher *N) { function in class:llvm::EmitConvertToTargetMatcher
909 static inline bool classof(const Matcher *N) { function in class:llvm::EmitCopyToRegMatcher
938 static inline bool classof(const Matcher *N) { function in class:llvm::EmitNodeXFormMatcher
1029 static inline bool classof(const Matcher *N) { function in class:llvm::EmitNodeMatcher
1053 static inline bool classof(const Matcher *N) { function in class:llvm::MorphNodeToMatcher
1102 static inline bool classof(const Matcher *N) { function in class:llvm::CompleteMatchMatcher
    [all...]
  /external/llvm/lib/IR/
AttributeImpl.h 49 static inline bool classof(const AttributeEntry *) { return true; } function in class:llvm::AttributeEntry
60 static inline bool classof(const AttributeEntry *AE) { function in class:llvm::EnumAttributeEntry
63 static inline bool classof(const EnumAttributeEntry *) { return true; } function in class:llvm::EnumAttributeEntry
76 static inline bool classof(const AttributeEntry *AE) { function in class:llvm::AlignAttributeEntry
79 static inline bool classof(const AlignAttributeEntry *) { return true; } function in class:llvm::AlignAttributeEntry
92 static inline bool classof(const AttributeEntry *AE) { function in class:llvm::StringAttributeEntry
95 static inline bool classof(const StringAttributeEntry *) { return true; } function in class:llvm::StringAttributeEntry
  /external/clang/tools/libclang/
CXLoadedDiagnostic.h 62 static bool classof(const CXDiagnosticImpl *D) { function in class:clang::CXLoadedDiagnostic
  /external/llvm/include/llvm/MC/
MCSectionCOFF.h 67 static bool classof(const MCSection *S) { function in class:llvm::MCSectionCOFF
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCExpr.h 70 static bool classof(const MCExpr *E) { function in class:llvm::ARMMCExpr

Completed in 509 milliseconds

1 2 3 4 5