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

1 2

  /frameworks/native/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 if(baseType.equals("EGLContext")
58 || baseType.equals("EGLConfig")
59 || baseType.equals("EGLSurface")
60 || baseType.equals("EGLDisplay"))
    [all...]
JType.java 21 String baseType;
145 this.baseType = primitiveTypeName;
151 this.baseType = primitiveTypeName;
157 return baseType;
162 return baseType + (isArray ? "[]" : "");
174 return baseType.equals("String");
182 return baseType.equals("void");
186 return baseType.indexOf("Buffer") != -1;
190 return !baseType.equals("java.nio.Buffer") &&
191 (baseType.indexOf("Buffer") != -1)
    [all...]
JniCodeEmitter.java 47 String baseType = jType.getBaseType();
48 if (baseType.equals("int")) {
50 } else if (baseType.equals("float")) {
52 } else if (baseType.equals("boolean")) {
54 } else if (baseType.equals("short")) {
56 } else if (baseType.equals("long")) {
58 } else if (baseType.equals("byte")) {
60 } else if (baseType.equals("String")) {
62 } else if (baseType.equals("void")) {
65 throw new RuntimeException("Unknown primitive basetype " + baseType)
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
MutableFrameFormat.java 34 public MutableFrameFormat(int baseType, int target) {
35 super(baseType, target);
38 public void setBaseType(int baseType) {
39 mBaseType = baseType;
40 mBytesPerSample = bytesPerSampleOf(baseType);
FrameFormat.java 67 public FrameFormat(int baseType, int target) {
68 mBaseType = baseType;
309 public static int bytesPerSampleOf(int baseType) {
311 switch (baseType) {
343 public static String baseTypeToString(int baseType) {
344 switch (baseType) {
SimpleFrame.java 52 final int baseType = format.getBaseType();
53 switch (baseType) {
  /frameworks/base/media/mca/filterfw/java/android/filterfw/format/
PrimitiveFormat.java 68 private static MutableFrameFormat createFormat(int baseType, int count, int target) {
69 MutableFrameFormat result = new MutableFrameFormat(baseType, target);
74 private static MutableFrameFormat createFormat(int baseType, int target) {
75 MutableFrameFormat result = new MutableFrameFormat(baseType, target);
  /frameworks/rs/
spec.l 24 VarType *baseType = currType;
26 while (curPtrLevel < baseType->ptrLevel) {
34 switch(baseType->ptrLevel - curPtrLevel) {
36 sprintf(currType->name, "%s_length", baseType->name);
39 sprintf(currType->name, "%s_length_length", baseType->name);
  /frameworks/base/services/java/com/android/server/
IntentResolver.java 246 final String baseType = resolvedType.substring(0, slashpos);
247 if (!baseType.equals("*")) {
254 secondTypeCut = mWildTypeToFilter.get(baseType);
259 firstTypeCut = mBaseTypeToFilter.get(baseType);
261 secondTypeCut = mWildTypeToFilter.get(baseType);
  /external/chromium_org/third_party/libxml/src/
xmlschemas.c     [all...]
  /external/libxml2/
xmlschemas.c     [all...]
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 574 QualType baseType = Context.getBaseType();
577 if (!baseType.isNull()) {
579 if (const TagType *Tag = baseType->getAs<TagType>())
584 baseType->getAs<ObjCObjectPointerType>())
587 else if (const ObjCObjectType *Obj = baseType->getAs<ObjCObjectType>())
591 baseType->getAs<InjectedClassNameType>())
604 const Type *type = baseType.getTypePtrOrNull();
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
es_generator.py 59 baseType = None
65 baseType = t
66 return (baseType, typeModifiers)
    [all...]
  /external/mesa3d/src/mesa/main/
es_generator.py 59 baseType = None
65 baseType = t
66 return (baseType, typeModifiers)
    [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/clang/lib/CodeGen/
CGExprConstant.cpp     [all...]
CodeGenFunction.cpp     [all...]
  /frameworks/base/core/java/android/content/
ContentProvider.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLRenderingContext.cpp     [all...]
  /external/chromium_org/third_party/libxml/src/include/libxml/
schemasInternals.h 620 xmlSchemaTypePtr baseType; /* The base type component */
  /external/libxml2/include/libxml/
schemasInternals.h 620 xmlSchemaTypePtr baseType; /* The base type component */
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar 
  /external/chromium_org/third_party/angle_dx11/src/compiler/
ParseHelper.cpp     [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 288 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK,
296 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
360 << baseType << SourceRange(CompLoc);
447 Sema::ActOnDependentMemberExpr(Expr *BaseExpr, QualType BaseType,
464 const PointerType *PT = BaseType->getAs<PointerType>();
469 << BaseType << BaseExpr->getSourceRange() << NameInfo.getSourceRange();
474 assert(BaseType->isDependentType() ||
478 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
480 return Owned(CXXDependentScopeMemberExpr::Create(Context, BaseExpr, BaseType,
493 QualType BaseType,
    [all...]

Completed in 2569 milliseconds

1 2