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

123

/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/object/
H A DIsCompatibleType.java30 * Creates a matcher of {@link Class} that matches when the specified baseType is
35 * @param baseType
38 public static <T> Matcher<Class<?>> typeCompatibleWith(Class<T> baseType) { argument
39 return new IsCompatibleType<T>(baseType);
/external/skia/src/sksl/ir/
H A DSkSLVarDeclarations.h55 VarDeclarations(Position position, const Type* baseType, argument
58 , fBaseType(*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.cpp689 VariableType::Type baseType = type.getBaseType(); local
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;
/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.cpp271 SkFlattenable::Type baseType; local
272 if (!SkFlattenable::NameToType(cname, &baseType) || (baseType != type)) {
/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);
/external/clang/lib/AST/
H A DType.cpp631 QualType baseType(splitBaseType.Ty, 0);
634 baseType = baseObj->stripObjCKindOfTypeAndQuals(ctx);
637 return ctx.getObjCObjectType(ctx.getQualifiedType(baseType,
981 QualType baseType = recurse(T->getBaseType()); local
982 if (baseType.isNull())
999 if (baseType.getAsOpaquePtr() == T->getBaseType().getAsOpaquePtr() &&
1003 return Ctx.getObjCObjectType(baseType, typeArgs,
1263 QualType baseType
1266 ctx.getObjCObjectType(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/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);
545 UaddCarryCase (tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
546 : IntegerFunctionCase (testCtx, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "uaddCarry", shaderType)
548 m_spec.inputs.push_back(Symbol("x", glu::VarType(baseType, precision)));
549 m_spec.inputs.push_back(Symbol("y", glu::VarType(baseType, precision)));
550 m_spec.outputs.push_back(Symbol("sum", glu::VarType(baseType, precision)));
551 m_spec.outputs.push_back(Symbol("carry", glu::VarType(baseType, glu::PRECISION_LOWP)));
653 UsubBorrowCase (tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
654 : IntegerFunctionCase (testCtx, getIntegerFuncCaseName(baseType, precisio
757 UmulExtendedCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
862 ImulExtendedCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
939 BitfieldExtractCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1020 BitfieldInsertCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1083 BitfieldReverseCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1144 BitCountCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1208 FindLSBCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1272 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);
657 AbsCase (tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
658 : CommonFunctionCase (testCtx, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "abs", shaderType)
660 m_spec.inputs.push_back(Symbol("in0", glu::VarType(baseType, precision)));
661 m_spec.outputs.push_back(Symbol("out0", glu::VarType(baseType, precision)));
766 SignCase (tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
767 : CommonFunctionCase (testCtx, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "sign", shaderType)
769 m_spec.inputs.push_back(Symbol("in0", glu::VarType(baseType, precision)));
770 m_spec.outputs.push_back(Symbol("out0", glu::VarType(baseType, precisio
902 RoundEvenCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
981 ModfCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1074 IsnanCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1172 IsinfCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1247 FloatBitsToUintIntCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType, bool outIsSigned) argument
1277 FloatBitsToIntCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1296 FloatBitsToUintCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1348 BitsToFloatCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::ShaderType shaderType) argument
1462 FloorCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1584 TruncCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1726 RoundCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1845 CeilCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
1971 FractCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
2073 FrexpCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
2223 LdexpCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
2374 FmaCase(tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::ShaderType shaderType) argument
[all...]
/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.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...]
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/
H A DMatchers.java1484 * Creates a matcher of {@link Class} that matches when the specified baseType is
1489 * @param baseType
1492 public static <T> org.hamcrest.Matcher<java.lang.Class<?>> typeCompatibleWith(java.lang.Class<T> baseType) { argument
1493 return org.hamcrest.object.IsCompatibleType.<T>typeCompatibleWith(baseType);
/external/clang/lib/CodeGen/
H A DCodeGenFunction.cpp1390 /// \param baseType the inner-most element type of the array
1394 static void emitNonZeroVLAInit(CodeGenFunction &CGF, QualType baseType, argument
1399 CharUnits baseSize = CGF.getContext().getTypeSizeInChars(baseType);
1544 QualType &baseType,
1562 baseType = elementType;
1612 llvm::Type *baseType = ConvertType(eltType); local
1613 addr = Builder.CreateElementBitCast(addr, baseType, "array.begin");
1621 baseType = eltType;
1543 emitArrayLength(const ArrayType *origArrayType, QualType &baseType, Address &addr) argument
/external/clang/lib/Sema/
H A DSemaExprMember.cpp291 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK, argument
299 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
372 << 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/skia/src/sksl/
H A DSkSLIRGenerator.cpp214 const Type* baseType = this->convertType(*decl.fType); local
215 if (!baseType) {
219 const Type* type = baseType;
273 baseType,
H A DSkSLSPIRVCodeGenerator.cpp1711 const Type& baseType, const Type& swizzleType)
1715 , fBaseType(baseType)
1710 SwizzleLValue(SPIRVCodeGenerator& gen, SpvId vecPointer, const std::vector<int>& components, const Type& baseType, const Type& swizzleType) argument
/external/clang/lib/Parse/
H A DParseObjc.cpp1616 ParsedType baseType,
1656 QualType BaseT = Actions.GetTypeFromParser(baseType);
1680 baseType, local
1795 ParsedType baseType,
1807 parseObjCTypeArgsOrProtocolQualifiers(baseType,
1615 parseObjCTypeArgsOrProtocolQualifiers( ParsedType baseType, SourceLocation &typeArgsLAngleLoc, SmallVectorImpl<ParsedType> &typeArgs, SourceLocation &typeArgsRAngleLoc, SourceLocation &protocolLAngleLoc, SmallVectorImpl<Decl *> &protocols, SmallVectorImpl<SourceLocation> &protocolLocs, SourceLocation &protocolRAngleLoc, bool consumeLastToken, bool warnOnIncompleteProtocols) argument
1794 parseObjCTypeArgsAndProtocolQualifiers( ParsedType baseType, SourceLocation &typeArgsLAngleLoc, SmallVectorImpl<ParsedType> &typeArgs, SourceLocation &typeArgsRAngleLoc, SourceLocation &protocolLAngleLoc, SmallVectorImpl<Decl *> &protocols, SmallVectorImpl<SourceLocation> &protocolLocs, SourceLocation &protocolRAngleLoc, bool consumeLastToken) argument
/external/libxml2/include/libxml/
H A DschemasInternals.h620 xmlSchemaTypePtr baseType; /* The base type component */ member in struct:_xmlSchemaType

Completed in 617 milliseconds

123