/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 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 …]
|
D | JniCodeEmitter.java | 48 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/ |
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 | 66 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()
|
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/pm/ |
D | UserTypeDetails.java | 167 @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/ |
D | IntentResolver.java | 476 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/ |
D | DocumentsProvider.java | 1446 final String baseType = getType(uri); in openTypedAssetFileImpl() local 1447 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 | 2251 String baseType = getType(uri); in openTypedAssetFile() local 2252 if (baseType != null && ClipDescription.compareMimeTypes(baseType, mimeTypeFilter)) { in openTypedAssetFile()
|