HomeSort by relevance Sort by last modified time
    Searched refs:classof (Results 1 - 25 of 117) 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
1385 static inline bool classof(const Instruction *I) { function in class:llvm::CallInst
1388 static inline bool classof(const Value *V) { function in class:llvm::CallInst
1493 static inline bool classof(const Instruction *I) { function in class:llvm::SelectInst
1496 static inline bool classof(const Value *V) { function in class:llvm::SelectInst
1535 static inline bool classof(const Instruction *I) { function in class:llvm::VAArgInst
1538 static inline bool classof(const Value *V) { function in class:llvm::VAArgInst
1588 static inline bool classof(const Instruction *I) { function in class:llvm::ExtractElementInst
1591 static inline bool classof(const Value *V) { function in class:llvm::ExtractElementInst
1646 static inline bool classof(const Instruction *I) { function in class:llvm::InsertElementInst
1649 static inline bool classof(const Value *V) { function in class:llvm::InsertElementInst
1726 static inline bool classof(const Instruction *I) { function in class:llvm::ShuffleVectorInst
1729 static inline bool classof(const Value *V) { function in class:llvm::ShuffleVectorInst
1821 static inline bool classof(const Instruction *I) { function in class:llvm::ExtractValueInst
1824 static inline bool classof(const Value *V) { function in class:llvm::ExtractValueInst
1942 static inline bool classof(const Instruction *I) { function in class:llvm::InsertValueInst
1945 static inline bool classof(const Value *V) { function in class:llvm::InsertValueInst
2158 static inline bool classof(const Instruction *I) { function in class:llvm::PHINode
2161 static inline bool classof(const Value *V) { function in class:llvm::PHINode
2265 static inline bool classof(const Instruction *I) { function in class:llvm::LandingPadInst
2268 static inline bool classof(const Value *V) { function in class:llvm::LandingPadInst
2333 static inline bool classof(const Instruction *I) { function in class:llvm::ReturnInst
2336 static inline bool classof(const Value *V) { function in class:llvm::ReturnInst
2435 static inline bool classof(const Value *V) { function in class:llvm::BranchInst
2839 static inline bool classof(const Instruction *I) { function in class:llvm::SwitchInst
2842 static inline bool classof(const Value *V) { function in class:llvm::SwitchInst
2937 static inline bool classof(const Instruction *I) { function in class:llvm::IndirectBrInst
2940 static inline bool classof(const Value *V) { function in class:llvm::IndirectBrInst
3236 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::ResumeInst
3239 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::ResumeInst
3280 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::UnreachableInst
3283 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::UnreachableInst
3320 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::TruncInst
3323 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::TruncInst
3356 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::ZExtInst
3359 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::ZExtInst
3392 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::SExtInst
3395 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::SExtInst
3428 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::FPTruncInst
3431 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::FPTruncInst
3464 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::FPExtInst
3467 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::FPExtInst
3500 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::UIToFPInst
3503 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::UIToFPInst
3536 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::SIToFPInst
3539 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::SIToFPInst
3572 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::FPToUIInst
3575 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::FPToUIInst
3608 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::FPToSIInst
3611 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::FPToSIInst
3648 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::IntToPtrInst
3651 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::IntToPtrInst
3696 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::PtrToIntInst
3699 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::PtrToIntInst
3732 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::BitCastInst
3735 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::BitCastInst
    [all...]
Argument.h 98 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
  /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 109 static bool classof(const Action *A) { function in class:clang::driver::InputAction
125 static bool classof(const Action *A) { function in class:clang::driver::BindArchAction
137 static bool classof(const Action *A) { function in class:clang::driver::JobAction
148 static bool classof(const Action *A) { function in class:clang::driver::PreprocessJobAction
158 static bool classof(const Action *A) { function in class:clang::driver::PrecompileJobAction
168 static bool classof(const Action *A) { function in class:clang::driver::AnalyzeJobAction
178 static bool classof(const Action *A) { function in class:clang::driver::MigrateJobAction
188 static bool classof(const Action *A) { function in class:clang::driver::CompileJobAction
198 static bool classof(const Action *A) { function in class:clang::driver::AssembleJobAction
208 static bool classof(const Action *A) function in class:clang::driver::LinkJobAction
218 static bool classof(const Action *A) { function in class:clang::driver::LipoJobAction
228 static bool classof(const Action *A) { function in class:clang::driver::DsymutilJobAction
237 static bool classof(const Action *A) { function in class:clang::driver::VerifyJobAction
    [all...]
Job.h 79 static bool classof(const Job *J) { function in class:clang::driver::Command
113 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 204 assert(classof(this));
214 static bool classof(const MemRegion *R) { function in class:clang::ento::MemSpaceRegion
226 static bool classof(const MemRegion *R) { function in class:clang::ento::GlobalsSpaceRegion
252 static bool classof(const MemRegion *R) { function in class:clang::ento::StaticGlobalSpaceRegion
272 static bool classof(const MemRegion *R) { function in class:clang::ento::NonStaticGlobalSpaceRegion
291 static bool classof(const MemRegion *R) { function in class:clang::ento::GlobalSystemSpaceRegion
311 static bool classof(const MemRegion *R) { function in class:clang::ento::GlobalImmutableSpaceRegion
329 static bool classof(const MemRegion *R) { function in class:clang::ento::GlobalInternalSpaceRegion
344 static bool classof(const MemRegion *R) { function in class:clang::ento::HeapSpaceRegion
358 static bool classof(const MemRegion *R) function in class:clang::ento::UnknownSpaceRegion
378 static bool classof(const MemRegion *R) { function in class:clang::ento::StackSpaceRegion
394 static bool classof(const MemRegion *R) { function in class:clang::ento::StackLocalsSpaceRegion
409 static bool classof(const MemRegion *R) { function in class:clang::ento::StackArgumentsSpaceRegion
437 static bool classof(const MemRegion* R) { function in class:clang::ento::SubRegion
473 static bool classof(const MemRegion* R) { function in class:clang::ento::AllocaRegion
494 static bool classof(const MemRegion* R) { function in class:clang::ento::TypedRegion
526 static bool classof(const MemRegion* R) { function in class:clang::ento::TypedValueRegion
541 static bool classof(const MemRegion* R) { function in class:clang::ento::CodeTextRegion
581 static bool classof(const MemRegion* R) { function in class:clang::ento::FunctionTextRegion
623 static bool classof(const MemRegion* R) { function in class:clang::ento::BlockTextRegion
697 static bool classof(const MemRegion* R) { function in class:clang::ento::BlockDataRegion
735 static bool classof(const MemRegion* R) { function in class:clang::ento::SymbolicRegion
771 static bool classof(const MemRegion* R) { function in class:clang::ento::StringRegion
805 static bool classof(const MemRegion* R) { function in class:clang::ento::ObjCStringRegion
837 static bool classof(const MemRegion* R) { function in class:clang::ento::CompoundLiteralRegion
856 static bool classof(const MemRegion* R) { function in class:clang::ento::DeclRegion
888 static bool classof(const MemRegion* R) { function in class:clang::ento::VarRegion
919 static bool classof(const MemRegion* R) { function in class:clang::ento::CXXThisRegion
948 static bool classof(const MemRegion* R) { function in class:clang::ento::FieldRegion
978 static bool classof(const MemRegion* R) { function in class:clang::ento::ObjCIvarRegion
1043 static bool classof(const MemRegion* R) { function in class:clang::ento::ElementRegion
1071 static bool classof(const MemRegion* R) { function in class:clang::ento::CXXTempObjectRegion
1100 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/clang/include/clang/Lex/
MacroInfo.h 457 static bool classof(const MacroDirective *) { return true; } function in namespace:clang
490 static bool classof(const MacroDirective *MD) { function in class:DefMacroDirective
493 static bool classof(const DefMacroDirective *) { return true; } function in class:DefMacroDirective
504 static bool classof(const MacroDirective *MD) { function in class:UndefMacroDirective
507 static bool classof(const UndefMacroDirective *) { return true; } function in class:UndefMacroDirective
522 static bool classof(const MacroDirective *MD) { function in class:VisibilityMacroDirective
525 static bool classof(const VisibilityMacroDirective *) { return true; } function in class:VisibilityMacroDirective
  /external/clang/include/clang/AST/
Attr.h 117 static bool classof(const Attr *A) { function in class:clang::InheritableAttr
131 static bool classof(const Attr *A) { function in class:clang::InheritableParamAttr
146 static bool classof(const Attr *A) { function in class:clang::MSInheritanceAttr
  /external/clang/tools/libclang/
CXLoadedDiagnostic.h 62 static bool classof(const CXDiagnosticImpl *D) { function in class:clang::CXLoadedDiagnostic
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCExpr.h 70 static bool classof(const MCExpr *E) { function in class:llvm::ARMMCExpr
  /external/llvm/lib/Target/NVPTX/
NVPTXMCExpr.h 77 static bool classof(const MCExpr *E) { function in class:llvm::NVPTXFloatMCExpr

Completed in 338 milliseconds

1 2 3 4 5