Searched refs:BaseType (Results 1 - 25 of 66) sorted by relevance

123

/external/deqp/framework/referencerenderer/
H A DrrPrimitiveTypes.hpp53 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_TRIANGLES> { typedef pa::Triangle Type; typedef pa::Triangle BaseType; typedef pa::Triangles Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
54 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_TRIANGLE_STRIP> { typedef pa::Triangle Type; typedef pa::Triangle BaseType; typedef pa::TriangleStrip Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
55 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_TRIANGLE_FAN> { typedef pa::Triangle Type; typedef pa::Triangle BaseType; typedef pa::TriangleFan Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
56 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINES> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::Lines Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
57 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINE_STRIP> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::LineStrip Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
58 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINE_LOOP> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::LineLoop Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
59 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_POINTS> { typedef pa::Point Type; typedef pa::Point BaseType; typedef pa::Points Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
60 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINES_ADJACENCY> { typedef pa::LineAdjacency Type; typedef pa::Line BaseType; typedef pa::LinesAdjacency Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
61 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINE_STRIP_ADJACENCY> { typedef pa::LineAdjacency Type; typedef pa::Line BaseType; typedef pa::LineStripAdjacency Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
62 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_TRIANGLES_ADJACENCY> { typedef pa::TriangleAdjacency Type; typedef pa::Triangle BaseType; typede typedef in struct:rr::PrimitiveTypeTraits
63 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_TRIANGLE_STRIP_ADJACENCY> { typedef pa::TriangleAdjacency Type; typedef pa::Triangle BaseType; typedef pa::TriangleStripAdjacency Assembler; }; typedef in struct:rr::PrimitiveTypeTraits
[all...]
/external/llvm/lib/Analysis/
H A DLoads.cpp65 Type *BaseType = nullptr;
69 BaseType = AI->getAllocatedType();
75 BaseType = GV->getType()->getElementType();
80 if (BaseType && BaseType->isSized()) {
82 BaseAlign = TD->getPrefTypeAlignment(BaseType);
91 if (ByteOffset + LoadSize <= TD->getTypeAllocSize(BaseType) &&
/external/llvm/lib/Target/X86/
H A DX86InstrBuilder.h41 } BaseType; member in struct:llvm::X86AddressMode
55 : BaseType(RegBase), Scale(1), IndexReg(0), Disp(0), GV(nullptr),
64 if (BaseType == X86AddressMode::RegBase)
68 assert(BaseType == X86AddressMode::FrameIndexBase);
127 if (AM.BaseType == X86AddressMode::RegBase)
130 assert(AM.BaseType == X86AddressMode::FrameIndexBase);
H A DX86ISelDAGToDAG.cpp54 } BaseType; member in struct:__anon26191::X86ISelAddressMode
56 // This is really a union, discriminated by BaseType!
73 : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0),
84 return BaseType == FrameIndexBase ||
91 if (BaseType != RegBase) return false;
99 BaseType = RegBase;
240 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
604 if (AM.BaseType == X86ISelAddressMode::FrameIndexBase &&
743 AM.BaseType == X86ISelAddressMode::RegBase &&
755 AM.BaseType
[all...]
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dexpanding_textfield.h75 template <typename BaseType, typename Param>
76 void ForEachTextfield(void (BaseType::* f)(Param), Param p) const;
H A Dexpanding_textfield.cc136 template <typename BaseType, typename Param>
138 void (BaseType::* f)(Param), Param p) const {
/external/clang/lib/Sema/
H A DSemaExprMember.cpp442 Sema::ActOnDependentMemberExpr(Expr *BaseExpr, QualType BaseType, argument
459 const PointerType *PT = BaseType->getAs<PointerType>();
464 << BaseType << BaseExpr->getSourceRange() << NameInfo.getSourceRange();
469 assert(BaseType->isDependentType() ||
473 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
476 Context, BaseExpr, BaseType, IsArrow, OpLoc,
486 QualType BaseType,
496 << SS.getRange() << rep << BaseType; local
512 QualType BaseType,
516 cast_or_null<CXXRecordDecl>(computeDeclContext(BaseType));
484 DiagnoseQualifiedMemberReference(Sema &SemaRef, Expr *BaseExpr, QualType BaseType, const CXXScopeSpec &SS, NamedDecl *rep, const DeclarationNameInfo &nameInfo) argument
511 CheckQualifiedMemberReference(Expr *BaseExpr, QualType BaseType, const CXXScopeSpec &SS, const LookupResult &R) argument
679 BuildMemberReferenceExpr(Expr *Base, QualType BaseType, SourceLocation OpLoc, bool IsArrow, CXXScopeSpec &SS, SourceLocation TemplateKWLoc, NamedDecl *FirstQualifierInScope, const DeclarationNameInfo &NameInfo, const TemplateArgumentListInfo *TemplateArgs, ActOnMemberAccessExtraArgs *ExtraArgs) argument
892 QualType BaseType = BaseExprType; local
1686 QualType BaseType = BaseExpr->getType(); local
[all...]
H A DSemaDeclCXX.cpp1360 QualType BaseType = TInfo->getType(); local
1379 if (BaseType->isDependentType()) {
1383 if (CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl()) {
1388 << BaseType << Context.getTypeDeclType(Class);
1392 << BaseType;
1404 if (!BaseType->isRecordType()) {
1411 if (BaseType->isUnionType()) {
1420 BaseType->getAsCXXRecordDecl())) {
1430 if (RequireCompleteType(BaseLoc, BaseType,
1437 RecordDecl *BaseDecl = BaseType
2471 FindBaseInitializer(Sema &SemaRef, CXXRecordDecl *ClassDecl, QualType BaseType, const CXXBaseSpecifier *&DirectBaseSpec, const CXXBaseSpecifier *&VirtualBaseSpec) argument
2626 QualType BaseType; local
2906 BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo, Expr *Init, CXXRecordDecl *ClassDecl, SourceLocation EllipsisLoc) argument
3230 QualType BaseType = Field->getType(); local
3773 GetKeyForBase(ASTContext &Context, QualType BaseType) argument
4758 const RecordType *BaseType = B.getType()->getAs<RecordType>(); local
4776 QualType BaseType = S.Context.getBaseElementType(F->getType()); local
7480 CanQualType BaseType = Base.getType()->getCanonicalTypeUnqualified(); local
9669 QualType BaseType = Base.getType().getUnqualifiedType(); local
9728 QualType BaseType = Context.getBaseElementType(Field->getType()); local
10086 QualType BaseType = Base.getType().getUnqualifiedType(); local
10146 QualType BaseType = Context.getBaseElementType(Field->getType()); local
11329 QualType BaseType = ExDeclType; local
[all...]
H A DSemaExprCXX.cpp872 bool Sema::isThisOutsideMemberFunctionBody(QualType BaseType) { argument
880 CXXRecordDecl *Class = BaseType->getAsCXXRecordDecl();
5175 QualType BaseType = Base->getType(); local
5177 if (BaseType->isDependentType()) {
5182 if (const PointerType *Ptr = BaseType->getAs<PointerType>())
5183 BaseType = Ptr->getPointeeType();
5185 ObjectType = ParsedType::make(BaseType);
5194 QualType StartingType = BaseType;
5201 CTypes.insert(Context.getCanonicalType(BaseType));
5203 while (BaseType
[all...]
/external/lldb/include/lldb/Core/
H A DRangeMap.h37 typedef B BaseType; typedef in struct:lldb_private::Range
40 BaseType base;
49 Range (BaseType b, SizeType s) :
56 Clear (BaseType b = 0)
63 BaseType
70 SetRangeBase (BaseType b)
76 Slide (BaseType slide)
81 BaseType
88 SetRangeEnd (BaseType end)
115 Contains (BaseType
173 typedef B BaseType; typedef in class:lldb_private::RangeArray
453 typedef B BaseType; typedef in class:lldb_private::RangeVector
1364 typedef B BaseType; typedef in struct:lldb_private::AddressData
[all...]
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelDAGToDAG.cpp41 } BaseType; member in struct:__anon26028::MSP430ISelAddressMode
43 struct { // This is really a union, discriminated by BaseType!
57 : BaseType(RegBase), Disp(0), GV(nullptr), CP(nullptr),
67 if (BaseType == RegBase && Base.Reg.getNode() != nullptr) {
70 } else if (BaseType == FrameIndexBase) {
174 if (AM.BaseType != MSP430ISelAddressMode::RegBase || AM.Base.Reg.getNode()) {
180 AM.BaseType = MSP430ISelAddressMode::RegBase;
202 if (AM.BaseType == MSP430ISelAddressMode::RegBase
204 AM.BaseType = MSP430ISelAddressMode::FrameIndexBase;
257 if (AM.BaseType
[all...]
/external/clang/lib/AST/
H A DDeclPrinter.cpp106 QualType BaseType = T; local
107 while (!BaseType->isSpecifierType()) {
108 if (isa<TypedefType>(BaseType))
110 else if (const PointerType* PTy = BaseType->getAs<PointerType>())
111 BaseType = PTy->getPointeeType();
112 else if (const BlockPointerType *BPy = BaseType->getAs<BlockPointerType>())
113 BaseType = BPy->getPointeeType();
114 else if (const ArrayType* ATy = dyn_cast<ArrayType>(BaseType))
115 BaseType = ATy->getElementType();
116 else if (const FunctionType* FTy = BaseType
251 QualType BaseType = GetBaseType(CurDeclType); local
[all...]
H A DCXXInheritance.cpp48 /// different base class subobjects of the same type. BaseType must be
50 bool CXXBasePaths::isAmbiguous(CanQualType BaseType) { argument
51 BaseType = BaseType.getUnqualifiedType();
52 std::pair<bool, unsigned>& Subobjects = ClassSubobjects[BaseType];
186 QualType BaseType = local
195 if (BaseType->isDependentType())
200 std::pair<bool, unsigned>& Subobjects = ClassSubobjects[BaseType];
209 DetectedVirtual = BaseType->getAs<RecordType>();
H A DExprCXX.cpp1185 Expr *Base, QualType BaseType,
1200 Base(Base), BaseType(BaseType), IsArrow(IsArrow),
1222 Expr *Base, QualType BaseType,
1235 Base(Base), BaseType(BaseType), IsArrow(IsArrow),
1243 Expr *Base, QualType BaseType, bool IsArrow,
1251 return new (C) CXXDependentScopeMemberExpr(C, Base, BaseType,
1262 return new (Mem) CXXDependentScopeMemberExpr(C, Base, BaseType,
1319 Expr *Base, QualType BaseType,
1184 CXXDependentScopeMemberExpr(const ASTContext &C, Expr *Base, QualType BaseType, bool IsArrow, SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc, NamedDecl *FirstQualifierFoundInScope, DeclarationNameInfo MemberNameInfo, const TemplateArgumentListInfo *TemplateArgs) argument
1221 CXXDependentScopeMemberExpr(const ASTContext &C, Expr *Base, QualType BaseType, bool IsArrow, SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, NamedDecl *FirstQualifierFoundInScope, DeclarationNameInfo MemberNameInfo) argument
1242 Create(const ASTContext &C, Expr *Base, QualType BaseType, bool IsArrow, SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc, NamedDecl *FirstQualifierFoundInScope, DeclarationNameInfo MemberNameInfo, const TemplateArgumentListInfo *TemplateArgs) argument
1317 UnresolvedMemberExpr(const ASTContext &C, bool HasUnresolvedUsing, Expr *Base, QualType BaseType, bool IsArrow, SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc, const DeclarationNameInfo &MemberNameInfo, const TemplateArgumentListInfo *TemplateArgs, UnresolvedSetIterator Begin, UnresolvedSetIterator End) argument
1355 Create(const ASTContext &C, bool HasUnresolvedUsing, Expr *Base, QualType BaseType, bool IsArrow, SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc, const DeclarationNameInfo &MemberNameInfo, const TemplateArgumentListInfo *TemplateArgs, UnresolvedSetIterator Begin, UnresolvedSetIterator End) argument
1406 QualType BaseType = getBaseType().getNonReferenceType(); local
[all...]
/external/opencv/cxcore/include/
H A Dcvwimage.h178 typedef T BaseType; typedef in class:cv::WImage
263 typedef typename WImage<T>::BaseType BaseType; typedef in class:cv::WImageC
305 typedef typename WImage<T>::BaseType BaseType; typedef in class:cv::WImageBuffer
361 typedef typename WImage<T>::BaseType BaseType; typedef in class:cv::WImageBufferC
422 typedef typename WImage<T>::BaseType BaseType; typedef in class:cv::WImageView
457 typedef typename WImage<T>::BaseType BaseTyp typedef in class:cv::WImageViewC
[all...]
/external/llvm/include/llvm/IR/
H A DMDBuilder.h109 MDNode *createTBAAStructTagNode(MDNode *BaseType, MDNode *AccessType,
/external/clang/test/SemaCXX/
H A Dtypo-correction.cpp40 // is a closer match to "basetype" than is "BaseType" but "base_type" does not
42 struct BaseType { }; struct
43 struct Derived : public BaseType { // expected-note {{base class 'BaseType' specified here}}
45 Derived() : basetype() {} // expected-error{{initializer 'basetype' does not name a non-static data member or base class; did you mean the base class 'BaseType'?}}
/external/llvm/lib/IR/
H A DMDBuilder.cpp134 MDNode *MDBuilder::createTBAAStructTagNode(MDNode *BaseType, MDNode *AccessType, argument
137 Value *Ops[3] = {BaseType, AccessType, ConstantInt::get(Int64, Offset)};
/external/clang/include/clang/Sema/
H A DCodeCompleteConsumer.h271 QualType BaseType; member in class:clang::CodeCompletionContext
288 BaseType = T;
303 QualType getBaseType() const { return BaseType; }
/external/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp273 SVal StoreManager::evalDerivedToBase(SVal Derived, QualType BaseType, argument
280 const CXXRecordDecl *BaseDecl = BaseType->getPointeeCXXRecordDecl();
282 BaseDecl = BaseType->getAsCXXRecordDecl();
/external/clang/include/clang/AST/
H A DCXXInheritance.h199 bool isAmbiguous(CanQualType BaseType);
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp301 Type BaseType, InBaseType; member in class:__anon19562::Intrinsic
317 BaseType(OutTS, 'd'), InBaseType(InTS, 'd'), Emitter(Emitter) {
380 Type getBaseType() const { return BaseType; }
1047 std::string typeCode = getInstTypeCode(BaseType, LocalCK);
1063 if (BaseType != InBaseType) {
1073 if (BaseType.getSizeInBits() == 128 && !BaseType.noManglingQ()) {
1079 if (BaseType.isScalarForMangling()) {
1080 switch (BaseType.getElementSizeInBits()) {
1324 Arg = "(" + BaseType
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DSignatureAttribute.java426 public static class BaseType extends Type { class in class:SignatureAttribute
428 BaseType(char c) { descriptor = c; } method in class:SignatureAttribute.BaseType
820 t = new BaseType(sig.charAt(c.position++));
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DCodeGeneratorInspector.py148 class BaseType(object): class in class:RawTypes
157 class String(BaseType):
180 class Int(BaseType):
209 class Number(BaseType):
238 class Bool(BaseType):
261 class Object(BaseType):
290 class Any(BaseType):
317 class Array(BaseType):
/external/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp23 enum { RegBase, FrameIndexBase } BaseType; member in struct:__anon26050::Address
33 Address() : BaseType(RegBase), Offset(0) { Base.Reg = 0; }

Completed in 508 milliseconds

123