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

1 2

  /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("Unknown primitive basetype " + baseType)
    [all...]
  /system/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) {
  /system/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/base/libs/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);
  /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 243 final String baseType = resolvedType.substring(0, slashpos);
244 if (!baseType.equals("*")) {
251 secondTypeCut = mWildTypeToFilter.get(baseType);
255 firstTypeCut = mBaseTypeToFilter.get(baseType);
257 secondTypeCut = mWildTypeToFilter.get(baseType);
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 537 QualType baseType = Context.getBaseType();
540 if (!baseType.isNull()) {
542 if (const TagType *Tag = baseType->getAs<TagType>())
547 baseType->getAs<ObjCObjectPointerType>())
550 else if (const ObjCObjectType *Obj = baseType->getAs<ObjCObjectType>())
554 baseType->getAs<InjectedClassNameType>())
578 const Type *type = baseType.getTypePtrOrNull();
    [all...]
  /frameworks/base/core/java/android/content/
ContentProvider.java     [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 653 static void emitNonZeroVLAInit(CodeGenFunction &CGF, QualType baseType,
657 = CGF.getContext().getTypeInfoInChars(baseType);
807 QualType &baseType,
825 baseType = elementType;
866 baseType = arrayType->getElementType();
    [all...]
CodeGenFunction.h     [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebGLRenderingContext.cpp     [all...]
  /external/libxml2/include/libxml/
schemasInternals.h 620 xmlSchemaTypePtr baseType; /* The base type component */
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 821 SVal RegionStoreManager::evalDerivedToBase(SVal derived, QualType baseType) {
823 if (baseType->isPointerType())
824 baseDecl = baseType->getCXXRecordDeclForPointerType();
826 baseDecl = baseType->getAsCXXRecordDecl();
    [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 263 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK,
271 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
335 << baseType << SourceRange(CompLoc);
422 Sema::ActOnDependentMemberExpr(Expr *BaseExpr, QualType BaseType,
438 const PointerType *PT = BaseType->getAs<PointerType>();
443 << BaseType << BaseExpr->getSourceRange();
448 assert(BaseType->isDependentType() ||
452 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
454 return Owned(CXXDependentScopeMemberExpr::Create(Context, BaseExpr, BaseType,
466 QualType BaseType,
    [all...]
SemaDecl.cpp     [all...]
  /external/clang/include/clang/AST/
Type.h 923 ExtQualsTypeCommonBase(const Type *baseType, QualType canon)
924 : BaseType(baseType), CanonicalType(canon) {}
931 const Type *const BaseType;
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 585 milliseconds

1 2