Searched refs:Base (Results 251 - 275 of 519) sorted by relevance

<<11121314151617181920>>

/external/clang/include/clang/AST/
H A DExprObjC.h462 Stmt *Base; member in class:clang::ObjCIvarRefExpr
475 D(d), Base(base), Loc(l), IsArrow(arrow), IsFreeIvar(freeIvar) {}
484 const Expr *getBase() const { return cast<Expr>(Base); }
485 Expr *getBase() { return cast<Expr>(Base); }
486 void setBase(Expr * base) { Base = base; }
506 child_range children() { return child_range(&Base, &Base+1); }
570 SourceLocation IdLoc, Expr *Base)
572 Base->isValueDependent(), Base
568 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, QualType T, ExprValueKind VK, ExprObjectKind OK, SourceLocation IdLoc, Expr *Base) argument
742 setBase(Expr *Base) argument
[all...]
/external/clang/lib/CodeGen/
H A DCGClass.cpp39 const CXXBaseSpecifier *Base = *I; local
40 assert(!Base->isVirtual() && "Should not see virtual bases here!");
46 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
61 assert(PathBegin != PathEnd && "Base path should not be empty!");
83 const CXXRecordDecl *Base,
94 Offset = Layout.getVBaseClassOffset(Base);
96 Offset = Layout.getBaseClassOffset(Base);
105 V = Builder.CreateBitCast(V, ConvertType(Base)->getPointerTo());
141 assert(PathBegin != PathEnd && "Base path should not be empty!");
233 assert(PathBegin != PathEnd && "Base pat
81 GetAddressOfDirectBaseInCompleteClass(llvm::Value *This, const CXXRecordDecl *Derived, const CXXRecordDecl *Base, bool BaseIsVirtual) argument
294 const CXXRecordDecl *Base = cast<CXXMethodDecl>(GD.getDecl())->getParent(); local
339 CallBaseDtor(const CXXRecordDecl *Base, bool BaseIsVirtual) argument
1439 const CXXBaseSpecifier &Base = *I; local
1460 const CXXBaseSpecifier &Base = *I; local
1884 InitializeVTablePointer(BaseSubobject Base, const CXXRecordDecl *NearestVBase, CharUnits OffsetFromNearestVBase, llvm::Constant *VTable, const CXXRecordDecl *VTableClass) argument
1947 InitializeVTablePointers(BaseSubobject Base, const CXXRecordDecl *NearestVBase, CharUnits OffsetFromNearestVBase, bool BaseIsNonVirtualPrimaryBase, llvm::Constant *VTable, const CXXRecordDecl *VTableClass, VisitedVirtualBasesSetTy& VBases) argument
2031 getMostDerivedClassDecl(const Expr *Base) argument
2082 canDevirtualizeMemberFunctionCall(const Expr *Base, const CXXMethodDecl *MD) argument
[all...]
/external/eigen/Eigen/src/Core/
H A DPermutationMatrix.h21 * \brief Base class for permutations
56 typedef EigenBase<Derived> Base; typedef in class:Eigen::PermutationBase
75 using Base::derived;
285 typedef PermutationBase<PermutationMatrix> Base; typedef in class:Eigen::PermutationMatrix
343 return Base::operator=(tr.derived());
376 Base::assignProduct(lhs,rhs);
400 typedef PermutationBase<Map> Base; typedef in class:Eigen::Map
420 { return Base::operator=(other.derived()); }
425 { return Base::operator=(tr.derived()); }
485 typedef PermutationBase<PermutationWrapper> Base; typedef in class:Eigen::PermutationWrapper
[all...]
H A DBlock.h102 typedef typename internal::dense_xpr_base<Block>::type Base; typedef in class:Eigen::Block
263 typedef MapBase<Block> Base; typedef in class:Eigen::Block
271 : Base(internal::const_cast_ptr(&xpr.coeffRef(
287 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol))), m_xpr(xpr)
299 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol)), blockRows, blockCols),
337 : Base(data, blockRows, blockCols), m_xpr(xpr)
H A DTranspositions.h161 typedef TranspositionsBase<Transpositions> Base; typedef in class:Eigen::Transpositions
187 return Base::operator=(other);
233 typedef TranspositionsBase<Map> Base; typedef in class:Eigen::Map
249 return Base::operator=(other);
290 typedef TranspositionsBase<TranspositionsWrapper> Base; typedef in class:Eigen::TranspositionsWrapper
302 return Base::operator=(other);
H A DNestByValue.h40 typedef typename internal::dense_xpr_base<NestByValue>::type Base; typedef in class:Eigen::NestByValue
H A DReturnByValue.h56 typedef typename internal::dense_xpr_base<ReturnByValue>::type Base; typedef in class:Eigen::ReturnByValue
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp1451 class Base {}; class
1452 class Derived : Base {};
1463 template <typename Base, typename Derived>
1465 int t[T(__is_base_of(Base, Derived))];
1467 template <typename Base, typename Derived>
1469 int t[F(__is_base_of(Base, Derived))];
1472 template <class T> class DerivedTemp : Base {};
1477 { int arr[T(__is_base_of(Base, Derived))]; }
1478 { int arr[T(__is_base_of(const Base, Derived))]; }
1479 { int arr[F(__is_base_of(Derived, Base))]; }
[all...]
/external/clang/include/clang/Basic/
H A DOnDiskHashTable.h244 const unsigned char* const Base; member in class:clang::OnDiskChainedHashTable
257 Buckets(buckets), Base(base), InfoObj(InfoObj) {
264 const unsigned char* getBase() const { return Base; }
299 const unsigned char* Items = Base + offset;
398 return key_iterator(Base + 4, getNumEntries(), &InfoObj);
462 return data_iterator(Base + 4, getNumEntries(), &InfoObj);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h265 SVal getLValue(const FieldDecl *decl, SVal Base) const;
268 SVal getLValue(const IndirectFieldDecl *decl, SVal Base) const;
271 SVal getLValue(QualType ElementType, SVal Idx, SVal Base) const;
664 inline SVal ProgramState::getLValue(const ObjCIvarDecl *D, SVal Base) const {
665 return getStateManager().StoreMgr->getLValueIvar(D, Base);
668 inline SVal ProgramState::getLValue(const FieldDecl *D, SVal Base) const {
669 return getStateManager().StoreMgr->getLValueField(D, Base);
673 SVal Base) const {
678 Base = SM.getLValueField(cast<FieldDecl>(*I), Base);
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp118 SDValue &Base) {
119 return PPCLowering.SelectAddressRegImm(N, Disp, Base, *CurDAG);
150 bool SelectAddrIdx(SDValue N, SDValue &Base, SDValue &Index) { argument
151 return PPCLowering.SelectAddressRegReg(N, Base, Index, *CurDAG);
156 bool SelectAddrIdxOnly(SDValue N, SDValue &Base, SDValue &Index) { argument
157 return PPCLowering.SelectAddressRegRegOnly(N, Base, Index, *CurDAG);
163 bool SelectAddrImmShift(SDValue N, SDValue &Disp, SDValue &Base) { argument
164 return PPCLowering.SelectAddressRegImmShift(N, Disp, Base, *CurDAG);
1084 SDValue Base = LD->getBasePtr(); local
1085 SDValue Ops[] = { Offset, Base, Chai
117 SelectAddrImm(SDValue N, SDValue &Disp, SDValue &Base) argument
1119 SDValue Base = LD->getBasePtr(); local
1465 SDValue Base = N->getOperand(FirstOp + 1); local
[all...]
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp963 // Check initialization of non-static data members. Base classes are
1052 CXXRecordDecl *Base = I->getType()->getAsCXXRecordDecl(); local
1053 if (!Base)
1056 Base = Base->getDefinition();
1057 if (!Base)
1060 if (Base->getCanonicalDecl() == Class)
1063 Queue.push_back(Base);
1129 // Base specifiers must be record types.
1155 assert(BaseDecl && "Base typ
1325 IsDerivedFrom(QualType Derived, QualType Base) argument
1343 IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) argument
1402 CheckDerivedToBaseConversion(QualType Derived, QualType Base, unsigned InaccessibleBaseID, unsigned AmbigiousBaseConvID, SourceLocation Loc, SourceRange Range, DeclarationName Name, CXXCastPath *BasePath) argument
1463 CheckDerivedToBaseConversion(QualType Derived, QualType Base, SourceLocation Loc, SourceRange Range, CXXCastPath *BasePath, bool IgnoreAccess) argument
1891 Expr *Base = E; local
2683 const CXXRecordDecl *Base = BaseSpec->getType()->getAsCXXRecordDecl(); local
4584 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>(); local
4640 shouldDeleteForBase(CXXBaseSpecifier *Base) argument
7178 collect(const CXXRecordDecl *Base, void *OpaqueData) argument
7190 doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) argument
7646 QualType Base = BaseIt->getType(); local
7689 const RecordType *Base = *BaseIt; local
11521 const CXXRecordDecl *Base = local
[all...]
/external/clang/lib/AST/
H A DExprConstant.cpp97 unsigned findMostDerivedSubobject(ASTContext &Ctx, QualType Base, argument
101 Type = Base;
695 APValue::LValueBase Base; member in struct:__anon3625::LValue
700 const APValue::LValueBase getLValueBase() const { return Base; }
709 V = APValue(Base, Offset, APValue::NoLValuePath(), CallIndex);
711 V = APValue(Base, Offset, Designator.Entries,
716 Base = V.getLValueBase();
723 Base = B;
735 if (!Base) {
850 bool castToBase(const CXXRecordDecl *Base) { argument
959 NoteLValueLocation(EvalInfo &Info, APValue::LValueBase Base) argument
976 APValue::LValueBase Base = LVal.getLValueBase(); local
1294 const CXXRecordDecl *Base = getAsBaseClass(D.Entries[I]); local
1305 HandleLValueDirectBase(EvalInfo &Info, const Expr *E, LValue &Obj, const CXXRecordDecl *Derived, const CXXRecordDecl *Base, const ASTRecordLayout *RL = 0) argument
1319 HandleLValueBase(EvalInfo &Info, const Expr *E, LValue &Obj, const CXXRecordDecl *DerivedDecl, const CXXBaseSpecifier *Base) argument
1499 getBaseIndex(const CXXRecordDecl *Derived, const CXXRecordDecl *Base) argument
1634 const CXXRecordDecl *Base = getAsBaseClass(Sub.Entries[I]); local
1731 const Expr *Base = LVal.Base.dyn_cast<const Expr*>(); local
1971 const CXXRecordDecl *Base = MemPtr.Path[N - I - 1]; local
3246 const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl(); local
3308 const CXXRecordDecl *Base = I->getType()->getAsCXXRecordDecl(); local
3387 const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl(); local
4246 LValue Base; local
[all...]
/external/chromium/base/
H A Dbind_helpers.h91 // want to probe for. Then we create a class Base that inherits from both T
96 // Now, if TargetFunc exists somewhere in T, then &Base::TargetFunc has an
106 // static const bool value = sizeof(GoodCheck<Base>(0)) == sizeof(Yes);
110 // by specializing GoodCheck() on Base instead of T.
113 // GoodCheck(Helper<&C::TargetFunc>*), when C = Base, fails to be a valid
114 // substitution if T::TargetFunc exists. Thus GoodCheck<Base>(0) will resolve
136 // MSVC warns when you try to use Base if T has a private destructor, the
138 // instantiate Base is made. We disable the warning for this definition.
142 struct Base : public T, public BaseMixin { struct in class:base::internal::SupportsAddRefAndRelease
157 static const bool value = sizeof(Check<Base>(
[all...]
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-sea-machine.rl42 GB = 12; # Generic Base
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dast.ml5 (* expr - Base type for all expression nodes. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dast.ml5 (* expr - Base type for all expression nodes. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dast.ml5 (* expr - Base type for all expression nodes. *)
/external/v8/src/extensions/
H A Dexternalize-string-extension.cc33 template <typename Char, typename Base>
34 class SimpleStringResource : public Base {
/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMWindowShell.h41 typedef JSC::JSNonFinalObject Base; typedef in class:WebCore::JSDOMWindowShell
69 static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::OverridesMarkChildren | JSC::OverridesGetPropertyNames | Base::StructureFlags;
/external/libvpx/libvpx/examples/includes/geshi/geshi/
H A Dcil.php85 6 => array(//Base
/external/llvm/include/llvm/Analysis/
H A DValueTracking.h85 /// ComputeMultiple - This function computes the integer multiple of Base that
90 bool ComputeMultiple(Value *V, unsigned Base, Value *&Multiple,
/external/llvm/lib/Support/
H A DFoldingSet.cpp94 const unsigned *Base = (const unsigned*) String.data(); local
97 if (!((intptr_t)Base & 3)) {
98 Bits.append(Base, Base + Units);
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSActivation.h43 typedef JSVariableObject Base; typedef in class:JSC::JSActivation
H A DRegExpObject.h31 typedef JSObjectWithGlobalObject Base; typedef in class:JSC::RegExpObject

Completed in 622 milliseconds

<<11121314151617181920>>