HomeSort by relevance Sort by last modified time
    Searched refs:baseType (Results 1 - 25 of 42) 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/
IntentResolverOld.java 245 final String baseType = resolvedType.substring(0, slashpos);
246 if (!baseType.equals("*")) {
253 secondTypeCut = mWildTypeToFilter.get(baseType);
257 firstTypeCut = mBaseTypeToFilter.get(baseType);
259 secondTypeCut = mWildTypeToFilter.get(baseType);
IntentResolver.java 256 final String baseType = resolvedType.substring(0, slashpos);
257 if (!baseType.equals("*")) {
264 secondTypeCut = mWildTypeToFilter.get(baseType);
268 firstTypeCut = mBaseTypeToFilter.get(baseType);
270 secondTypeCut = mWildTypeToFilter.get(baseType);
  /external/libxml2/
xmlschemas.c     [all...]
xmlschemastypes.c 258 xmlSchemaTypePtr baseType) {
270 ret->baseType = baseType;
400 xmlSchemaTypeAnyTypeDef->baseType = xmlSchemaTypeAnyTypeDef;
    [all...]
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 575 QualType baseType = Context.getBaseType();
578 if (!baseType.isNull()) {
580 if (const TagType *Tag = baseType->getAs<TagType>())
585 baseType->getAs<ObjCObjectPointerType>())
588 else if (const ObjCObjectType *Obj = baseType->getAs<ObjCObjectType>())
592 baseType->getAs<InjectedClassNameType>())
605 const Type *type = baseType.getTypePtrOrNull();
    [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 837 /// \param baseType the inner-most element type of the array
841 static void emitNonZeroVLAInit(CodeGenFunction &CGF, QualType baseType,
845 = CGF.getContext().getTypeInfoInChars(baseType);
    [all...]
  /frameworks/base/core/java/android/content/
ContentProvider.java     [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebGLRenderingContext.cpp     [all...]
  /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 
org.eclipse.core.filebuffers_3.5.100.v20100520-0800.jar 
  /external/clang/lib/Sema/
SemaExprMember.cpp 270 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK,
278 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
342 << baseType << SourceRange(CompLoc);
429 Sema::ActOnDependentMemberExpr(Expr *BaseExpr, QualType BaseType,
446 const PointerType *PT = BaseType->getAs<PointerType>();
451 << BaseType << BaseExpr->getSourceRange() << NameInfo.getSourceRange();
456 assert(BaseType->isDependentType() ||
460 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
462 return Owned(CXXDependentScopeMemberExpr::Create(Context, BaseExpr, BaseType,
475 QualType BaseType,
    [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 375 milliseconds

1 2