Searched defs:baseType (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/media/mca/filterfw/java/android/filterfw/format/
H A DPrimitiveFormat.java68 private static MutableFrameFormat createFormat(int baseType, int count, int target) { argument
69 MutableFrameFormat result = new MutableFrameFormat(baseType, target);
74 private static MutableFrameFormat createFormat(int baseType, int target) { argument
75 MutableFrameFormat result = new MutableFrameFormat(baseType, target);
/frameworks/native/opengl/tools/glgen/src/
H A DCType.java19 String baseType; field in class:CType
26 public CType(String baseType) { argument
27 setBaseType(baseType);
30 public CType(String baseType, boolean isConst, boolean isPointer) { argument
31 setBaseType(baseType);
37 return baseType + (isPointer ? " *" : "");
57 if(baseType.equals("EGLContext")
58 || baseType.equals("EGLConfig")
59 || baseType.equals("EGLSurface")
60 || baseType
80 setBaseType(String baseType) argument
[all...]
H A DJType.java21 String baseType; field in class:JType
135 this.baseType = primitiveTypeName;
141 this.baseType = primitiveTypeName;
147 return baseType;
152 return baseType + (isArray ? "[]" : "");
164 return baseType.equals("String");
172 return baseType.equals("void");
176 return baseType.indexOf("Buffer") != -1;
180 return !baseType.equals("java.nio.Buffer") &&
181 (baseType
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DMutableFrameFormat.java34 public MutableFrameFormat(int baseType, int target) { argument
35 super(baseType, target);
38 public void setBaseType(int baseType) { argument
39 mBaseType = baseType;
40 mBytesPerSample = bytesPerSampleOf(baseType);
H A DFrameFormat.java67 public FrameFormat(int baseType, int target) { argument
68 mBaseType = baseType;
309 public static int bytesPerSampleOf(int baseType) { argument
311 switch (baseType) {
343 public static String baseTypeToString(int baseType) { argument
344 switch (baseType) {

Completed in 72 milliseconds