/external/deqp/framework/referencerenderer/ |
D | rrPrimitiveTypes.hpp | 53 …TYPE_TRIANGLES> { typedef pa::Triangle Type; typedef pa::Triangle BaseType; typedef pa::Tria… typedef 54 …E_TRIANGLE_STRIP> { typedef pa::Triangle Type; typedef pa::Triangle BaseType; typedef pa::Tria… typedef 55 …PE_TRIANGLE_FAN> { typedef pa::Triangle Type; typedef pa::Triangle BaseType; typedef pa::Tria… typedef 56 …PRIMITIVETYPE_LINES> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::Line… typedef 57 …MITIVETYPE_LINE_STRIP> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::Line… typedef 58 …MITIVETYPE_LINE_LOOP> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::Line… typedef 59 …IMITIVETYPE_POINTS> { typedef pa::Point Type; typedef pa::Point BaseType; typedef pa::Poin… typedef 60 …LINES_ADJACENCY> { typedef pa::LineAdjacency Type; typedef pa::Line BaseType; typedef pa::Line… typedef 61 …_STRIP_ADJACENCY> { typedef pa::LineAdjacency Type; typedef pa::Line BaseType; typedef pa::Line… typedef 62 …_ADJACENCY> { typedef pa::TriangleAdjacency Type; typedef pa::Triangle BaseType; typedef pa::Tria… typedef [all …]
|
/external/clang/lib/Sema/ |
D | SemaExprMember.cpp | 443 Sema::ActOnDependentMemberExpr(Expr *BaseExpr, QualType BaseType, in ActOnDependentMemberExpr() argument 460 const PointerType *PT = BaseType->getAs<PointerType>(); in ActOnDependentMemberExpr() 465 << BaseType << BaseExpr->getSourceRange() << NameInfo.getSourceRange(); in ActOnDependentMemberExpr() 470 assert(BaseType->isDependentType() || in ActOnDependentMemberExpr() 477 Context, BaseExpr, BaseType, IsArrow, OpLoc, in ActOnDependentMemberExpr() 487 QualType BaseType, in DiagnoseQualifiedMemberReference() argument 497 << SS.getRange() << rep << BaseType; in DiagnoseQualifiedMemberReference() 513 QualType BaseType, in CheckQualifiedMemberReference() argument 517 cast_or_null<CXXRecordDecl>(computeDeclContext(BaseType)); in CheckQualifiedMemberReference() 521 assert(BaseType->isDependentType()); in CheckQualifiedMemberReference() [all …]
|
D | SemaDeclCXX.cpp | 1356 QualType BaseType = TInfo->getType(); in CheckBaseSpecifier() local 1375 if (BaseType->isDependentType()) { in CheckBaseSpecifier() 1379 if (CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl()) { in CheckBaseSpecifier() 1384 << BaseType << Context.getTypeDeclType(Class); in CheckBaseSpecifier() 1388 << BaseType; in CheckBaseSpecifier() 1400 if (!BaseType->isRecordType()) { in CheckBaseSpecifier() 1407 if (BaseType->isUnionType()) { in CheckBaseSpecifier() 1416 BaseType->getAsCXXRecordDecl())) { in CheckBaseSpecifier() 1426 if (RequireCompleteType(BaseLoc, BaseType, in CheckBaseSpecifier() 1433 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl(); in CheckBaseSpecifier() [all …]
|
D | SemaCUDA.cpp | 324 const RecordType *BaseType = B->getType()->getAs<RecordType>(); in inferCUDATargetForImplicitSpecialMember() local 325 if (!BaseType) { in inferCUDATargetForImplicitSpecialMember() 329 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); in inferCUDATargetForImplicitSpecialMember()
|
/external/lldb/include/lldb/Core/ |
D | RangeMap.h | 37 typedef B BaseType; typedef 40 BaseType base; 49 Range (BaseType b, SizeType s) : in Range() 56 Clear (BaseType b = 0) 63 BaseType 70 SetRangeBase (BaseType b) in SetRangeBase() 76 Slide (BaseType slide) in Slide() 81 BaseType 88 SetRangeEnd (BaseType end) in SetRangeEnd() 115 Contains (BaseType r) const in Contains() [all …]
|
/external/llvm/lib/Analysis/ |
D | Loads.cpp | 81 Type *BaseType = nullptr; in isSafeToLoadUnconditionally() local 85 BaseType = AI->getAllocatedType(); in isSafeToLoadUnconditionally() 92 BaseType = GV->getType()->getElementType(); in isSafeToLoadUnconditionally() 104 if (BaseType && BaseType->isSized()) { in isSafeToLoadUnconditionally() 106 BaseAlign = DL.getPrefTypeAlignment(BaseType); in isSafeToLoadUnconditionally() 110 if (ByteOffset + LoadSize <= DL.getTypeAllocSize(BaseType) && in isSafeToLoadUnconditionally()
|
/external/llvm/lib/Target/X86/ |
D | X86InstrBuilder.h | 41 } BaseType; member 55 : BaseType(RegBase), Scale(1), IndexReg(0), Disp(0), GV(nullptr), in X86AddressMode() 64 if (BaseType == X86AddressMode::RegBase) in getFullAddress() 68 assert(BaseType == X86AddressMode::FrameIndexBase); in getFullAddress() 127 if (AM.BaseType == X86AddressMode::RegBase) in addFullAddress() 130 assert(AM.BaseType == X86AddressMode::FrameIndexBase); in addFullAddress()
|
D | X86ISelDAGToDAG.cpp | 55 } BaseType; member 75 : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0), in X86ISelAddressMode() 85 return BaseType == FrameIndexBase || in hasBaseOrIndexReg() 91 if (BaseType != RegBase) return false; in isRIPRelative() 99 BaseType = RegBase; in setBaseReg() 249 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) in getAddressOperands() 703 if (AM.BaseType == X86ISelAddressMode::FrameIndexBase && in foldOffsetIntoAddress() 844 AM.BaseType == X86ISelAddressMode::RegBase && in matchAddress() 856 AM.BaseType == X86ISelAddressMode::RegBase && in matchAddress() 887 if (AM.BaseType == X86ISelAddressMode::RegBase && in matchAdd() [all …]
|
/external/clang/lib/AST/ |
D | DeclPrinter.cpp | 117 QualType BaseType = T; in GetBaseType() local 118 while (!BaseType->isSpecifierType()) { in GetBaseType() 119 if (isa<TypedefType>(BaseType)) in GetBaseType() 121 else if (const PointerType* PTy = BaseType->getAs<PointerType>()) in GetBaseType() 122 BaseType = PTy->getPointeeType(); in GetBaseType() 123 else if (const BlockPointerType *BPy = BaseType->getAs<BlockPointerType>()) in GetBaseType() 124 BaseType = BPy->getPointeeType(); in GetBaseType() 125 else if (const ArrayType* ATy = dyn_cast<ArrayType>(BaseType)) in GetBaseType() 126 BaseType = ATy->getElementType(); in GetBaseType() 127 else if (const FunctionType* FTy = BaseType->getAs<FunctionType>()) in GetBaseType() [all …]
|
D | CXXInheritance.cpp | 50 bool CXXBasePaths::isAmbiguous(CanQualType BaseType) { in isAmbiguous() argument 51 BaseType = BaseType.getUnqualifiedType(); in isAmbiguous() 52 std::pair<bool, unsigned>& Subobjects = ClassSubobjects[BaseType]; in isAmbiguous() 189 QualType BaseType = in lookupInBases() local 198 if (BaseType->isDependentType()) in lookupInBases() 203 std::pair<bool, unsigned>& Subobjects = ClassSubobjects[BaseType]; in lookupInBases() 212 DetectedVirtual = BaseType->getAs<RecordType>(); in lookupInBases()
|
D | ExprCXX.cpp | 1199 Expr *Base, QualType BaseType, in CXXDependentScopeMemberExpr() argument 1214 Base(Base), BaseType(BaseType), IsArrow(IsArrow), in CXXDependentScopeMemberExpr() 1236 Expr *Base, QualType BaseType, in CXXDependentScopeMemberExpr() argument 1249 Base(Base), BaseType(BaseType), IsArrow(IsArrow), in CXXDependentScopeMemberExpr() 1257 Expr *Base, QualType BaseType, bool IsArrow, in Create() argument 1265 return new (C) CXXDependentScopeMemberExpr(C, Base, BaseType, in Create() 1276 return new (Mem) CXXDependentScopeMemberExpr(C, Base, BaseType, in Create() 1333 Expr *Base, QualType BaseType, in UnresolvedMemberExpr() argument 1346 BaseType->isDependentType()), in UnresolvedMemberExpr() 1348 BaseType->isInstantiationDependentType()), in UnresolvedMemberExpr() [all …]
|
/external/llvm/lib/Target/MSP430/ |
D | MSP430ISelDAGToDAG.cpp | 41 } BaseType; member 57 : BaseType(RegBase), Disp(0), GV(nullptr), CP(nullptr), in MSP430ISelAddressMode() 67 if (BaseType == RegBase && Base.Reg.getNode() != nullptr) { in dump() 70 } else if (BaseType == FrameIndexBase) { in dump() 169 if (AM.BaseType != MSP430ISelAddressMode::RegBase || AM.Base.Reg.getNode()) { in MatchAddressBase() 175 AM.BaseType = MSP430ISelAddressMode::RegBase; in MatchAddressBase() 197 if (AM.BaseType == MSP430ISelAddressMode::RegBase in MatchAddress() 199 AM.BaseType = MSP430ISelAddressMode::FrameIndexBase; in MatchAddress() 252 if (AM.BaseType == MSP430ISelAddressMode::RegBase) { in SelectAddr() 257 Base = (AM.BaseType == MSP430ISelAddressMode::FrameIndexBase) in SelectAddr()
|
/external/opencv/cxcore/include/ |
D | cvwimage.h | 178 typedef T BaseType; typedef 263 typedef typename WImage<T>::BaseType BaseType; typedef 305 typedef typename WImage<T>::BaseType BaseType; typedef 361 typedef typename WImage<T>::BaseType BaseType; typedef 422 typedef typename WImage<T>::BaseType BaseType; typedef 457 typedef typename WImage<T>::BaseType BaseType; typedef
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/autoscale/ |
D | policy.py | 66 class BaseType(object): class in MetricCollectionTypes 83 class Metric(BaseType): 86 class Granularity(BaseType):
|
/external/llvm/test/tools/llvm-readobj/ |
D | symbols.test | 11 COFF-NEXT: BaseType: Null (0x0) 20 COFF-NEXT: BaseType: Null (0x0) 29 COFF-NEXT: BaseType: Null (0x0)
|
D | bigobj.test | 80 CHECK-NEXT: BaseType: Null (0x0) 92 CHECK-NEXT: BaseType: Null (0x0) 109 CHECK-NEXT: BaseType: Null (0x0) 126 CHECK-NEXT: BaseType: Null (0x0)
|
D | cxx-cli-aux.test | 13 CHECK-NEXT: BaseType: Null (0x0) 31 CHECK-NEXT: BaseType: Null (0x0)
|
D | coff-file-sections-reading.test | 8 CHECK: BaseType: Null (0x0)
|
/external/llvm/unittests/IR/ |
D | MetadataTest.cpp | 990 DITypeRef BaseType = getBasicType("basic"); in TEST_F() local 994 File, 1, Scope, BaseType, 2, 3, 4, 5, ExtraData); in TEST_F() 1000 EXPECT_EQ(BaseType, N->getBaseType()); in TEST_F() 1007 "something", File, 1, Scope, BaseType, 2, 3, in TEST_F() 1011 "something", File, 1, Scope, BaseType, 2, 3, in TEST_F() 1014 File, 1, Scope, BaseType, 2, 3, 4, 5, in TEST_F() 1017 "something", getFile(), 1, Scope, BaseType, 2, in TEST_F() 1020 "something", File, 2, Scope, BaseType, 2, 3, in TEST_F() 1024 BaseType, 2, 3, 4, 5, ExtraData)); in TEST_F() 1029 "something", File, 1, Scope, BaseType, 3, 3, in TEST_F() [all …]
|
/external/llvm/lib/IR/ |
D | LLVMContextImpl.h | 337 Metadata *BaseType; 345 Metadata *Scope, Metadata *BaseType, uint64_t SizeInBits, 349 BaseType(BaseType), SizeInBits(SizeInBits), AlignInBits(AlignInBits), 354 BaseType(N->getRawBaseType()), SizeInBits(N->getSizeInBits()), 361 Scope == RHS->getRawScope() && BaseType == RHS->getRawBaseType() && 368 return hash_combine(Tag, Name, File, Line, Scope, BaseType, SizeInBits, 379 Metadata *BaseType; 391 Metadata *Scope, Metadata *BaseType, uint64_t SizeInBits, 397 BaseType(BaseType), SizeInBits(SizeInBits), AlignInBits(AlignInBits), 404 BaseType(N->getRawBaseType()), SizeInBits(N->getSizeInBits()), [all …]
|
D | MDBuilder.cpp | 166 MDNode *MDBuilder::createTBAAStructTagNode(MDNode *BaseType, MDNode *AccessType, in createTBAAStructTagNode() argument 171 return MDNode::get(Context, {BaseType, AccessType, createConstant(Off), in createTBAAStructTagNode() 174 return MDNode::get(Context, {BaseType, AccessType, createConstant(Off)}); in createTBAAStructTagNode()
|
D | DebugInfoMetadata.cpp | 260 unsigned Line, Metadata *Scope, Metadata *BaseType, uint64_t SizeInBits, in getImpl() argument 265 BaseType, SizeInBits, AlignInBits, in getImpl() 267 Metadata *Ops[] = {File, Scope, Name, BaseType, ExtraData}; in getImpl() 275 unsigned Line, Metadata *Scope, Metadata *BaseType, uint64_t SizeInBits, in getImpl() argument 282 (Tag, getString(Name), File, Line, Scope, BaseType, in getImpl() 286 Metadata *Ops[] = {File, Scope, Name, BaseType, in getImpl()
|
/external/llvm/test/MC/ARM/ |
D | coff-function-type-info.ll | 32 ; CHECK-OBJECT: BaseType: Null 40 ; CHECK-OBJECT: BaseType: Null
|
/external/clang/test/CoverageMapping/ |
D | classtemplate.cpp | 9 enum BaseType { enum in Test
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | Store.cpp | 262 SVal StoreManager::evalDerivedToBase(SVal Derived, QualType BaseType, in evalDerivedToBase() argument 269 const CXXRecordDecl *BaseDecl = BaseType->getPointeeCXXRecordDecl(); in evalDerivedToBase() 271 BaseDecl = BaseType->getAsCXXRecordDecl(); in evalDerivedToBase()
|