HomeSort by relevance Sort by last modified time
    Searched refs:baseType (Results 1 - 12 of 12) sorted by null

  /frameworks/base/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("Uknown primitive basetype " + baseType)
    [all...]
  /external/libxml2/
xmlschemas.c     [all...]
xmlschemastypes.c 258 xmlSchemaTypePtr baseType) {
270 ret->baseType = baseType;
400 xmlSchemaTypeAnyTypeDef->baseType = xmlSchemaTypeAnyTypeDef;
    [all...]
  /frameworks/base/services/java/com/android/server/
IntentResolver.java 242 final String baseType = resolvedType.substring(0, slashpos);
243 if (!baseType.equals("*")) {
250 secondTypeCut = mWildTypeToFilter.get(baseType);
254 firstTypeCut = mBaseTypeToFilter.get(baseType);
256 secondTypeCut = mWildTypeToFilter.get(baseType);
  /external/webkit/WebCore/html/canvas/
WebGLRenderingContext.cpp     [all...]
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 703 baseType ();
709 void baseType () throws IOException
  /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/include/libxml/
schemasInternals.h 620 xmlSchemaTypePtr baseType; /* The base type component */
  /external/emma/lib/
emma.jar 
  /prebuilt/common/ecj/
ecj.jar 

Completed in 583 milliseconds