HomeSort by relevance Sort by last modified time
    Searched defs:BaseType (Results 1 - 25 of 33) sorted by null

1 2

  /external/llvm/lib/Target/X86/
X86InstrBuilder.h 41 } BaseType;
55 : BaseType(RegBase), Scale(1), IndexReg(0), Disp(0), GV(0), GVOpFlags(0) {
63 if (BaseType == X86AddressMode::RegBase)
67 assert(BaseType == X86AddressMode::FrameIndexBase);
126 if (AM.BaseType == X86AddressMode::RegBase)
129 assert(AM.BaseType == X86AddressMode::FrameIndexBase);
X86ISelDAGToDAG.cpp 53 } BaseType;
55 // This is really a union, discriminated by BaseType!
72 : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0),
88 if (BaseType != RegBase) return false;
96 BaseType = RegBase;
231 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
591 if (AM.BaseType == X86ISelAddressMode::FrameIndexBase &&
730 AM.BaseType == X86ISelAddressMode::RegBase &&
742 AM.BaseType == X86ISelAddressMode::RegBase &&
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 273 SVal StoreManager::evalDerivedToBase(SVal Derived, QualType BaseType,
280 const CXXRecordDecl *BaseDecl = BaseType->getPointeeCXXRecordDecl();
282 BaseDecl = BaseType->getAsCXXRecordDecl();
312 QualType BaseType = TSR->getLocationType()->getPointeeType();
313 assert(!BaseType.isNull());
314 const CXXRecordDecl *SRDecl = BaseType->getAsCXXRecordDecl();
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 39 } BaseType;
41 struct { // This is really a union, discriminated by BaseType!
55 : BaseType(RegBase), Disp(0), GV(0), CP(0), BlockAddr(0),
65 if (BaseType == RegBase && Base.Reg.getNode() != 0) {
68 } else if (BaseType == FrameIndexBase) {
173 if (AM.BaseType != MSP430ISelAddressMode::RegBase || AM.Base.Reg.getNode()) {
179 AM.BaseType = MSP430ISelAddressMode::RegBase;
201 if (AM.BaseType == MSP430ISelAddressMode::RegBase
203 AM.BaseType = MSP430ISelAddressMode::FrameIndexBase;
256 if (AM.BaseType == MSP430ISelAddressMode::RegBase)
    [all...]
  /external/clang/lib/AST/
CXXInheritance.cpp 52 /// different base class subobjects of the same type. BaseType must be
54 bool CXXBasePaths::isAmbiguous(CanQualType BaseType) {
55 BaseType = BaseType.getUnqualifiedType();
56 std::pair<bool, unsigned>& Subobjects = ClassSubobjects[BaseType];
194 QualType BaseType = Context.getCanonicalType(BaseSpec->getType())
203 if (BaseType->isDependentType())
208 std::pair<bool, unsigned>& Subobjects = ClassSubobjects[BaseType];
217 DetectedVirtual = BaseType->getAs<RecordType>();
DeclPrinter.cpp 105 QualType BaseType = T;
106 while (!BaseType->isSpecifierType()) {
107 if (isa<TypedefType>(BaseType))
109 else if (const PointerType* PTy = BaseType->getAs<PointerType>())
110 BaseType = PTy->getPointeeType();
111 else if (const BlockPointerType *BPy = BaseType->getAs<BlockPointerType>())
112 BaseType = BPy->getPointeeType();
113 else if (const ArrayType* ATy = dyn_cast<ArrayType>(BaseType))
114 BaseType = ATy->getElementType();
115 else if (const FunctionType* FTy = BaseType->getAs<FunctionType>()
    [all...]
ExprCXX.cpp     [all...]
DeclCXX.cpp 150 QualType BaseType = Base->getType();
152 if (BaseType->isDependentType())
155 = cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl());
189 if (!hasNonLiteralTypeFieldsOrBases() && !BaseType->isLiteralType())
213 if (SeenVBaseTypes.insert(C.getCanonicalType(BaseType)))
    [all...]
VTableBuilder.cpp 242 const RecordType *BaseType = Element.Base->getType()->getAs<RecordType>();
243 const CXXRecordDecl *Base = cast<CXXRecordDecl>(BaseType->getDecl());
    [all...]
  /external/clang/test/SemaCXX/
typo-correction.cpp 36 // is a closer match to "basetype" than is "BaseType" but "base_type" does not
38 struct BaseType { };
39 struct Derived : public BaseType { // expected-note {{base class 'BaseType' specified here}}
41 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/Target/R600/
AMDILISelLowering.cpp 333 VTSDNode *BaseType = cast<VTSDNode>(Op.getOperand(1));
336 EVT BVT = BaseType->getVT();
  /external/opencv/cxcore/include/
cvwimage.h 178 typedef T BaseType;
263 typedef typename WImage<T>::BaseType BaseType;
305 typedef typename WImage<T>::BaseType BaseType;
361 typedef typename WImage<T>::BaseType BaseType;
422 typedef typename WImage<T>::BaseType BaseType;
457 typedef typename WImage<T>::BaseType BaseType
    [all...]
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 271 QualType BaseType;
293 BaseType = T;
308 QualType getBaseType() const { return BaseType; }
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 837 /// \param baseType the inner-most element type of the array
841 static void emitNonZeroVLAInit(CodeGenFunction &CGF, QualType baseType,
845 = CGF.getContext().getTypeInfoInChars(baseType);
    [all...]
CGExprAgg.cpp     [all...]
CGClass.cpp 389 const Type *BaseType = BaseInit->getBaseClass();
391 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl());
411 CharUnits Alignment = CGF.getContext().getTypeAlignInChars(BaseType);
    [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 270 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK,
278 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
342 << baseType << SourceRange(CompLoc);
429 Sema::ActOnDependentMemberExpr(Expr *BaseExpr, QualType BaseType,
446 const PointerType *PT = BaseType->getAs<PointerType>();
451 << BaseType << BaseExpr->getSourceRange() << NameInfo.getSourceRange();
456 assert(BaseType->isDependentType() ||
460 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
462 return Owned(CXXDependentScopeMemberExpr::Create(Context, BaseExpr, BaseType,
475 QualType BaseType,
    [all...]
SemaExprCXX.cpp 754 bool Sema::isThisOutsideMemberFunctionBody(QualType BaseType) {
762 CXXRecordDecl *Class = BaseType->getAsCXXRecordDecl();
    [all...]
SemaLookup.cpp     [all...]
SemaCodeComplete.cpp     [all...]
  /external/javassist/src/main/javassist/bytecode/
SignatureAttribute.java 426 public static class BaseType extends Type {
428 BaseType(char c) { descriptor = c; }
820 t = new BaseType(sig.charAt(c.position++));
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 455 const clang::Type *BaseType = RefRSArr->getType().getTypePtr();
456 slangAssert(BaseType->isArrayType());
458 int NumArrayElements = ArrayDim(BaseType);
460 BaseType = BaseType->getArrayElementTypeNoTypeQual();
566 C.getPointerType(BaseType->getCanonicalTypeInternal()),
575 BaseType->getCanonicalTypeInternal(),
581 RSExportPrimitiveType::GetRSSpecificType(BaseType);
584 if (BaseType->isArrayType()) {
673 const clang::Type *BaseType = RefRSStruct->getType().getTypePtr()
    [all...]
  /external/clang/lib/Parse/
ParseDeclCXX.cpp     [all...]
ParseDecl.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 59 } BaseType;
70 : BaseType(RegBase), Offset(0) {
    [all...]

Completed in 459 milliseconds

1 2