/frameworks/native/opengl/tools/glgen/src/ |
D | CType.java | 19 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 …]
|
D | JType.java | 21 String baseType; field in JType 149 this.baseType = primitiveTypeName; in JType() 155 this.baseType = primitiveTypeName; in JType() 161 return baseType; in getBaseType() 166 return baseType + (isArray ? "[]" : ""); in toString() 178 return baseType.equals("String"); in isString() 186 return baseType.equals("void"); in isVoid() 190 return baseType.indexOf("Buffer") != -1; in isBuffer() 194 return !baseType.equals("java.nio.Buffer") && in isTypedBuffer() 195 (baseType.indexOf("Buffer") != -1); in isTypedBuffer() [all …]
|
D | JniCodeEmitter.java | 47 String baseType = jType.getBaseType(); in getJniName() local 48 if (baseType.equals("int")) { in getJniName() 50 } else if (baseType.equals("float")) { in getJniName() 52 } else if (baseType.equals("boolean")) { in getJniName() 54 } else if (baseType.equals("short")) { in getJniName() 56 } else if (baseType.equals("long")) { in getJniName() 58 } else if (baseType.equals("byte")) { in getJniName() 60 } else if (baseType.equals("String")) { in getJniName() 62 } else if (baseType.equals("void")) { in getJniName() 65 throw new RuntimeException("Unknown primitive basetype " + baseType); in getJniName() [all …]
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
D | MutableFrameFormat.java | 34 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()
|
D | FrameFormat.java | 67 public FrameFormat(int baseType, int target) { in FrameFormat() argument 68 mBaseType = baseType; in FrameFormat() 309 public static int bytesPerSampleOf(int baseType) { in bytesPerSampleOf() argument 311 switch (baseType) { in bytesPerSampleOf() 343 public static String baseTypeToString(int baseType) { in baseTypeToString() argument 344 switch (baseType) { in baseTypeToString()
|
D | SimpleFrame.java | 50 final int baseType = format.getBaseType(); in initWithFormat() local 51 switch (baseType) { in initWithFormat()
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/format/ |
D | PrimitiveFormat.java | 68 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/ |
D | spec.l | 24 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/ |
D | test_slang_version_info.ll | 89 !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/ |
D | IntentResolver.java | 422 final String baseType = resolvedType.substring(0, slashpos); in queryIntent() local 423 if (!baseType.equals("*")) { in queryIntent() 430 secondTypeCut = mWildTypeToFilter.get(baseType); in queryIntent() 435 firstTypeCut = mBaseTypeToFilter.get(baseType); in queryIntent() 437 secondTypeCut = mWildTypeToFilter.get(baseType); in queryIntent()
|
/frameworks/base/core/java/android/provider/ |
D | DocumentsProvider.java | 1312 final String baseType = getType(uri); in openTypedAssetFileImpl() local 1313 if (baseType != null && ClipDescription.compareMimeTypes(baseType, mimeTypeFilter)) { in openTypedAssetFileImpl()
|
/frameworks/rs/script_api/ |
D | Specification.cpp | 118 void getVectorSizeAndBaseType(const string& type, string& vectorSize, string& baseType) { in getVectorSizeAndBaseType() argument 120 baseType = type; in getVectorSizeAndBaseType() 133 baseType = trimmed; in getVectorSizeAndBaseType()
|
D | Specification.h | 625 std::string& baseType);
|
/frameworks/base/core/java/android/content/ |
D | ContentProvider.java | 1725 String baseType = getType(uri); in openTypedAssetFile() local 1726 if (baseType != null && ClipDescription.compareMimeTypes(baseType, mimeTypeFilter)) { in openTypedAssetFile()
|