HomeSort by relevance Sort by last modified time
    Searched refs:BaseType (Results 1 - 25 of 48) 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 56 } BaseType;
58 // This is really a union, discriminated by BaseType!
75 : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0),
91 if (BaseType != RegBase) return false;
99 BaseType = RegBase;
235 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
578 if (AM.BaseType == X86ISelAddressMode::FrameIndexBase &&
709 AM.BaseType == X86ISelAddressMode::RegBase &&
721 AM.BaseType == X86ISelAddressMode::RegBase &&
    [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 278 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK,
286 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
350 << baseType << SourceRange(CompLoc);
437 Sema::ActOnDependentMemberExpr(Expr *BaseExpr, QualType BaseType,
454 const PointerType *PT = BaseType->getAs<PointerType>();
459 << BaseType << BaseExpr->getSourceRange() << NameInfo.getSourceRange();
464 assert(BaseType->isDependentType() ||
468 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
470 return Owned(CXXDependentScopeMemberExpr::Create(Context, BaseExpr, BaseType,
483 QualType BaseType,
    [all...]
SemaDeclCXX.cpp     [all...]
SemaExprCXX.cpp 773 bool Sema::isThisOutsideMemberFunctionBody(QualType BaseType) {
781 CXXRecordDecl *Class = BaseType->getAsCXXRecordDecl();
    [all...]
TreeTransform.h     [all...]
SemaAccess.cpp     [all...]
SemaCodeComplete.cpp     [all...]
  /external/llvm/lib/Analysis/
Loads.cpp 94 Type *BaseType = 0;
98 BaseType = AI->getAllocatedType();
104 BaseType = GV->getType()->getElementType();
109 if (BaseType && BaseType->isSized()) {
111 BaseAlign = TD->getPrefTypeAlignment(BaseType);
120 if (ByteOffset + LoadSize <= TD->getTypeAllocSize(BaseType) &&
  /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/
DeclPrinter.cpp 102 QualType BaseType = T;
103 while (!BaseType->isSpecifierType()) {
104 if (isa<TypedefType>(BaseType))
106 else if (const PointerType* PTy = BaseType->getAs<PointerType>())
107 BaseType = PTy->getPointeeType();
108 else if (const ArrayType* ATy = dyn_cast<ArrayType>(BaseType))
109 BaseType = ATy->getElementType();
110 else if (const FunctionType* FTy = BaseType->getAs<FunctionType>())
111 BaseType = FTy->getResultType();
112 else if (const VectorType *VTy = BaseType->getAs<VectorType>()
    [all...]
CXXInheritance.cpp 53 /// different base class subobjects of the same type. BaseType must be
55 bool CXXBasePaths::isAmbiguous(CanQualType BaseType) {
56 BaseType = BaseType.getUnqualifiedType();
57 std::pair<bool, unsigned>& Subobjects = ClassSubobjects[BaseType];
181 QualType BaseType = Context.getCanonicalType(BaseSpec->getType())
190 if (BaseType->isDependentType())
195 std::pair<bool, unsigned>& Subobjects = ClassSubobjects[BaseType];
204 DetectedVirtual = BaseType->getAs<RecordType>();
ExprCXX.cpp     [all...]
Type.cpp 456 BaseType(Base)
    [all...]
DeclCXX.cpp 139 QualType BaseType = Base->getType();
141 if (BaseType->isDependentType())
144 = cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl());
178 if (!hasNonLiteralTypeFieldsOrBases() && !BaseType->isLiteralType())
192 if (SeenVBaseTypes.insert(C.getCanonicalType(BaseType)))
    [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/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...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 458 const clang::Type *BaseType = RefRSArr->getType().getTypePtr();
459 slangAssert(BaseType->isArrayType());
461 int NumArrayElements = ArrayDim(BaseType);
463 BaseType = BaseType->getArrayElementTypeNoTypeQual();
567 C.getPointerType(BaseType->getCanonicalTypeInternal()),
576 BaseType->getCanonicalTypeInternal(),
582 RSExportPrimitiveType::GetRSSpecificType(BaseType);
585 if (BaseType->isArrayType()) {
674 const clang::Type *BaseType = RefRSStruct->getType().getTypePtr()
    [all...]
  /external/llvm/lib/VMCore/
DebugInfo.cpp 511 DIType BaseType = getTypeDerivedFrom();
514 if (!BaseType.isValid())
520 if (BaseType.getTag() == dwarf::DW_TAG_reference_type ||
521 BaseType.getTag() == dwarf::DW_TAG_rvalue_reference_type)
524 if (BaseType.isDerivedType())
525 return DIDerivedType(BaseType).getOriginalTypeSize();
527 return BaseType.getSizeInBits();
    [all...]
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 270 QualType BaseType;
292 BaseType = T;
307 QualType getBaseType() const { return BaseType; }
    [all...]
Initialization.h     [all...]
  /external/clang/include/clang/AST/
CXXInheritance.h 199 bool isAmbiguous(CanQualType BaseType);
ExprCXX.h     [all...]
Type.h     [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++));

Completed in 1024 milliseconds

1 2