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

1 2 3 4 5 6 7

  /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
179 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::MemIntrinsic
188 static inline bool classof(const Value *V) { function in class:llvm::MemIntrinsic
210 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::MemSetInst
213 static inline bool classof(const Value *V) { function in class:llvm::MemSetInst
244 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::MemTransferInst
248 static inline bool classof(const Value *V) { function in class:llvm::MemTransferInst
259 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::MemCpyInst
262 static inline bool classof(const Value *V) { function in class:llvm::MemCpyInst
272 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::MemMoveInst
275 static inline bool classof(const Value *V) { function in class:llvm::MemMoveInst
284 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::VAStartInst
287 static inline bool classof(const Value *V) { function in class:llvm::VAStartInst
298 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::VAEndInst
301 static inline bool classof(const Value *V) { function in class:llvm::VAEndInst
312 static inline bool classof(const IntrinsicInst *I) { function in class:llvm::VACopyInst
315 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
306 static inline bool classof(const Instruction *I) { function in class:llvm::FPMathOperator
309 static inline bool classof(const Value *V) { function in class:llvm::FPMathOperator
320 static inline bool classof(const Instruction *I) { function in class:llvm::ConcreteOperator
323 static inline bool classof(const ConstantExpr *CE) { function in class:llvm::ConcreteOperator
326 static inline bool classof(const Value *V) { function in class:llvm::ConcreteOperator
    [all...]
Instructions.h 130 static inline bool classof(const Instruction *I) { function in class:llvm::AllocaInst
133 static inline bool classof(const Value *V) { function in class:llvm::AllocaInst
134 return isa<Instruction>(V) && classof(cast<Instruction>(V));
251 static inline bool classof(const Instruction *I) { function in class:llvm::LoadInst
254 static inline bool classof(const Value *V) { function in class:llvm::LoadInst
255 return isa<Instruction>(V) && classof(cast<Instruction>(V));
373 static inline bool classof(const Instruction *I) { function in class:llvm::StoreInst
376 static inline bool classof(const Value *V) { function in class:llvm::StoreInst
377 return isa<Instruction>(V) && classof(cast<Instruction>(V));
444 static inline bool classof(const Instruction *I) function in class:llvm::FenceInst
447 static inline bool classof(const Value *V) { function in class:llvm::FenceInst
593 static inline bool classof(const Instruction *I) { function in class:llvm::AtomicCmpXchgInst
596 static inline bool classof(const Value *V) { function in class:llvm::AtomicCmpXchgInst
737 static inline bool classof(const Instruction *I) { function in class:llvm::AtomicRMWInst
740 static inline bool classof(const Value *V) { function in class:llvm::AtomicRMWInst
929 static inline bool classof(const Instruction *I) { function in class:llvm::GetElementPtrInst
932 static inline bool classof(const Value *V) { function in class:llvm::GetElementPtrInst
1104 static inline bool classof(const Instruction *I) { function in class:llvm::ICmpInst
1107 static inline bool classof(const Value *V) { function in class:llvm::ICmpInst
1213 static inline bool classof(const Instruction *I) { function in class:llvm::FCmpInst
1216 static inline bool classof(const Value *V) { function in class:llvm::FCmpInst
1469 static inline bool classof(const Instruction *I) { function in class:llvm::CallInst
1472 static inline bool classof(const Value *V) { function in class:llvm::CallInst
1577 static inline bool classof(const Instruction *I) { function in class:llvm::SelectInst
1580 static inline bool classof(const Value *V) { function in class:llvm::SelectInst
1619 static inline bool classof(const Instruction *I) { function in class:llvm::VAArgInst
1622 static inline bool classof(const Value *V) { function in class:llvm::VAArgInst
1672 static inline bool classof(const Instruction *I) { function in class:llvm::ExtractElementInst
1675 static inline bool classof(const Value *V) { function in class:llvm::ExtractElementInst
1730 static inline bool classof(const Instruction *I) { function in class:llvm::InsertElementInst
1733 static inline bool classof(const Value *V) { function in class:llvm::InsertElementInst
1810 static inline bool classof(const Instruction *I) { function in class:llvm::ShuffleVectorInst
1813 static inline bool classof(const Value *V) { function in class:llvm::ShuffleVectorInst
1905 static inline bool classof(const Instruction *I) { function in class:llvm::ExtractValueInst
1908 static inline bool classof(const Value *V) { function in class:llvm::ExtractValueInst
2026 static inline bool classof(const Instruction *I) { function in class:llvm::InsertValueInst
2029 static inline bool classof(const Value *V) { function in class:llvm::InsertValueInst
2242 static inline bool classof(const Instruction *I) { function in class:llvm::PHINode
2245 static inline bool classof(const Value *V) { function in class:llvm::PHINode
2351 static inline bool classof(const Instruction *I) { function in class:llvm::LandingPadInst
2354 static inline bool classof(const Value *V) { function in class:llvm::LandingPadInst
2419 static inline bool classof(const Instruction *I) { function in class:llvm::ReturnInst
2422 static inline bool classof(const Value *V) { function in class:llvm::ReturnInst
2522 static inline bool classof(const Value *V) { function in class:llvm::BranchInst
2928 static inline bool classof(const Value *V) { function in class:llvm::SwitchInst
3244 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::ResumeInst
3247 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::ResumeInst
3288 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::UnreachableInst
3291 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::UnreachableInst
3328 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::TruncInst
3331 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::TruncInst
3364 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::ZExtInst
3367 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::ZExtInst
3400 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::SExtInst
3403 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::SExtInst
3436 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::FPTruncInst
3439 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::FPTruncInst
3472 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::FPExtInst
3475 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::FPExtInst
3508 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::UIToFPInst
3511 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::UIToFPInst
3544 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::SIToFPInst
3547 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::SIToFPInst
3580 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::FPToUIInst
3583 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::FPToUIInst
3616 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::FPToSIInst
3619 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::FPToSIInst
3656 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::IntToPtrInst
3659 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::IntToPtrInst
3704 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::PtrToIntInst
3707 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::PtrToIntInst
3740 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::BitCastInst
3743 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::BitCastInst
3777 static inline bool classof(const Instruction *I) { function in class:llvm::InvokeInst::AddrSpaceCastInst
3780 static inline bool classof(const Value *V) { function in class:llvm::InvokeInst::AddrSpaceCastInst
    [all...]
  /external/llvm/docs/
HowToSetUpLLVMStyleRTTI.rst 152 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/clang/include/clang/Driver/
Action.h 110 static bool classof(const Action *A) { function in class:clang::driver::InputAction
126 static bool classof(const Action *A) { function in class:clang::driver::BindArchAction
138 static bool classof(const Action *A) { function in class:clang::driver::JobAction
149 static bool classof(const Action *A) { function in class:clang::driver::PreprocessJobAction
159 static bool classof(const Action *A) { function in class:clang::driver::PrecompileJobAction
169 static bool classof(const Action *A) { function in class:clang::driver::AnalyzeJobAction
179 static bool classof(const Action *A) { function in class:clang::driver::MigrateJobAction
189 static bool classof(const Action *A) { function in class:clang::driver::CompileJobAction
199 static bool classof(const Action *A) { function in class:clang::driver::AssembleJobAction
209 static bool classof(const Action *A) function in class:clang::driver::LinkJobAction
219 static bool classof(const Action *A) { function in class:clang::driver::LipoJobAction
229 static bool classof(const Action *A) { function in class:clang::driver::DsymutilJobAction
239 static bool classof(const Action *A) { function in class:clang::driver::VerifyJobAction
249 static bool classof(const Action *A) { function in class:clang::driver::VerifyDebugInfoJobAction
258 static bool classof(const Action *A) { function in class:clang::driver::VerifyPCHJobAction
    [all...]
  /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));
  /frameworks/compile/mclinker/include/mcld/Fragment/
NullFragment.h 30 static bool classof(const Fragment *F) function in class:mcld::NullFragment
33 static bool classof(const NullFragment *) function in class:mcld::NullFragment
TargetFragment.h 31 static bool classof(const Fragment *F) function in class:mcld::TargetFragment
34 static bool classof(const TargetFragment *) function in class:mcld::TargetFragment
FillFragment.h 30 static bool classof(const Fragment *F) function in class:mcld::FillFragment
33 static bool classof(const FillFragment *) { return true; } function in class:mcld::FillFragment
RegionFragment.h 30 static bool classof(const Fragment *F) function in class:mcld::RegionFragment
33 static bool classof(const RegionFragment *) function in class:mcld::RegionFragment
AlignFragment.h 36 static bool classof(const Fragment *F) function in class:mcld::AlignFragment
38 static bool classof(const AlignFragment *) { return true; } function in class:mcld::AlignFragment
  /external/llvm/unittests/Support/
Casting.cpp 37 /* static bool classof(const bar *X) {
38 cerr << "Classof: " << X << "\n";
45 dbgs() << "Classof: " << &Val << "\n";
191 // No classof. We are testing that the upcast is inferred.
200 // Even with no explicit classof() in Base, we should still be able to cast
216 static bool classof(const UseInferredUpcast *) { function in class:__anon31138::inferred_upcasting::UseInferredUpcast
223 // Since the explicit classof() returns false, this will fail if the
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyLogical.h 52 static bool classof(const LExpr *E) { return E->kind() == LExpr::Terminal; } function in class:clang::threadSafety::lexpr::Terminal
73 static bool classof(const LExpr *E) { return E->kind() == LExpr::And; } function in class:clang::threadSafety::lexpr::And
80 static bool classof(const LExpr *E) { return E->kind() == LExpr::Or; } function in class:clang::threadSafety::lexpr::Or
92 static bool classof(const LExpr *E) { return E->kind() == LExpr::Not; } function in class:clang::threadSafety::lexpr::Not
  /frameworks/compile/mclinker/include/mcld/Script/
Operand.h 49 static bool classof(const ExprToken* pToken) function in class:mcld::Operand
80 static bool classof(const Operand* pOperand) function in class:mcld::SymOperand
113 static bool classof(const Operand* pOperand) function in class:mcld::IntOperand
150 static bool classof(const Operand* pOperand) function in class:mcld::SectOperand
186 static bool classof(const Operand* pOperand) function in class:mcld::SectDescOperand
221 static bool classof(const Operand* pOperand) function in class:mcld::FragOperand
EntryCmd.h 32 static bool classof(const ScriptCommand* pCmd) function in class:mcld::EntryCmd
OutputArchCmd.h 32 static bool classof(const ScriptCommand* pCmd) function in class:mcld::OutputArchCmd
OutputCmd.h 33 static bool classof(const ScriptCommand* pCmd) function in class:mcld::OutputCmd
SearchDirCmd.h 34 static bool classof(const ScriptCommand* pCmd) function in class:mcld::SearchDirCmd
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 223 static inline bool classof(const Matcher *N) { function in class:llvm::ScopeMatcher
249 static inline bool classof(const Matcher *N) { function in class:llvm::RecordMatcher
283 static inline bool classof(const Matcher *N) { function in class:llvm::RecordChildMatcher
302 static inline bool classof(const Matcher *N) { function in class:llvm::RecordMemRefMatcher
321 static inline bool classof(const Matcher *N) { function in class:llvm::CaptureGlueInputMatcher
342 static inline bool classof(const Matcher *N) { function in class:llvm::MoveChildMatcher
362 static inline bool classof(const Matcher *N) { function in class:llvm::MoveParentMatcher
385 static inline bool classof(const Matcher *N) { function in class:llvm::CheckSameMatcher
412 static inline bool classof(const Matcher *N) { function in class:llvm::CheckChildSameMatcher
438 static inline bool classof(const Matcher *N) function in class:llvm::CheckPatternPredicateMatcher
461 static inline bool classof(const Matcher *N) { function in class:llvm::CheckPredicateMatcher
487 static inline bool classof(const Matcher *N) { function in class:llvm::CheckOpcodeMatcher
511 static inline bool classof(const Matcher *N) { function in class:llvm::SwitchOpcodeMatcher
539 static inline bool classof(const Matcher *N) { function in class:llvm::CheckTypeMatcher
565 static inline bool classof(const Matcher *N) { function in class:llvm::SwitchTypeMatcher
594 static inline bool classof(const Matcher *N) { function in class:llvm::CheckChildTypeMatcher
621 static inline bool classof(const Matcher *N) { function in class:llvm::CheckIntegerMatcher
648 static inline bool classof(const Matcher *N) { function in class:llvm::CheckChildIntegerMatcher
674 static inline bool classof(const Matcher *N) { function in class:llvm::CheckCondCodeMatcher
698 static inline bool classof(const Matcher *N) { function in class:llvm::CheckValueTypeMatcher
742 static inline bool classof(const Matcher *N) { function in class:llvm::CheckComplexPatMatcher
770 static inline bool classof(const Matcher *N) { function in class:llvm::CheckAndImmMatcher
794 static inline bool classof(const Matcher *N) { function in class:llvm::CheckOrImmMatcher
815 static inline bool classof(const Matcher *N) { function in class:llvm::CheckFoldableChainNodeMatcher
838 static inline bool classof(const Matcher *N) { function in class:llvm::EmitIntegerMatcher
863 static inline bool classof(const Matcher *N) { function in class:llvm::EmitStringIntegerMatcher
889 static inline bool classof(const Matcher *N) { function in class:llvm::EmitRegisterMatcher
915 static inline bool classof(const Matcher *N) { function in class:llvm::EmitConvertToTargetMatcher
969 static inline bool classof(const Matcher *N) { function in class:llvm::EmitCopyToRegMatcher
998 static inline bool classof(const Matcher *N) { function in class:llvm::EmitNodeXFormMatcher
1089 static inline bool classof(const Matcher *N) { function in class:llvm::EmitNodeMatcher
1113 static inline bool classof(const Matcher *N) { function in class:llvm::MorphNodeToMatcher
1162 static inline bool classof(const Matcher *N) { function in class:llvm::CompleteMatchMatcher
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 201 assert(classof(this));
211 static bool classof(const MemRegion *R) { function in class:clang::ento::MemSpaceRegion
223 static bool classof(const MemRegion *R) { function in class:clang::ento::GlobalsSpaceRegion
249 static bool classof(const MemRegion *R) { function in class:clang::ento::StaticGlobalSpaceRegion
269 static bool classof(const MemRegion *R) { function in class:clang::ento::NonStaticGlobalSpaceRegion
288 static bool classof(const MemRegion *R) { function in class:clang::ento::GlobalSystemSpaceRegion
308 static bool classof(const MemRegion *R) { function in class:clang::ento::GlobalImmutableSpaceRegion
326 static bool classof(const MemRegion *R) { function in class:clang::ento::GlobalInternalSpaceRegion
341 static bool classof(const MemRegion *R) { function in class:clang::ento::HeapSpaceRegion
355 static bool classof(const MemRegion *R) function in class:clang::ento::UnknownSpaceRegion
375 static bool classof(const MemRegion *R) { function in class:clang::ento::StackSpaceRegion
391 static bool classof(const MemRegion *R) { function in class:clang::ento::StackLocalsSpaceRegion
406 static bool classof(const MemRegion *R) { function in class:clang::ento::StackArgumentsSpaceRegion
434 static bool classof(const MemRegion* R) { function in class:clang::ento::SubRegion
470 static bool classof(const MemRegion* R) { function in class:clang::ento::AllocaRegion
491 static bool classof(const MemRegion* R) { function in class:clang::ento::TypedRegion
523 static bool classof(const MemRegion* R) { function in class:clang::ento::TypedValueRegion
538 static bool classof(const MemRegion* R) { function in class:clang::ento::CodeTextRegion
578 static bool classof(const MemRegion* R) { function in class:clang::ento::FunctionTextRegion
620 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/clang/include/clang/AST/
StmtObjC.h 63 static bool classof(const Stmt *T) { function in class:clang::ObjCForCollectionStmt
112 static bool classof(const Stmt *T) { function in class:clang::ObjCAtCatchStmt
143 static bool classof(const Stmt *T) { function in class:clang::ObjCAtFinallyStmt
243 static bool classof(const Stmt *T) {
302 static bool classof(const Stmt *T) {
335 static bool classof(const Stmt *T) { function in class:clang::ObjCAtThrowStmt
365 static bool classof(const Stmt *T) { function in class:clang::ObjCAutoreleasePoolStmt
Comment.h 250 static bool classof(const Comment *C) { function in class:clang::comments::InlineContentComment
277 static bool classof(const Comment *C) { function in class:clang::comments::TextComment
335 static bool classof(const Comment *C) { function in class:clang::comments::InlineCommandComment
394 static bool classof(const Comment *C) { function in class:clang::comments::HTMLTagComment
468 static bool classof(const Comment *C) { function in class:clang::comments::HTMLStartTagComment
523 static bool classof(const Comment *C) { function in class:clang::comments::HTMLEndTagComment
543 static bool classof(const Comment *C) { function in class:clang::comments::BlockContentComment
572 static bool classof(const Comment *C) { function in class:clang::comments::ParagraphComment
641 static bool classof(const Comment *C) { function in class:clang::comments::BlockCommandComment
737 static bool classof(const Comment *C) function
828 static bool classof(const Comment *C) { function in class:clang::comments::ParamCommandComment::TParamCommandComment
879 static bool classof(const Comment *C) { function in class:clang::comments::ParamCommandComment::VerbatimBlockLineComment
910 static bool classof(const Comment *C) { function in class:clang::comments::ParamCommandComment::VerbatimBlockComment
966 static bool classof(const Comment *C) { function in class:clang::comments::ParamCommandComment::VerbatimLineComment
1111 static bool classof(const Comment *C) { function in class:clang::comments::ParamCommandComment::FullComment
    [all...]
  /external/clang/tools/libclang/
IndexingContext.h 126 static bool classof(const DeclInfo *D) { function in struct:clang::cxindex::ObjCContainerDeclInfo
151 static bool classof(const DeclInfo *D) { function in struct:clang::cxindex::ObjCInterfaceDeclInfo
165 static bool classof(const DeclInfo *D) { function in struct:clang::cxindex::ObjCProtocolDeclInfo
180 static bool classof(const DeclInfo *D) { function in struct:clang::cxindex::ObjCCategoryDeclInfo
193 static bool classof(const DeclInfo *D) { function in struct:clang::cxindex::ObjCPropertyDeclInfo
204 static bool classof(const DeclInfo *D) { function in struct:clang::cxindex::CXXClassDeclInfo
232 static bool classof(const AttrInfo *A) { function in struct:clang::cxindex::IBOutletCollectionInfo
  /external/chromium_org/v8/test/mjsunit/regress/
regress-put-prototype-transition.js 7 function deepEquals(a, b) { if (a === b) { if (a === 0) return (1 / a) === (1 / b); return true; } if (typeof a != typeof b) return false; if (typeof a == "number") return isNaN(a) && isNaN(b); if (typeof a !== "object" && typeof a !== "function") return false; var objectClass = classOf(a); if (objectClass !== classOf(b)) return false; if (objectClass === "RegExp") { return (a.toString() === b.toString()); } if (objectClass === "Function") return false; if (objectClass === "Array") { var elementCount = 0; if (a.length != b.length) { return false; } for (var i = 0; i < a.length; i++) { if (!deepEquals(a[i], b[i])) return false; } return true; } if (objectClass == "String" || objectClass == "Number" || objectClass == "Boolean" || objectClass == "Date") { if (a.valueOf() !== b.valueOf()) return false; } return deepObjectEquals(a, b); }
  /external/lldb/include/lldb/Breakpoint/
BreakpointResolverAddress.h 60 static inline bool classof(const BreakpointResolverAddress *) { return true; } function in class:lldb_private::BreakpointResolverAddress
61 static inline bool classof(const BreakpointResolver *V) { function in class:lldb_private::BreakpointResolverAddress

Completed in 1677 milliseconds

1 2 3 4 5 6 7