Searched defs:baseType (Results 1 - 25 of 43) sorted by relevance

12

/external/hamcrest/library/src/org/hamcrest/object/
H A DIsCompatibleType.java24 public static <T> Matcher<Class<?>> typeCompatibleWith(Class<T> baseType) { argument
25 return new IsCompatibleType<T>(baseType);
/external/deqp/framework/randomshaders/
H A DrsgVariableType.cpp130 const VariableType& VariableType::getScalarType (Type baseType) argument
132 switch (baseType)
H A DrsgShaderGenerator.cpp139 VariableType::Type baseType = valueRange.getType().getBaseType(); local
140 TCU_CHECK(baseType == VariableType::TYPE_FLOAT ||
141 baseType == VariableType::TYPE_INT ||
142 baseType == VariableType::TYPE_BOOL);
151 switch (baseType)
H A DrsgUtils.cpp165 VariableType::Type baseType = VariableType::TYPE_LAST; local
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)));
H A DrsgVariableType.hpp132 VariableType (Type baseType, int numElements = 0);
133 VariableType (Type baseType, const VariableType& elementType, int numElements);
134 VariableType (Type baseType, const char* typeName);
166 static const VariableType& getScalarType (Type baseType);
186 inline VariableType::VariableType (Type baseType, int numElements) argument
187 : m_baseType (baseType)
193 DE_ASSERT(baseType != TYPE_ARRAY && baseType != TYPE_STRUCT);
196 inline VariableType::VariableType (Type baseType, const VariableType& elementType, int numElements) argument
197 : m_baseType (baseType)
206 VariableType(Type baseType, const char* typeName) argument
[all...]
H A DrsgBinaryOps.cpp128 VariableType::Type baseType = state.getRandom().choose<VariableType::Type>(baseTypes.begin(), baseTypes.end()); local
131 valueRange = ValueRange(VariableType(baseType, numElements));
143 VariableType::Type baseType = this->m_type.getBaseType(); local
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);
H A DrsgExpression.cpp688 VariableType::Type baseType = type.getBaseType(); local
706 if (isConversionOk(VariableType::TYPE_FLOAT, baseType, comp)) inTypes[numInTypes++] = VariableType::TYPE_FLOAT;
707 if (isConversionOk(VariableType::TYPE_INT, baseType, comp)) inTypes[numInTypes++] = VariableType::TYPE_INT;
708 if (isConversionOk(VariableType::TYPE_BOOL, baseType, comp)) inTypes[numInTypes++] = VariableType::TYPE_BOOL;
/external/hamcrest/library/src/org/hamcrest/
H A DMatchers.java269 public static <T> org.hamcrest.Matcher<java.lang.Class<?>> typeCompatibleWith(java.lang.Class<T> baseType) { argument
270 return org.hamcrest.object.IsCompatibleType.typeCompatibleWith(baseType);
/external/chromium_org/third_party/skia/src/core/
H A DSkValidatingReadBuffer.cpp231 SkFlattenable::Type baseType; local
232 if (!SkFlattenable::NameToType(cname, &baseType) || (baseType != type)) {
/external/emma/core/java12/com/vladium/jcd/lib/
H A DTypes.java703 baseType ();
709 void baseType () throws IOException method in class:Types.methodDescriptorCompiler
/external/skia/src/core/
H A DSkValidatingReadBuffer.cpp231 SkFlattenable::Type baseType; local
232 if (!SkFlattenable::NameToType(cname, &baseType) || (baseType != type)) {
/external/clang/tools/libclang/
H A DCIndexCodeCompletion.cpp570 QualType baseType = Context.getBaseType(); variable
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();
/external/deqp/modules/gles31/functional/
H A Des31fShaderIntegerFunctionTests.cpp350 static std::string getIntegerFuncCaseName (glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
352 return string(glu::getDataTypeName(baseType)) + getPrecisionPostfix(precision) + getShaderTypePostfix(shaderType);
358 UaddCarryCase (Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
359 : IntegerFunctionCase(context, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "uaddCarry", shaderType)
361 m_spec.inputs.push_back(Symbol("x", glu::VarType(baseType, precision)));
362 m_spec.inputs.push_back(Symbol("y", glu::VarType(baseType, precision)));
363 m_spec.outputs.push_back(Symbol("sum", glu::VarType(baseType, precision)));
364 m_spec.outputs.push_back(Symbol("carry", glu::VarType(baseType, glu::PRECISION_LOWP)));
454 UsubBorrowCase (Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
455 : IntegerFunctionCase(context, getIntegerFuncCaseName(baseType, precisio
548 UmulExtendedCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
638 ImulExtendedCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
729 BitfieldExtractCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
792 BitfieldInsertCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
869 BitfieldReverseCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
915 BitCountCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
975 FindLSBCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1053 FindMSBCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
[all...]
H A Des31fShaderCommonFunctionTests.cpp445 static std::string getCommonFuncCaseName (glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
447 return string(glu::getDataTypeName(baseType)) + getPrecisionPostfix(precision) + getShaderTypePostfix(shaderType);
453 AbsCase (Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
454 : CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "abs", shaderType)
456 m_spec.inputs.push_back(Symbol("in0", glu::VarType(baseType, precision)));
457 m_spec.outputs.push_back(Symbol("out0", glu::VarType(baseType, precision)));
535 SignCase (Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
536 : CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "sign", shaderType)
538 m_spec.inputs.push_back(Symbol("in0", glu::VarType(baseType, precision)));
539 m_spec.outputs.push_back(Symbol("out0", glu::VarType(baseType, precisio
641 RoundEvenCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
752 ModfCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
818 IsnanCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
901 IsinfCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
985 FloatBitsToUintIntCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType, bool outIsSigned) argument
1045 FloatBitsToIntCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1054 FloatBitsToUintCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1063 BitsToFloatCase(Context& context, glu::DataType baseType, glu::ShaderType shaderType) argument
1113 FloorCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1209 TruncCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1317 RoundCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1445 CeilCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1550 FractCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
[all...]
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DParseContext.cpp2115 const TType &baseType = baseExpression->getType(); local
2116 if (baseType.getStruct())
2118 TType copyOfType(baseType.getStruct());
2121 else if (baseType.isInterfaceBlock())
2123 TType copyOfType(baseType.getInterfaceBlock(), baseType.getQualifier(), baseType.getLayoutQualifier(), 0);
/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp1330 llvm::Type *baseType,
1360 llvm::Type *baseType = structure->getElementType(fieldIndex); local
1361 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base);
1393 llvm::Type *baseType = structure->getElementType(fieldIndex); local
1394 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base);
1409 llvm::Type *baseType,
1415 return llvm::Constant::getNullValue(baseType);
1418 if (isa<llvm::StructType>(baseType)) {
1425 llvm::ArrayType *baseArrayType = cast<llvm::ArrayType>(baseType);
1408 EmitNullConstantForBase(CodeGenModule &CGM, llvm::Type *baseType, const CXXRecordDecl *base) argument
H A DCodeGenFunction.cpp1138 /// \param baseType the inner-most element type of the array
1142 static void emitNonZeroVLAInit(CodeGenFunction &CGF, QualType baseType, argument
1146 = CGF.getContext().getTypeInfoInChars(baseType);
1296 QualType &baseType,
1314 baseType = elementType;
1373 baseType = eltType;
1295 emitArrayLength(const ArrayType *origArrayType, QualType &baseType, llvm::Value *&addr) argument
/external/clang/lib/Sema/
H A DSemaExprMember.cpp289 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK, argument
297 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
359 << baseType << SourceRange(CompLoc);
/external/deqp/modules/gles3/functional/
H A Des3fShaderCommonFunctionTests.cpp414 static std::string getCommonFuncCaseName (glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
416 return string(glu::getDataTypeName(baseType)) + getPrecisionPostfix(precision) + getShaderTypePostfix(shaderType);
422 AbsCase (Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
423 : CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "abs", shaderType)
425 m_spec.inputs.push_back(Symbol("in0", glu::VarType(baseType, precision)));
426 m_spec.outputs.push_back(Symbol("out0", glu::VarType(baseType, precision)));
504 SignCase (Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
505 : CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "sign", shaderType)
507 m_spec.inputs.push_back(Symbol("in0", glu::VarType(baseType, precision)));
508 m_spec.outputs.push_back(Symbol("out0", glu::VarType(baseType, precisio
610 RoundEvenCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
721 ModfCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
787 IsnanCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
868 IsinfCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
949 FloatBitsToUintIntCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType, bool outIsSigned) argument
1009 FloatBitsToIntCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1018 FloatBitsToUintCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1027 BitsToFloatCase(Context& context, glu::DataType baseType, glu::ShaderType shaderType) argument
1077 FloorCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1173 TruncCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1281 RoundCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1409 CeilCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1514 FractCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
[all...]
/external/chromium_org/third_party/libxml/src/include/libxml/
H A DschemasInternals.h620 xmlSchemaTypePtr baseType; /* The base type component */ member in struct:_xmlSchemaType
/external/libxml2/include/libxml/
H A DschemasInternals.h620 xmlSchemaTypePtr baseType; /* The base type component */ member in struct:_xmlSchemaType
/external/chromium_org/third_party/libxml/src/
H A Dxmlschemastypes.c258 xmlSchemaTypePtr baseType) {
270 ret->baseType = baseType;
400 xmlSchemaTypeAnyTypeDef->baseType = xmlSchemaTypeAnyTypeDef;
257 xmlSchemaInitBasicType(const char *name, xmlSchemaValType type, xmlSchemaTypePtr baseType) argument
/external/libxml2/
H A Dxmlschemastypes.c258 xmlSchemaTypePtr baseType) {
270 ret->baseType = baseType;
400 xmlSchemaTypeAnyTypeDef->baseType = xmlSchemaTypeAnyTypeDef;
257 xmlSchemaInitBasicType(const char *name, xmlSchemaValType type, xmlSchemaTypePtr baseType) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.contenttype_3.4.100.v20100505-1235.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContextBase.cpp2731 GLenum baseType; local
2735 baseType = GL_BOOL;
2739 baseType = GL_BOOL;
2743 baseType = GL_BOOL;
2747 baseType = GL_BOOL;
2751 baseType = GL_INT;
2755 baseType = GL_INT;
2759 baseType = GL_INT;
2763 baseType = GL_INT;
2767 baseType
[all...]

Completed in 682 milliseconds

12