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

1 2 3 4 5 6

  /frameworks/native/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...]
  /frameworks/base/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) {
  /frameworks/base/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/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/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/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();
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...]
  /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);
  /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/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) &&
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 456 const clang::Type *BaseType = RefRSArr->getType().getTypePtr();
457 slangAssert(BaseType->isArrayType());
459 int NumArrayElements = ArrayDim(BaseType);
461 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/clang/lib/AST/
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 ArrayType* ATy = dyn_cast<ArrayType>(BaseType))
112 BaseType = ATy->getElementType();
113 else if (const FunctionType* FTy = BaseType->getAs<FunctionType>())
114 BaseType = FTy->getResultType();
115 else if (const VectorType *VTy = BaseType->getAs<VectorType>()
    [all...]
ExprCXX.cpp     [all...]
CXXInheritance.cpp 54 /// different base class subobjects of the same type. BaseType must be
56 bool CXXBasePaths::isAmbiguous(CanQualType BaseType) {
57 BaseType = BaseType.getUnqualifiedType();
58 std::pair<bool, unsigned>& Subobjects = ClassSubobjects[BaseType];
178 QualType BaseType = Context.getCanonicalType(BaseSpec->getType())
187 if (BaseType->isDependentType())
192 std::pair<bool, unsigned>& Subobjects = ClassSubobjects[BaseType];
201 DetectedVirtual = BaseType->getAs<RecordType>();
  /frameworks/av/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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/
plugin.xml 80 <baseType>
86 </simple></baseType>
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 552 QualType baseType = Context.getBaseType();
555 if (!baseType.isNull()) {
557 if (const TagType *Tag = baseType->getAs<TagType>())
562 baseType->getAs<ObjCObjectPointerType>())
565 else if (const ObjCObjectType *Obj = baseType->getAs<ObjCObjectType>())
569 baseType->getAs<InjectedClassNameType>())
593 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...]
  /external/tcpdump/
print-snmp.c 878 SmiBasetype basetype; member in struct:smi2be
937 static int smi_check_type(SmiBasetype basetype, int be)
941 for (i = 0; smi2betab[i].basetype != SMI_BASETYPE_UNKNOWN; i++) {
942 if (smi2betab[i].basetype == basetype && smi2betab[i].be == be) {
955 switch (smiType->basetype) {
1097 if (! smi_check_type(smiType->basetype, elem->type)) {
1115 if (smiType->basetype == SMI_BASETYPE_BITS) {
1140 if (smiType->basetype == SMI_BASETYPE_ENUM) {
    [all...]

Completed in 622 milliseconds

1 2 3 4 5 6