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

123

/external/pdfium/xfa/src/fgas/include/
H A Dfx_utl.h15 template <class baseType>
17 template <class baseType>
21 template <class baseType>
23 template <class baseType>
26 template <class baseType>
29 template <class baseType>
31 template <class baseType>
33 template <class baseType>
35 template <class baseType>
66 template <class baseType>
[all...]
H A Dfx_alg.h24 template <class baseType>
27 int32_t Lookup(const baseType& find, const baseType* pArray, int32_t iCount) {
35 const baseType& v = pArray[iMid];
/external/pdfium/core/include/fxcrt/
H A Dfx_coordinates.h12 template <class baseType>
14 template <class baseType>
16 template <class baseType>
18 template <class baseType>
20 template <class baseType>
22 template <class baseType>
24 template <class baseType>
27 template <class baseType>
30 typedef CFX_PSVTemplate<baseType> FXT_PSV;
31 typedef CFX_PSVTemplate<baseType> FXT_POIN
[all...]
H A Dfx_ext.h101 template <class baseType>
104 void ShellSort(baseType* pArray, int32_t iCount) {
107 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/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
H A DSmaliArrayTypeElement.java58 PsiTypeElement baseType = findChildByClass(PsiTypeElement.class);
59 assert baseType != null;
61 PsiArrayType arrayType = new PsiArrayType(baseType.getType());
/external/deqp/modules/gles31/functional/
H A Des31fShaderCommonFunctionTests.cpp492 static std::string getCommonFuncCaseName (glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
494 return string(glu::getDataTypeName(baseType)) + getPrecisionPostfix(precision) + getShaderTypePostfix(shaderType);
500 AbsCase (Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
501 : CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "abs", shaderType)
503 m_spec.inputs.push_back(Symbol("in0", glu::VarType(baseType, precision)));
504 m_spec.outputs.push_back(Symbol("out0", glu::VarType(baseType, precision)));
582 SignCase (Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
583 : CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "sign", shaderType)
585 m_spec.inputs.push_back(Symbol("in0", glu::VarType(baseType, precision)));
586 m_spec.outputs.push_back(Symbol("out0", glu::VarType(baseType, precisio
688 RoundEvenCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
799 ModfCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
865 IsnanCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
948 IsinfCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1032 FloatBitsToUintIntCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType, bool outIsSigned) argument
1092 FloatBitsToIntCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1101 FloatBitsToUintCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1110 BitsToFloatCase(Context& context, glu::DataType baseType, glu::ShaderType shaderType) argument
1160 FloorCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1256 TruncCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1364 RoundCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1492 CeilCase(Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1597 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/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderIntegerFunctionTests.cpp224 static std::string getIntegerFuncCaseName (glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
226 return string(glu::getDataTypeName(baseType)) + getPrecisionPostfix(precision) + getShaderTypePostfix(shaderType);
557 UaddCarryCase (tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
558 : IntegerFunctionCase (testCtx, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "uaddCarry", shaderType)
560 m_spec.inputs.push_back(Symbol("x", glu::VarType(baseType, precision)));
561 m_spec.inputs.push_back(Symbol("y", glu::VarType(baseType, precision)));
562 m_spec.outputs.push_back(Symbol("sum", glu::VarType(baseType, precision)));
563 m_spec.outputs.push_back(Symbol("carry", glu::VarType(baseType, glu::PRECISION_LOWP)));
666 UsubBorrowCase (tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
667 : IntegerFunctionCase (testCtx, getIntegerFuncCaseName(baseType, precisio
771 UmulExtendedCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
877 ImulExtendedCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
955 BitfieldExtractCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1037 BitfieldInsertCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1101 BitfieldReverseCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1163 BitCountCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1228 FindLSBCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1293 findMSBCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
[all...]
H A DvktShaderCommonFunctionTests.cpp369 static std::string getCommonFuncCaseName (glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
371 return string(glu::getDataTypeName(baseType)) + getPrecisionPostfix(precision) + getShaderTypePostfix(shaderType);
668 AbsCase (tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
669 : CommonFunctionCase (testCtx, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "abs", shaderType)
671 m_spec.inputs.push_back(Symbol("in0", glu::VarType(baseType, precision)));
672 m_spec.outputs.push_back(Symbol("out0", glu::VarType(baseType, precision)));
778 SignCase (tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
779 : CommonFunctionCase (testCtx, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "sign", shaderType)
781 m_spec.inputs.push_back(Symbol("in0", glu::VarType(baseType, precision)));
782 m_spec.outputs.push_back(Symbol("out0", glu::VarType(baseType, precisio
915 RoundEvenCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
995 ModfCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1089 IsnanCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1188 IsinfCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1264 FloatBitsToUintIntCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType, bool outIsSigned) argument
1295 FloatBitsToIntCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1314 FloatBitsToUintCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1366 BitsToFloatCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::ShaderType shaderType) argument
1481 FloorCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1604 TruncCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1747 RoundCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1867 CeilCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1994 FractCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
2097 FrexpCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
2248 LdexpCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
2405 FmaCase(tcu::TestContext& testCtx, 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/pdfium/core/src/fxcrt/
H A Dfx_arabic.cpp819 template <class baseType>
822 void FX_BidiReverseString(CFX_ArrayTemplate<baseType>& chars,
827 baseType *pStart, *pEnd;
837 void FX_BidiSetDeferredRun(CFX_ArrayTemplate<baseType>& chars,
844 baseType* pTC;
858 void FX_BidiClassify(CFX_ArrayTemplate<baseType>& chars,
862 baseType* pTC;
879 void FX_BidiResolveExplicit(CFX_ArrayTemplate<baseType>& chars,
887 baseType* pTC;
893 void FX_BidiResolveWeak(CFX_ArrayTemplate<baseType>
[all...]
/external/skia/src/core/
H A DSkValidatingReadBuffer.cpp234 SkFlattenable::Type baseType; local
235 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/libxml2/
H A Dxmlschemas.c1092 xmlSchemaTypePtr baseType,
1801 ws = xmlSchemaGetWhiteSpaceFacetValue(type->baseType);
1836 type = type->baseType;
3011 * @baseType: the base type of type
3020 xmlSchemaTypePtr baseType,
3030 xmlSchemaFormatItemForReport(&strT, NULL, WXS_BASIC_CAST baseType, NULL),
8874 type->baseType = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYSIMPLETYPE);
9042 type->baseType = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYSIMPLETYPE);
11594 type->baseType = (xmlSchemaTypePtr)
12311 type->baseType
3017 xmlSchemaPIllegalFacetAtomicErr(xmlSchemaParserCtxtPtr ctxt, xmlParserErrors error, xmlSchemaTypePtr type, xmlSchemaTypePtr baseType, xmlSchemaFacetPtr facet) argument
14416 xmlSchemaTypePtr baseType = NULL; local
14802 xmlSchemaCheckCOSSTDerivedOK(xmlSchemaAbstractCtxtPtr actxt, xmlSchemaTypePtr type, xmlSchemaTypePtr baseType, int subset) argument
15154 xmlSchemaTypePtr baseType = type->baseType; local
16030 xmlSchemaCheckCOSCTDerivedOK(xmlSchemaAbstractCtxtPtr actxt, xmlSchemaTypePtr type, xmlSchemaTypePtr baseType, int set) argument
16101 xmlSchemaCheckCOSDerivedOK(xmlSchemaAbstractCtxtPtr actxt, xmlSchemaTypePtr type, xmlSchemaTypePtr baseType, int set) argument
18152 xmlSchemaTypePtr baseType = type->baseType; local
[all...]
/external/mesa3d/src/mesa/main/
H A Des_generator.py59 baseType = None
65 baseType = t
66 return (baseType, typeModifiers)
/external/emma/core/java12/com/vladium/jcd/lib/
H A DTypes.java703 baseType ();
709 void baseType () throws IOException method in class:Types.methodDescriptorCompiler
/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/clang/lib/CodeGen/
H A DCGExprConstant.cpp1480 llvm::Type *baseType,
1510 llvm::Type *baseType = structure->getElementType(fieldIndex);
1511 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base);
1549 llvm::Type *baseType = structure->getElementType(fieldIndex);
1550 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base);
1565 llvm::Type *baseType,
1571 return llvm::Constant::getNullValue(baseType);
/external/autotest/frontend/client/src/autotest/common/spreadsheet/
H A DSpreadsheet.java76 public static Header fromBaseType(List<String> baseType) { argument
77 return new HeaderImpl(baseType);

Completed in 3460 milliseconds

123