/external/llvm/lib/Target/MBlaze/AsmParser/ |
MBlazeAsmParser.cpp | 100 unsigned Base; 158 return Mem.Base; 254 static MBlazeOperand *CreateMem(unsigned Base, const MCExpr *Off, SMLoc S, 257 Op->Mem.Base = Base; 265 static MBlazeOperand *CreateMem(unsigned Base, unsigned Off, SMLoc S, 268 Op->Mem.Base = Base; 358 MBlazeOperand &Base = *(MBlazeOperand*)Operands[2]; 361 SMLoc S = Base.getStartLoc() [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZISelDAGToDAG.cpp | 45 } Base; 58 errs() << "Base.Reg "; 59 if (Base.Reg.getNode() != 0) 60 Base.Reg.getNode()->dump(); 65 errs() << " Base.FrameIndex " << Base.FrameIndex << '\n'; 86 SDValue &Base, SDValue &Disp); 88 SDValue &Base, SDValue &Disp, 124 SDValue &Base, SDValue &Disp); 126 SDValue &Base, SDValue &Disp [all...] |
/external/webkit/Source/JavaScriptCore/wtf/ |
Vector.h | 351 typedef VectorBufferBase<T> Base; 378 using Base::allocateBuffer; 379 using Base::tryAllocateBuffer; 380 using Base::deallocateBuffer; 382 using Base::buffer; 383 using Base::bufferSlot; 384 using Base::capacity; 386 using Base::releaseBuffer; 388 using Base::m_buffer; 389 using Base::m_capacity [all...] |
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
test_expectations_unittest.py | 35 from webkitpy.layout_tests.port import base namespace 81 class Base(unittest.TestCase): 125 class BasicTests(Base): 134 class MiscTests(Base): 253 class ExpectationSyntaxTests(Base): 285 class SemanticTests(Base): 323 class PrecedenceTests(Base): 378 class RebaseliningTest(Base):
|
/frameworks/compile/slang/ |
slang_rs_metadata_spec_encoder.cpp | 93 unsigned encodeTypeBase(const struct RSTypeBase *Base); 94 unsigned encodeTypeBaseAsKey(const struct RSTypeBase *Base); 153 RSMetadataEncoderInternal::encodeTypeBase(const struct RSTypeBase *Base) { 154 mEncodedRSTypeInfo.push_back(Base->bits); 159 const struct RSTypeBase *Base) { 160 TypesMapTy::const_iterator I = mTypes.find(Base->bits); 164 // Add Base into mTypes 166 mTypes.insert(std::make_pair(Base->bits, mCurTypeIndex)); 172 return encodeTypeBase(Base); 186 // Push PointeeType after the base typ [all...] |
/external/chromium/testing/gmock/test/ |
gmock-actions_test.cc | 497 struct Base { 498 bool operator==(const Base&) { return true; } 501 struct Derived : public Base { 506 Base base; local 508 Action<Base*()> ret = Return(&base); 509 EXPECT_EQ(&base, ret.Perform(make_tuple())); 579 Base base; local 603 Base base; local [all...] |
/external/clang/include/clang/Basic/ |
OnDiskHashTable.h | 243 const unsigned char* const Base; 253 const unsigned char* base, 256 Buckets(buckets), Base(base), InfoObj(InfoObj) { 263 const unsigned char* getBase() const { return Base; } 298 const unsigned char* Items = Base + offset; 397 return key_iterator(Base + 4, getNumEntries(), &InfoObj); 463 return item_iterator(Base + 4, getNumEntries(), &InfoObj); 470 const unsigned char* const base, 473 assert(buckets > base); [all...] |
/external/clang/lib/AST/ |
DeclCXX.cpp | 86 // An aggregate is [...] a class with [...] no base classes [...]. 94 // The set of seen virtual base types. 104 // Keep track of inherited vbases for this base class. 105 const CXXBaseSpecifier *Base = Bases[i]; 106 QualType BaseType = Base->getType(); 113 // A class with a non-empty base class is not empty. 121 // class and at most one base class with non-static data members, 122 // or has no base classes with non-static data members, and 123 // If this is the second non-empty base, then neither of these two 140 // -- has no non-standard-layout base classe [all...] |
RecordLayoutBuilder.cpp | 28 /// BaseSubobjectInfo - Represents a single base subobject in a complete class. 38 /// If a base is virtual, it will only have one BaseSubobjectInfo allocated. 40 /// Class - The class for this base info. 43 /// IsVirtual - Whether the BaseInfo represents a virtual base or not. 46 /// Bases - Information about the base subobjects. 49 /// PrimaryVirtualBaseInfo - Holds the base info for the primary virtual base 50 /// of this base info (if one exists). 72 /// base subobject. 75 /// ComputeEmptySubobjectSizes - Compute the size of the largest base o [all...] |
/external/clang/lib/CodeGen/ |
CGRTTI.cpp | 99 // Base class type info flags. 101 /// BCTI_Virtual - Base class is virtual. 104 /// BCTI_Public - Base class is public. 350 // public, non-virtual base at offset zero (i.e. the derived class is dynamic 351 // iff the base is)", according to Itanium C++ ABI, 2.95p6b. 357 // Get the base. 358 CXXRecordDecl::base_class_const_iterator Base = RD->bases_begin(); 360 // Check that the base is not virtual. 361 if (Base->isVirtual()) 364 // Check that the base is public [all...] |
/external/clang/test/SemaCXX/ |
conditional-expr.cpp | 22 struct Base { 27 struct Derived : Base { 30 struct Convertible { operator Base&(); }; 31 struct Priv : private Base {}; // expected-note 4 {{declared private here}} 32 struct Mid : Base {}; 81 Base base; local 84 Base &bar1 = i1 ? base : derived; 85 Base &bar2 = i1 ? derived : base [all...] |
conversion-function.cpp | 52 operator A&() const; // expected-warning{{conversion function converting 'B' to its base class 'A' will never be used}} 79 // Test. Conversion in base class is visible in derived class. 290 struct Base { 294 struct Derived1 : Base { }; 296 struct Derived2 : Base { }; 307 int i = ud; // expected-error{{ambiguous conversion from derived class 'rdar8018274::SuperDerived' to base class 'rdar8018274::Base'}}
|
new-delete.cpp | 151 class Base { 160 class Thai : public Base { 190 delete x8; // expected-error {{member 'operator delete' found in multiple base classes of different types}}
|
overload-call.cpp | 192 // Test overloading based on derived-to-base conversions 222 void derived4(C*); // expected-note{{candidate function not viable: cannot convert from base class pointer 'A *' to derived class pointer 'C *' for 1st argument}} 239 void derived5(C&); // expected-note{{candidate function not viable: cannot bind base class object of type 'A' to derived class reference 'C &' for 1st argument}} 283 // Test overloading with derived-to-base differences in reference 352 struct Base {}; 355 void foo(Base *); // expected-note 2 {{cannot convert argument of incomplete type}} 356 void foo(Base &); // expected-note 2 {{cannot convert argument of incomplete type}}
|
/external/harfbuzz/src/ |
harfbuzz-indic.cpp | 485 Base, 1232 int base = 0; local [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
ScheduleDAGSDNodes.cpp | 10 // This implements the ScheduleDAG class, which is a base class used by 167 /// This function finds loads of the same base and different offsets. If the 180 // the same base pointer and different offsets. 185 SDNode *Base = Node; 192 if (!TII->areLoadsFromSameBasePtr(Base, User, Offset1, Offset2) || 197 if (O2SMap.insert(std::make_pair(Offset1, Base)).second) 202 Base = User;
|
/external/llvm/lib/Target/PowerPC/ |
PPCISelDAGToDAG.cpp | 53 // Make sure we re-emit a set of the global base reg if necessary 91 /// base register. Return the virtual register that holds this value. 105 /// a base register plus a signed 16-bit displacement [r+imm]. 107 SDValue &Base) { 108 return PPCLowering.SelectAddressRegImm(N, Disp, Base, *CurDAG); 122 bool SelectAddrIdx(SDValue N, SDValue &Base, SDValue &Index) { 123 return PPCLowering.SelectAddressRegReg(N, Base, Index, *CurDAG); 128 bool SelectAddrIdxOnly(SDValue N, SDValue &Base, SDValue &Index) { 129 return PPCLowering.SelectAddressRegRegOnly(N, Base, Index, *CurDAG); 133 /// a base register plus a signed 14-bit displacement [r+imm*4]. Suitabl [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombinePHI.cpp | 190 // If all of the base pointers of the PHI'd GEPs are from allocas, don't 230 Value *Base = FixedOperands[0]; 232 GetElementPtrInst::Create(Base, makeArrayRef(FixedOperands).slice(1)); [all...] |
/external/clang/include/clang/AST/ |
ExprObjC.h | 181 Stmt *Base; 183 bool IsFreeIvar:1; // True if ivar reference has no base (self assumed). 187 SourceLocation l, Expr *base, 190 /*TypeDependent=*/false, base->isValueDependent(), 191 base->isInstantiationDependent(), 192 base->containsUnexpandedParameterPack()), 193 D(d), Loc(l), Base(base), IsArrow(arrow), IsFreeIvar(freeIvar) {} 202 const Expr *getBase() const { return cast<Expr>(Base); } 203 Expr *getBase() { return cast<Expr>(Base); } [all...] |
/external/clang/include/clang/Sema/ |
Initialization.h | 61 /// \brief The entity being initialized is a base member subobject. 112 /// \brief When Kind == EK_Base, the base specifier that provides the 113 /// base class. The lower bit specifies whether the base is an inherited 114 /// virtual base. 115 uintptr_t Base; 220 /// \brief Create the initialization entity for a base class subobject. 222 CXXBaseSpecifier *Base, 287 /// \brief Retrieve the base specifier. 289 assert(getKind() == EK_Base && "Not a base specifier") [all...] |
/external/clang/lib/Sema/ |
SemaAccess.cpp | 163 : AccessedEntity(Context, Base, BaseClass, DerivedClass, Access) { 279 assert(T->isDependentType() && "non-dependent base wasn't a record?"); 587 /// The path down to the current base class. 627 // Recurse into the base classes. 632 // base will not have any access in classes derived from Cur. 646 assert(T->isDependentType() && "non-dependent base wasn't a record?"); 680 /// forbidden base class's members by subclassing it elsewhere. 683 /// accessible in some base class would no longer let you change 684 /// the question solely to whether the base class is accessible, 802 /// C++0x [class.access.base]p5 [all...] |
SemaExprMember.cpp | 27 /// the prospective base classes. 169 // ...if C is not X or a base class of X, the class member access expression 260 /// VK should be set in advance to the value kind of the base 428 // Even in dependent contexts, try to diagnose base expressions with 462 /// declarations which do not belong to the static type of the base 480 // specifier in a member expression are actually members of the base 485 // member of the class or of one of its base classes. 497 // We can't check this yet because the base type is still 605 Sema::BuildMemberReferenceExpr(Expr *Base, QualType BaseType, 613 return ActOnDependentMemberExpr(Base, BaseType [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngine.cpp | 363 // Get the base class declaration. 366 // Create the base object region. [all...] |
/external/llvm/lib/Analysis/ |
ScalarEvolutionExpander.cpp | 488 // the base to i8* and do an ugly getelementptr with that. It's still 491 // Cast the base to i8*. 725 // at this level with that as the base. [all...] |
/external/llvm/lib/ExecutionEngine/JIT/ |
JITEmitter.cpp | [all...] |