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

1 2 3

  /external/chromium_org/ppapi/cpp/
completion_callback.h 237 T, internal::CallbackOutputTraits<T> > BaseType;
256 typename BaseType::OutputStorageType* output)
257 : BaseType(output) {
271 typename BaseType::OutputStorageType* output)
272 : BaseType(func, user_data, output) {
293 typename BaseType::OutputStorageType* output)
294 : BaseType(func, user_data, flags, output) {
309 T, internal::ExtCallbackOutputTraits<T> > BaseType;
325 typename BaseType::OutputStorageType* output)
326 : BaseType(output)
    [all...]
  /external/llvm/lib/Analysis/
Loads.cpp 65 Type *BaseType = 0;
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/
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;
230 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
595 if (AM.BaseType == X86ISelAddressMode::FrameIndexBase &&
734 AM.BaseType == X86ISelAddressMode::RegBase &&
746 AM.BaseType == X86ISelAddressMode::RegBase &&
    [all...]
  /external/chromium_org/ppapi/tests/
test_utils.h 260 : BaseType(instance) {
264 : BaseType(instance, force_async) {
269 : BaseType(instance, callback_type) {
274 OutputT, pp::CompletionCallbackWithOutput<OutputT> > BaseType;
283 : BaseType(instance) {
287 : BaseType(instance, force_async) {
292 : BaseType(instance, callback_type) {
297 OutputT, pp::ext::ExtCompletionCallbackWithOutput<OutputT> > BaseType;
  /external/clang/lib/Sema/
SemaExprMember.cpp 288 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK,
296 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
360 << baseType << SourceRange(CompLoc);
447 Sema::ActOnDependentMemberExpr(Expr *BaseExpr, QualType BaseType,
464 const PointerType *PT = BaseType->getAs<PointerType>();
469 << BaseType << BaseExpr->getSourceRange() << NameInfo.getSourceRange();
474 assert(BaseType->isDependentType() ||
478 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
480 return Owned(CXXDependentScopeMemberExpr::Create(Context, BaseExpr, BaseType,
493 QualType BaseType,
    [all...]
SemaDeclCXX.cpp     [all...]
SemaExprCXX.cpp 808 bool Sema::isThisOutsideMemberFunctionBody(QualType BaseType) {
816 CXXRecordDecl *Class = BaseType->getAsCXXRecordDecl();
    [all...]
  /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/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/lib/AST/
DeclPrinter.cpp 106 QualType BaseType = T;
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->getAs<FunctionType>()
    [all...]
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>();
ExprCXX.cpp     [all...]
  /external/clang/test/SemaCXX/
typo-correction.cpp 40 // is a closer match to "basetype" than is "BaseType" but "base_type" does not
42 struct BaseType { };
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/include/llvm/IR/
MDBuilder.h 187 MDNode *createTBAAStructTagNode(MDNode *BaseType, MDNode *AccessType,
190 Value *Ops[3] = { BaseType, AccessType, ConstantInt::get(Int64, Offset) };
  /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();
565 C.getPointerType(BaseType->getCanonicalTypeInternal()),
574 BaseType->getCanonicalTypeInternal(),
580 RSExportPrimitiveType::GetRSSpecificType(BaseType);
583 if (BaseType->isArrayType()) {
672 const clang::Type *BaseType = RefRSStruct->getType().getTypePtr()
    [all...]
  /external/llvm/lib/IR/
DebugInfo.cpp 608 DIType BaseType = getTypeDerivedFrom();
611 if (!BaseType.isValid())
617 if (BaseType.getTag() == dwarf::DW_TAG_reference_type ||
618 BaseType.getTag() == dwarf::DW_TAG_rvalue_reference_type)
621 if (BaseType.isDerivedType())
622 return DIDerivedType(BaseType).getOriginalTypeSize();
624 return BaseType.getSizeInBits();
    [all...]
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 271 QualType BaseType;
288 BaseType = T;
303 QualType getBaseType() const { return BaseType; }
    [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();
  /external/clang/include/clang/AST/
CXXInheritance.h 199 bool isAmbiguous(CanQualType BaseType);
ExprCXX.h     [all...]
Type.h     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 48 } BaseType;
59 : BaseType(RegBase), Offset(0) {
  /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++));
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInspector.py 215 class BaseType(object):
231 class String(BaseType):
268 class Int(BaseType):
305 class Number(BaseType):
344 class Bool(BaseType):
381 class Object(BaseType):
424 class Any(BaseType):
459 class Array(BaseType):
    [all...]

Completed in 505 milliseconds

1 2 3