HomeSort by relevance Sort by last modified time
    Searched full:basetype (Results 1 - 25 of 144) sorted by null

1 2 3 4 5 6

  /frameworks/base/opengl/tools/glgen/src/
CType.java 19 String baseType;
26 public CType(String baseType) {
27 setBaseType(baseType);
30 public CType(String baseType, boolean isConst, boolean isPointer) {
31 setBaseType(baseType);
37 return baseType + (isPointer ? " *" : "");
57 String baseType = getBaseType();
58 return baseType.equals("GLvoid") ||
59 baseType.equals("void");
63 return isConst && isPointer && baseType.equals("char")
    [all...]
JType.java 21 String baseType;
112 this.baseType = primitiveTypeName;
118 this.baseType = primitiveTypeName;
124 return baseType;
129 return baseType + (isArray ? "[]" : "");
141 return baseType.equals("String");
149 return baseType.equals("void");
153 return baseType.indexOf("Buffer") != -1;
157 return !baseType.equals("java.nio.Buffer") &&
158 (baseType.indexOf("Buffer") != -1)
    [all...]
JniCodeEmitter.java 43 String baseType = jType.getBaseType();
44 if (baseType.equals("int")) {
46 } else if (baseType.equals("float")) {
48 } else if (baseType.equals("boolean")) {
50 } else if (baseType.equals("short")) {
52 } else if (baseType.equals("long")) {
54 } else if (baseType.equals("byte")) {
56 } else if (baseType.equals("String")) {
58 } else if (baseType.equals("void")) {
61 throw new RuntimeException("Unknown primitive basetype " + baseType)
    [all...]
  /system/media/mca/filterfw/java/android/filterfw/core/
MutableFrameFormat.java 34 public MutableFrameFormat(int baseType, int target) {
35 super(baseType, target);
38 public void setBaseType(int baseType) {
39 mBaseType = baseType;
40 mBytesPerSample = bytesPerSampleOf(baseType);
FrameFormat.java 67 public FrameFormat(int baseType, int target) {
68 mBaseType = baseType;
309 public static int bytesPerSampleOf(int baseType) {
311 switch (baseType) {
343 public static String baseTypeToString(int baseType) {
344 switch (baseType) {
SimpleFrame.java 52 final int baseType = format.getBaseType();
53 switch (baseType) {
  /system/media/mca/filterfw/java/android/filterfw/format/
PrimitiveFormat.java 68 private static MutableFrameFormat createFormat(int baseType, int count, int target) {
69 MutableFrameFormat result = new MutableFrameFormat(baseType, target);
74 private static MutableFrameFormat createFormat(int baseType, int target) {
75 MutableFrameFormat result = new MutableFrameFormat(baseType, target);
  /frameworks/base/libs/rs/
spec.l 24 VarType *baseType = currType;
26 while (curPtrLevel < baseType->ptrLevel) {
34 switch(baseType->ptrLevel - curPtrLevel) {
36 sprintf(currType->name, "%s_length", baseType->name);
39 sprintf(currType->name, "%s_length_length", baseType->name);
  /external/clang/lib/Sema/
SemaExprMember.cpp 263 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK,
271 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
335 << baseType << SourceRange(CompLoc);
422 Sema::ActOnDependentMemberExpr(Expr *BaseExpr, QualType BaseType,
438 const PointerType *PT = BaseType->getAs<PointerType>();
443 << BaseType << BaseExpr->getSourceRange();
448 assert(BaseType->isDependentType() ||
452 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
454 return Owned(CXXDependentScopeMemberExpr::Create(Context, BaseExpr, BaseType,
466 QualType BaseType,
    [all...]
SemaDeclCXX.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86InstrBuilder.h 42 } BaseType;
56 : BaseType(RegBase), Scale(1), IndexReg(0), Disp(0), GV(0), GVOpFlags(0) {
64 if (BaseType == X86AddressMode::RegBase)
68 assert(BaseType == X86AddressMode::FrameIndexBase);
127 if (AM.BaseType == X86AddressMode::RegBase)
130 assert(AM.BaseType == X86AddressMode::FrameIndexBase);
  /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/
ExprCXX.cpp 781 Expr *Base, QualType BaseType,
    [all...]
DeclPrinter.cpp 104 QualType BaseType = T;
105 while (!BaseType->isSpecifierType()) {
106 if (isa<TypedefType>(BaseType))
108 else if (const PointerType* PTy = BaseType->getAs<PointerType>())
109 BaseType = PTy->getPointeeType();
110 else if (const ArrayType* ATy = dyn_cast<ArrayType>(BaseType))
111 BaseType = ATy->getElementType();
112 else if (const FunctionType* FTy = BaseType->getAs<FunctionType>())
113 BaseType = FTy->getResultType();
114 else if (const VectorType *VTy = BaseType->getAs<VectorType>()
    [all...]
CXXInheritance.cpp 51 /// different base class subobjects of the same type. BaseType must be
53 bool CXXBasePaths::isAmbiguous(CanQualType BaseType) {
54 BaseType = BaseType.getUnqualifiedType();
55 std::pair<bool, unsigned>& Subobjects = ClassSubobjects[BaseType];
175 QualType BaseType = Context.getCanonicalType(BaseSpec->getType())
184 if (BaseType->isDependentType())
189 std::pair<bool, unsigned>& Subobjects = ClassSubobjects[BaseType];
198 DetectedVirtual = BaseType->getAs<RecordType>();
  /external/llvm/lib/Target/SystemZ/
SystemZInstrBuilder.h 38 } BaseType;
49 SystemZAddressMode() : BaseType(RegBase), IndexReg(0), Disp(0) {
91 if (AM.BaseType == SystemZAddressMode::RegBase)
93 else if (AM.BaseType == SystemZAddressMode::FrameIndexBase)
SystemZISelDAGToDAG.cpp 40 } BaseType;
42 struct { // This is really a union, discriminated by BaseType!
52 : BaseType(RegBase), IndexReg(), Disp(0), isRI(RI) {
57 if (BaseType == RegBase) {
209 if (AM.BaseType == SystemZRRIAddressMode::RegBase &&
211 AM.BaseType = SystemZRRIAddressMode::FrameIndexBase;
239 if (AM.BaseType == SystemZRRIAddressMode::RegBase &&
280 AM.BaseType == SystemZRRIAddressMode::RegBase &&
320 if (AM.BaseType != SystemZRRIAddressMode::RegBase || AM.Base.Reg.getNode()) {
332 AM.BaseType = SystemZRRIAddressMode::RegBase
    [all...]
  /external/llvm/lib/Analysis/
Loads.cpp 93 Type *BaseType = 0;
97 BaseType = AI->getAllocatedType();
103 BaseType = GV->getType()->getElementType();
108 if (BaseType && BaseType->isSized()) {
110 BaseAlign = TD->getPrefTypeAlignment(BaseType);
119 if (ByteOffset + LoadSize <= TD->getTypeAllocSize(BaseType) &&
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 454 const clang::Type *BaseType = RefRSArr->getType().getTypePtr();
455 slangAssert(BaseType->isArrayType());
457 int NumArrayElements = ArrayDim(BaseType);
459 BaseType = BaseType->getArrayElementTypeNoTypeQual();
561 C.getPointerType(BaseType->getCanonicalTypeInternal()),
570 BaseType->getCanonicalTypeInternal(),
576 RSExportPrimitiveType::GetRSSpecificType(BaseType);
579 if (BaseType->isArrayType()) {
668 const clang::Type *BaseType = RefRSStruct->getType().getTypePtr()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/
plugin.xml 80 <baseType>
86 </simple></baseType>
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/
SoftAVC.h 25 #include "basetype.h"
  /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/tools/libclang/
CIndexCodeCompletion.cpp 537 QualType baseType = Context.getBaseType();
540 if (!baseType.isNull()) {
542 if (const TagType *Tag = baseType->getAs<TagType>())
547 baseType->getAs<ObjCObjectPointerType>())
550 else if (const ObjCObjectType *Obj = baseType->getAs<ObjCObjectType>())
554 baseType->getAs<InjectedClassNameType>())
578 const Type *type = baseType.getTypePtrOrNull();
    [all...]
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletToSigConverter.java 312 ITypeReference baseType = null;
314 baseType = convertTypeReference(type.asTypeVariable());
316 baseType = convertTypeReference(type.asParameterizedType());
318 baseType = new SigClassReference(convertClass(type.asClassDoc()));
320 baseType = SigPrimitiveType.valueOfTypeName(type.typeName());
325 ITypeReference arrayType = baseType;
  /external/libxml2/
xmlschemas.c     [all...]

Completed in 592 milliseconds

1 2 3 4 5 6