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

1 2 3 4 5

  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliArrayTypeElement.java 58 PsiTypeElement baseType = findChildByClass(PsiTypeElement.class);
59 assert baseType != null;
61 PsiArrayType arrayType = new PsiArrayType(baseType.getType());
  /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;
149 this.baseType = primitiveTypeName;
155 this.baseType = primitiveTypeName;
161 return baseType;
166 return baseType + (isArray ? "[]" : "");
178 return baseType.equals("String");
186 return baseType.equals("void");
190 return baseType.indexOf("Buffer") != -1;
194 return !baseType.equals("java.nio.Buffer") &&
195 (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/
SimpleFrame.java 50 final int baseType = format.getBaseType();
51 switch (baseType) {
  /external/deqp/framework/randomshaders/
rsgShaderGenerator.cpp 139 VariableType::Type baseType = valueRange.getType().getBaseType();
140 TCU_CHECK(baseType == VariableType::TYPE_FLOAT ||
141 baseType == VariableType::TYPE_INT ||
142 baseType == VariableType::TYPE_BOOL);
151 switch (baseType)
rsgUtils.cpp 165 VariableType::Type baseType = VariableType::TYPE_LAST;
166 state.getRandom().choose(baseTypes, baseTypes + DE_LENGTH_OF_ARRAY(baseTypes), &baseType, 1);
168 switch (baseType)
176 return VariableType(baseType, state.getRandom().getInt(minVecLength, de::min(maxScalars, maxVecLength)));
rsgBinaryOps.cpp 128 VariableType::Type baseType = state.getRandom().choose<VariableType::Type>(baseTypes.begin(), baseTypes.end());
131 valueRange = ValueRange(VariableType(baseType, numElements));
143 VariableType::Type baseType = this->m_type.getBaseType();
153 if ((baseType == VariableType::TYPE_FLOAT || baseType == VariableType::TYPE_INT) && isUndefinedValueRange(dst))
162 if (baseType == VariableType::TYPE_FLOAT)
166 else if (baseType == VariableType::TYPE_INT)
172 DE_ASSERT(baseType == VariableType::TYPE_BOOL);
rsgExpression.cpp 689 VariableType::Type baseType = type.getBaseType();
707 if (isConversionOk(VariableType::TYPE_FLOAT, baseType, comp)) inTypes[numInTypes++] = VariableType::TYPE_FLOAT;
708 if (isConversionOk(VariableType::TYPE_INT, baseType, comp)) inTypes[numInTypes++] = VariableType::TYPE_INT;
709 if (isConversionOk(VariableType::TYPE_BOOL, baseType, comp)) inTypes[numInTypes++] = VariableType::TYPE_BOOL;
    [all...]
  /external/skia/src/core/
SkValidatingReadBuffer.cpp 234 SkFlattenable::Type baseType;
235 if (!SkFlattenable::NameToType(cname, &baseType) || (baseType != type)) {
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 703 baseType ();
709 void baseType () throws IOException
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 570 QualType baseType = Context.getBaseType();
573 if (!baseType.isNull()) {
575 if (const TagType *Tag = baseType->getAs<TagType>())
580 baseType->getAs<ObjCObjectPointerType>())
583 else if (const ObjCObjectType *Obj = baseType->getAs<ObjCObjectType>())
587 baseType->getAs<InjectedClassNameType>())
600 const Type *type = baseType.getTypePtrOrNull();
    [all...]
  /frameworks/base/core/java/android/provider/
DocumentsProvider.java     [all...]
  /prebuilts/tools/common/m2/repository/relaxngDatatype/relaxngDatatype/20020414/
relaxngDatatype-20020414.jar 
  /external/clang/lib/AST/
Type.cpp 543 BaseType(Base)
631 QualType baseType(splitBaseType.Ty, 0);
634 baseType = baseObj->stripObjCKindOfTypeAndQuals(ctx);
637 return ctx.getObjCObjectType(ctx.getQualifiedType(baseType,
    [all...]
  /frameworks/base/core/java/android/content/
ContentProvider.java     [all...]
  /frameworks/base/services/core/java/com/android/server/
IntentResolver.java 395 final String baseType = resolvedType.substring(0, slashpos);
396 if (!baseType.equals("*")) {
403 secondTypeCut = mWildTypeToFilter.get(baseType);
408 firstTypeCut = mBaseTypeToFilter.get(baseType);
410 secondTypeCut = mWildTypeToFilter.get(baseType);
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp     [all...]
  /external/clang/lib/Parse/
ParseObjc.cpp     [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/plugins/maven-antrun-plugin/1.3/
maven-antrun-plugin-1.3.jar 
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.1/
hamcrest-library-1.1.jar 
  /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/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.contenttype_3.5.0.v20150421-2214.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.core.contenttype_3.4.200.v20130326-1255.jar 

Completed in 3258 milliseconds

1 2 3 4 5