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

1 2 3

  /external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/
callback.h 87 template <typename BaseType, typename ReturnType, typename RequestType,
91 typedef ReturnType (BaseType::*Method)(
94 CallbackImpl(BaseType* instance, Method method)
111 BaseType* instance_;
115 template <typename BaseType, typename ReturnType, typename RequestType,
120 typedef ReturnType (BaseType::*Method)(
123 ScopedPtrCallbackImpl(BaseType* instance, Method method)
140 BaseType* instance_;
147 template <typename BaseType, typename ReturnType, typename RequestType,
150 BaseType* instance
    [all...]
  /external/deqp/framework/referencerenderer/
rrPrimitiveTypes.hpp 53 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_TRIANGLES> { typedef pa::Triangle Type; typedef pa::Triangle BaseType; typedef pa::Triangles Assembler; };
54 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_TRIANGLE_STRIP> { typedef pa::Triangle Type; typedef pa::Triangle BaseType; typedef pa::TriangleStrip Assembler; };
55 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_TRIANGLE_FAN> { typedef pa::Triangle Type; typedef pa::Triangle BaseType; typedef pa::TriangleFan Assembler; };
56 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINES> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::Lines Assembler; };
57 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINE_STRIP> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::LineStrip Assembler; };
58 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINE_LOOP> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::LineLoop Assembler; };
59 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_POINTS> { typedef pa::Point Type; typedef pa::Point BaseType; typedef pa::Points Assembler; };
60 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINES_ADJACENCY> { typedef pa::LineAdjacency Type; typedef pa::Line BaseType; typedef pa::LinesAdjacency Assembler; };
61 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINE_STRIP_ADJACENCY> { typedef pa::LineAdjacency Type; typedef pa::Line BaseType; typedef pa::LineStripAdjacency Assembler; };
62 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_TRIANGLES_ADJACENCY> { typedef pa::TriangleAdjacency Type; typedef pa::Triangle BaseType; typedef pa::TrianglesAdjacency Assembler; }
    [all...]
  /external/llvm/lib/Analysis/
Loads.cpp 65 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/
X86InstrBuilder.h 41 } BaseType;
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);
X86ISelDAGToDAG.cpp 54 } BaseType;
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 == X86ISelAddressMode::RegBase &
    [all...]
  /external/chromium_org/chrome/browser/ui/views/autofill/
expanding_textfield.h 75 template <typename BaseType, typename Param>
76 void ForEachTextfield(void (BaseType::* f)(Param), Param p) const;
expanding_textfield.cc 136 template <typename BaseType, typename Param>
138 void (BaseType::* f)(Param), Param p) const {
  /external/lldb/include/lldb/Core/
RangeMap.h 37 typedef B BaseType;
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 r) cons
    [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 289 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK,
297 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
359 << baseType << SourceRange(CompLoc);
442 Sema::ActOnDependentMemberExpr(Expr *BaseExpr, QualType BaseType,
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,
    [all...]
SemaDeclCXX.cpp     [all...]
SemaExprCXX.cpp     [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 41 } BaseType;
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 == MSP430ISelAddressMode::RegBase)
    [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 48 /// different base class subobjects of the same type. BaseType must be
50 bool CXXBasePaths::isAmbiguous(CanQualType BaseType) {
51 BaseType = BaseType.getUnqualifiedType();
52 std::pair<bool, unsigned>& Subobjects = ClassSubobjects[BaseType];
186 QualType BaseType =
195 if (BaseType->isDependentType())
200 std::pair<bool, unsigned>& Subobjects = ClassSubobjects[BaseType];
209 DetectedVirtual = BaseType->getAs<RecordType>();
ExprCXX.cpp     [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/llvm/include/llvm/IR/
MDBuilder.h 109 MDNode *createTBAAStructTagNode(MDNode *BaseType, MDNode *AccessType,
  /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'?}}
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 441 const clang::Type *BaseType = RefRSArr->getType().getTypePtr();
442 slangAssert(BaseType->isArrayType());
444 int NumArrayElements = ArrayDim(BaseType);
446 BaseType = BaseType->getArrayElementTypeNoTypeQual();
551 C.getPointerType(BaseType->getCanonicalTypeInternal()),
560 BaseType->getCanonicalTypeInternal(),
565 DataType DT = RSExportPrimitiveType::GetRSSpecificType(BaseType);
568 if (BaseType->isArrayType()) {
656 const clang::Type *BaseType = RefRSStruct->getType().getTypePtr()
    [all...]
  /external/llvm/lib/IR/
MDBuilder.cpp 134 MDNode *MDBuilder::createTBAAStructTagNode(MDNode *BaseType, MDNode *AccessType,
137 Value *Ops[3] = {BaseType, AccessType, ConstantInt::get(Int64, Offset)};
  /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);
  /external/clang/utils/TableGen/
NeonEmitter.cpp 301 Type BaseType, InBaseType;
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()) {
    [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 1613 milliseconds

1 2 3