Home
last modified time | relevance | path

Searched refs:baseType (Results 1 – 15 of 15) sorted by relevance

/frameworks/native/opengl/tools/glgen/src/
DCType.java19 String baseType; field in CType
26 public CType(String baseType) { in CType() argument
27 setBaseType(baseType); in CType()
30 public CType(String baseType, boolean isConst, boolean isPointer) { in CType() argument
31 setBaseType(baseType); in CType()
37 return baseType + (isPointer ? " *" : ""); in getDeclaration()
57 if(baseType.equals("EGLContext") in isEGLHandle()
58 || baseType.equals("EGLConfig") in isEGLHandle()
59 || baseType.equals("EGLSurface") in isEGLHandle()
60 || baseType.equals("EGLDisplay") in isEGLHandle()
[all …]
DJType.java21 String baseType; field in JType
155 this.baseType = primitiveTypeName; in JType()
161 this.baseType = primitiveTypeName; in JType()
167 return baseType; in getBaseType()
172 return baseType + (isArray ? "[]" : ""); in toString()
184 return baseType.equals("String"); in isString()
192 return baseType.equals("void"); in isVoid()
196 return baseType.indexOf("Buffer") != -1; in isBuffer()
200 return !baseType.equals("java.nio.Buffer") && in isTypedBuffer()
201 (baseType.indexOf("Buffer") != -1); in isTypedBuffer()
[all …]
DJniCodeEmitter.java48 String baseType = jType.getBaseType(); in getJniName() local
49 if (baseType.equals("int")) { in getJniName()
51 } else if (baseType.equals("float")) { in getJniName()
53 } else if (baseType.equals("boolean")) { in getJniName()
55 } else if (baseType.equals("short")) { in getJniName()
57 } else if (baseType.equals("long")) { in getJniName()
59 } else if (baseType.equals("byte")) { in getJniName()
61 } else if (baseType.equals("String")) { in getJniName()
63 } else if (baseType.equals("void")) { in getJniName()
66 throw new RuntimeException("Unknown primitive basetype " + baseType); in getJniName()
[all …]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
DMutableFrameFormat.java34 public MutableFrameFormat(int baseType, int target) { in MutableFrameFormat() argument
35 super(baseType, target); in MutableFrameFormat()
38 public void setBaseType(int baseType) { in setBaseType() argument
39 mBaseType = baseType; in setBaseType()
40 mBytesPerSample = bytesPerSampleOf(baseType); in setBaseType()
DFrameFormat.java66 public FrameFormat(int baseType, int target) { in FrameFormat() argument
67 mBaseType = baseType; in FrameFormat()
312 public static int bytesPerSampleOf(int baseType) { in bytesPerSampleOf() argument
314 switch (baseType) { in bytesPerSampleOf()
346 public static String baseTypeToString(int baseType) { in baseTypeToString() argument
347 switch (baseType) { in baseTypeToString()
DSimpleFrame.java50 final int baseType = format.getBaseType(); in initWithFormat() local
51 switch (baseType) { in initWithFormat()
/frameworks/base/media/mca/filterfw/java/android/filterfw/format/
DPrimitiveFormat.java68 private static MutableFrameFormat createFormat(int baseType, int count, int target) { in createFormat() argument
69 MutableFrameFormat result = new MutableFrameFormat(baseType, target); in createFormat()
74 private static MutableFrameFormat createFormat(int baseType, int target) { in createFormat() argument
75 MutableFrameFormat result = new MutableFrameFormat(baseType, target); in createFormat()
/frameworks/rs/
Dspec.l24 VarType *baseType = currType; in checkPointerType() local
26 while (curPtrLevel < baseType->ptrLevel) { in checkPointerType()
34 switch(baseType->ptrLevel - curPtrLevel) { in checkPointerType()
36 sprintf(currType->name, "%s_length", baseType->name); in checkPointerType()
39 sprintf(currType->name, "%s_length_length", baseType->name); in checkPointerType()
/frameworks/compile/libbcc/tests/libbcc/
Dtest_slang_version_info.ll89 !8 = !DIDerivedType(tag: DW_TAG_typedef, name: "uchar4", file: !9, line: 328, baseType: !10)
91 !10 = !DICompositeType(tag: DW_TAG_array_type, baseType: !11, size: 32, align: 32, flags: DIFlagVec…
92 !11 = !DIDerivedType(tag: DW_TAG_typedef, name: "uchar", file: !9, line: 206, baseType: !12)
93 !12 = !DIDerivedType(tag: DW_TAG_typedef, name: "uint8_t", file: !9, line: 172, baseType: !13)
/frameworks/base/services/core/java/com/android/server/pm/
DUserTypeDetails.java167 @UserInfoFlag int baseType, @UserInfoFlag int defaultUserInfoPropertyFlags, int label, in UserTypeDetails() argument
182 this.mBaseType = baseType; in UserTypeDetails()
444 public Builder setBaseType(@UserInfoFlag int baseType) { in setBaseType() argument
445 mBaseType = baseType; in setBaseType()
/frameworks/base/services/core/java/com/android/server/
DIntentResolver.java476 final String baseType = resolvedType.substring(0, slashpos); in queryIntent() local
477 if (!baseType.equals("*")) { in queryIntent()
484 secondTypeCut = mWildTypeToFilter.get(baseType); in queryIntent()
489 firstTypeCut = mBaseTypeToFilter.get(baseType); in queryIntent()
491 secondTypeCut = mWildTypeToFilter.get(baseType); in queryIntent()
/frameworks/base/core/java/android/provider/
DDocumentsProvider.java1446 final String baseType = getType(uri); in openTypedAssetFileImpl() local
1447 if (baseType != null && ClipDescription.compareMimeTypes(baseType, mimeTypeFilter)) { in openTypedAssetFileImpl()
/frameworks/rs/script_api/
DSpecification.cpp118 void getVectorSizeAndBaseType(const string& type, string& vectorSize, string& baseType) { in getVectorSizeAndBaseType() argument
120 baseType = type; in getVectorSizeAndBaseType()
133 baseType = trimmed; in getVectorSizeAndBaseType()
DSpecification.h625 std::string& baseType);
/frameworks/base/core/java/android/content/
DContentProvider.java2251 String baseType = getType(uri); in openTypedAssetFile() local
2252 if (baseType != null && ClipDescription.compareMimeTypes(baseType, mimeTypeFilter)) { in openTypedAssetFile()