Searched refs:baseType (Results 1 - 25 of 51) sorted by relevance

123

/external/pdfium/core/include/fxcrt/
H A Dfx_coordinates.h9 template<class baseType> class CFX_PSVTemplate;
10 template<class baseType> class CFX_VTemplate;
11 template<class baseType> class CFX_PRLTemplate;
12 template<class baseType> class CFX_RTemplate;
13 template<class baseType> class CFX_ETemplate;
14 template<class baseType> class CFX_ATemplate;
15 template<class baseType> class CFX_RRTemplate;
17 template<class baseType>
21 typedef CFX_PSVTemplate<baseType> FXT_PSV;
22 typedef CFX_PSVTemplate<baseType> FXT_POIN
[all...]
H A Dfx_ext.h79 template<class baseType>
83 void ShellSort(baseType *pArray, FX_INT32 iCount)
87 baseType v1, v2;
/external/deqp/framework/randomshaders/
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 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 DrsgVariableType.cpp130 const VariableType& VariableType::getScalarType (Type baseType) argument
132 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 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);
/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/modules/gles31/functional/
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...]
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...]
/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/skia/src/core/
H A DSkValidatingReadBuffer.cpp231 SkFlattenable::Type baseType; local
232 if (!SkFlattenable::NameToType(cname, &baseType) || (baseType != type)) {
/external/skia/src/core/
H A DSkValidatingReadBuffer.cpp231 SkFlattenable::Type baseType; local
232 if (!SkFlattenable::NameToType(cname, &baseType) || (baseType != type)) {
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DSymbolTable.cpp221 TBasicType baseType = (type == EbtUInt) ? EbtInt : type;
229 PrecisionStackLevel::iterator it = precisionStack[level]->find(baseType);
/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/libxml2/
H A Dxmlschemas.c1092 xmlSchemaTypePtr baseType,
1801 ws = xmlSchemaGetWhiteSpaceFacetValue(type->baseType);
1836 type = type->baseType;
3009 * @baseType: the base type of type
3018 xmlSchemaTypePtr baseType,
3028 xmlSchemaFormatItemForReport(&strT, NULL, WXS_BASIC_CAST baseType, NULL),
8872 type->baseType = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYSIMPLETYPE);
9040 type->baseType = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYSIMPLETYPE);
11592 type->baseType = (xmlSchemaTypePtr)
12309 type->baseType
3015 xmlSchemaPIllegalFacetAtomicErr(xmlSchemaParserCtxtPtr ctxt, xmlParserErrors error, xmlSchemaTypePtr type, xmlSchemaTypePtr baseType, xmlSchemaFacetPtr facet) argument
14414 xmlSchemaTypePtr baseType = NULL; local
14800 xmlSchemaCheckCOSSTDerivedOK(xmlSchemaAbstractCtxtPtr actxt, xmlSchemaTypePtr type, xmlSchemaTypePtr baseType, int subset) argument
15152 xmlSchemaTypePtr baseType = type->baseType; local
16028 xmlSchemaCheckCOSCTDerivedOK(xmlSchemaAbstractCtxtPtr actxt, xmlSchemaTypePtr type, xmlSchemaTypePtr baseType, int set) argument
16099 xmlSchemaCheckCOSDerivedOK(xmlSchemaAbstractCtxtPtr actxt, xmlSchemaTypePtr type, xmlSchemaTypePtr baseType, int set) argument
18150 xmlSchemaTypePtr baseType = type->baseType; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Des_generator.py59 baseType = None
65 baseType = t
66 return (baseType, typeModifiers)
/external/mesa3d/src/mesa/main/
H A Des_generator.py59 baseType = None
65 baseType = t
66 return (baseType, typeModifiers)
/external/chromium_org/third_party/libxml/src/
H A Dxmlschemas.c1087 xmlSchemaTypePtr baseType,
1796 ws = xmlSchemaGetWhiteSpaceFacetValue(type->baseType);
1831 type = type->baseType;
2990 * @baseType: the base type of type
2999 xmlSchemaTypePtr baseType,
3009 xmlSchemaFormatItemForReport(&strT, NULL, WXS_BASIC_CAST baseType, NULL),
8853 type->baseType = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYSIMPLETYPE);
9021 type->baseType = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYSIMPLETYPE);
11573 type->baseType = (xmlSchemaTypePtr)
12290 type->baseType
2996 xmlSchemaPIllegalFacetAtomicErr(xmlSchemaParserCtxtPtr ctxt, xmlParserErrors error, xmlSchemaTypePtr type, xmlSchemaTypePtr baseType, xmlSchemaFacetPtr facet) argument
14386 xmlSchemaTypePtr baseType = NULL; local
14772 xmlSchemaCheckCOSSTDerivedOK(xmlSchemaAbstractCtxtPtr actxt, xmlSchemaTypePtr type, xmlSchemaTypePtr baseType, int subset) argument
15124 xmlSchemaTypePtr baseType = type->baseType; local
15999 xmlSchemaCheckCOSCTDerivedOK(xmlSchemaAbstractCtxtPtr actxt, xmlSchemaTypePtr type, xmlSchemaTypePtr baseType, int set) argument
16070 xmlSchemaCheckCOSDerivedOK(xmlSchemaAbstractCtxtPtr actxt, xmlSchemaTypePtr type, xmlSchemaTypePtr baseType, int set) argument
18121 xmlSchemaTypePtr baseType = type->baseType; local
[all...]
/external/emma/core/java12/com/vladium/jcd/lib/
H A DTypes.java703 baseType ();
709 void baseType () throws IOException method in class:Types.methodDescriptorCompiler
/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
/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/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...]
/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

Completed in 2199 milliseconds

123