Home
last modified time | relevance | path

Searched refs:baseType (Results 1 – 25 of 443) sorted by relevance

12345678910>>...18

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/impl/
DStdTypeResolverBuilder.java81 JavaType baseType, Collection<NamedType> subtypes) in buildTypeSerializer() argument
86 if (baseType.isPrimitive()) { in buildTypeSerializer()
88 if (!allowPrimitiveTypes(config, baseType)) { in buildTypeSerializer()
92 TypeIdResolver idRes = idResolver(config, baseType, subTypeValidator(config), in buildTypeSerializer()
118 JavaType baseType, Collection<NamedType> subtypes) in buildTypeDeserializer() argument
123 if (baseType.isPrimitive()) { in buildTypeDeserializer()
125 if (!allowPrimitiveTypes(config, baseType)) { in buildTypeDeserializer()
132 final PolymorphicTypeValidator subTypeValidator = verifyBaseTypeValidity(config, baseType); in buildTypeDeserializer()
134 … TypeIdResolver idRes = idResolver(config, baseType, subTypeValidator, subtypes, false, true); in buildTypeDeserializer()
136 JavaType defaultImpl = defineDefaultImpl(config, baseType); in buildTypeDeserializer()
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-model/com/github/javaparser/symbolsolver/model/typesystem/
DArrayType.java30 private Type baseType; field in ArrayType
32 public ArrayType(Type baseType) { in ArrayType() argument
33 this.baseType = baseType; in ArrayType()
47 if (!baseType.equals(that.baseType)) return false; in equals()
54 return baseType.hashCode(); in hashCode()
59 return "ArrayTypeUsage{" + baseType + "}"; in toString()
78 return baseType.describe() + "[]"; in describe()
82 return baseType; in getComponentType()
88 if (baseType.isPrimitive() && other.asArrayType().getComponentType().isPrimitive()) { in isAssignableBy()
89 return baseType.equals(other.asArrayType().getComponentType()); in isAssignableBy()
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/types/
DResolvedArrayType.java35 private ResolvedType baseType; field in ResolvedArrayType
37 public ResolvedArrayType(ResolvedType baseType) { in ResolvedArrayType() argument
38 this.baseType = baseType; in ResolvedArrayType()
52 if (!baseType.equals(that.baseType)) return false; in equals()
59 return baseType.hashCode(); in hashCode()
64 return "ResolvedArrayType{" + baseType + "}"; in toString()
83 return baseType.describe() + "[]"; in describe()
87 return baseType; in getComponentType()
93 if (baseType.isPrimitive() && other.asArrayType().getComponentType().isPrimitive()) { in isAssignableBy()
94 return baseType.equals(other.asArrayType().getComponentType()); in isAssignableBy()
[all …]
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DDatabindContext.java102 public abstract JsonFormat.Value getDefaultPropertyFormat(Class<?> baseType); in getDefaultPropertyFormat() argument
160 public abstract JavaType constructSpecializedType(JavaType baseType, Class<?> subclass); in constructSpecializedType() argument
171 public JavaType resolveSubType(JavaType baseType, String subClassName) in resolveSubType() argument
183 if (t.isTypeOrSubTypeOf(baseType.getRawClass())) { in resolveSubType()
193 throw invalidTypeIdException(baseType, subClassName, String.format( in resolveSubType()
198 if (baseType.isTypeOrSuperTypeOf(cls)) { in resolveSubType()
199 return getTypeFactory().constructSpecializedType(baseType, cls); in resolveSubType()
202 throw invalidTypeIdException(baseType, subClassName, "Not a subtype"); in resolveSubType()
211 public JavaType resolveAndValidateSubType(JavaType baseType, String subClass, in resolveAndValidateSubType() argument
218 return _resolveAndValidateGeneric(baseType, subClass, ptv, ltIndex); in resolveAndValidateSubType()
[all …]
/external/skia/src/sksl/ir/
DSkSLVarDeclarations.cpp112 &this->baseType(), in clone()
123 std::string result = this->var()->modifiers().description() + this->baseType().description() + in description()
141 const Type* baseType = type; in ErrorCheck() local
142 if (baseType->isArray()) { in ErrorCheck()
143 baseType = &baseType->componentType(); in ErrorCheck()
145 SkASSERT(!baseType->isArray()); in ErrorCheck()
147 if (baseType->matches(*context.fTypes.fInvalid)) { in ErrorCheck()
151 if (baseType->isVoid()) { in ErrorCheck()
156 if (baseType->componentType().isOpaque() && !baseType->componentType().isAtomic() && in ErrorCheck()
159 "variables of type '" + baseType->displayName() + "' must be global"); in ErrorCheck()
[all …]
DSkSLIndexExpression.cpp74 const Type& baseType = base->as<TypeReference>().value(); in Convert() local
75 SKSL_INT arraySize = baseType.convertArraySize(context, pos, std::move(index)); in Convert()
80 symbolTable.addArrayDimension(&baseType, arraySize)); in Convert()
83 const Type& baseType = base->type(); in Convert() local
84 if (!baseType.isArray() && !baseType.isMatrix() && !baseType.isVector()) { in Convert()
86 "expected array, but found '" + baseType.displayName() + "'"); in Convert()
110 const Type& baseType = base->type(); in Make() local
111 SkASSERT(baseType.isArray() || baseType.isMatrix() || baseType.isVector()); in Make()
118 if (baseType.isVector()) { in Make()
125 if (baseType.isArray() && !Analysis::HasSideEffects(*base)) { in Make()
[all …]
DSkSLPrefixExpression.cpp163 const Type& baseType = base->type(); in Convert() local
166 if (baseType.isArray() || !baseType.componentType().isNumber()) { in Convert()
168 "'+' cannot operate on '" + baseType.displayName() + "'"); in Convert()
174 if (baseType.isArray() || !baseType.componentType().isNumber()) { in Convert()
176 "'-' cannot operate on '" + baseType.displayName() + "'"); in Convert()
183 if (!baseType.isNumber()) { in Convert()
186 "' cannot operate on '" + baseType.displayName() + "'"); in Convert()
196 if (!baseType.isBoolean()) { in Convert()
199 "' cannot operate on '" + baseType.displayName() + "'"); in Convert()
212 if (baseType.isArray() || !baseType.componentType().isInteger()) { in Convert()
[all …]
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/
DSubtypeResolver.java72 AnnotatedMember property, JavaType baseType) { in collectAndResolveSubtypesByClass() argument
75 config.getAnnotationIntrospector(), baseType); in collectAndResolveSubtypesByClass()
90 AnnotatedClass baseType) { in collectAndResolveSubtypesByClass() argument
92 return collectAndResolveSubtypes(baseType, config, config.getAnnotationIntrospector()); in collectAndResolveSubtypesByClass()
108 AnnotatedMember property, JavaType baseType) { in collectAndResolveSubtypesByTypeId() argument
111 config.getAnnotationIntrospector(), baseType); in collectAndResolveSubtypesByTypeId()
126 AnnotatedClass baseType) { in collectAndResolveSubtypesByTypeId() argument
128 return collectAndResolveSubtypes(baseType, config, config.getAnnotationIntrospector()); in collectAndResolveSubtypesByTypeId()
145 MapperConfig<?> config, AnnotationIntrospector ai, JavaType baseType) { in collectAndResolveSubtypes() argument
146 return collectAndResolveSubtypesByClass(config, property, baseType); in collectAndResolveSubtypes()
[all …]
DDefaultBaseTypeLimitingValidator.java28 public Validity validateBaseType(MapperConfig<?> config, JavaType baseType) in validateBaseType() argument
31 if (isUnsafeBaseType(config, baseType)) { in validateBaseType()
41 JavaType baseType, String subClassName) { in validateSubClassName() argument
47 public Validity validateSubType(MapperConfig<?> config, JavaType baseType, in validateSubType() argument
50 return isSafeSubType(config, baseType, subType) in validateSubType()
75 protected boolean isUnsafeBaseType(MapperConfig<?> config, JavaType baseType) in isUnsafeBaseType() argument
77 return UnsafeBaseTypes.instance.isUnsafeBaseType(baseType.getRawClass()); in isUnsafeBaseType()
90 JavaType baseType, JavaType subType) in isSafeSubType() argument
DPolymorphicTypeValidator.java98 public abstract Validity validateBaseType(MapperConfig<?> config, JavaType baseType); in validateBaseType() argument
121 public abstract Validity validateSubClassName(MapperConfig<?> config, JavaType baseType, in validateSubClassName() argument
141 public abstract Validity validateSubType(MapperConfig<?> config, JavaType baseType, in validateSubType() argument
156 public Validity validateBaseType(MapperConfig<?> config, JavaType baseType) { in validateBaseType() argument
161 …public Validity validateSubClassName(MapperConfig<?> config, JavaType baseType, String subClassNam… in validateSubClassName() argument
167 public Validity validateSubType(MapperConfig<?> config, JavaType baseType, JavaType subType) in validateSubType() argument
/external/llvm/test/CodeGen/ARM/
Ddebug-info-blocks.ll142 !28 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 32, scope: !0, baseType: !29)
145 …W_TAG_member, name: "__isa", line: 609, size: 32, align: 32, file: !152, scope: !24, baseType: !32)
146 !32 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 32, align: 32, scope: !0, baseType: null)
147 …name: "__flags", line: 609, size: 32, align: 32, offset: 32, file: !152, scope: !24, baseType: !34)
149 …e: "__reserved", line: 609, size: 32, align: 32, offset: 64, file: !152, scope: !24, baseType: !34)
150 …me: "__FuncPtr", line: 609, size: 32, align: 32, offset: 96, file: !152, scope: !24, baseType: !32)
151 …"__descriptor", line: 609, size: 32, align: 32, offset: 128, file: !152, scope: !24, baseType: !38)
152 !38 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 32, align: 32, scope: !0, baseType: !39)
156 …AG_member, name: "reserved", line: 307, size: 32, align: 32, file: !153, scope: !40, baseType: !43)
158 …r, name: "Size", line: 307, size: 32, align: 32, offset: 32, file: !153, scope: !40, baseType: !43)
[all …]
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/type/
DTestJavaType.java88 JavaType baseType = tf.constructType(BaseType.class); in testSimpleClass() local
89 assertSame(BaseType.class, baseType.getRawClass()); in testSimpleClass()
90 assertTrue(baseType.hasRawClass(BaseType.class)); in testSimpleClass()
91 assertFalse(baseType.isTypeOrSubTypeOf(SubType.class)); in testSimpleClass()
93 assertFalse(baseType.isArrayType()); in testSimpleClass()
94 assertFalse(baseType.isContainerType()); in testSimpleClass()
95 assertFalse(baseType.isEnumType()); in testSimpleClass()
96 assertFalse(baseType.isInterface()); in testSimpleClass()
97 assertFalse(baseType.isPrimitive()); in testSimpleClass()
98 assertFalse(baseType.isReferenceType()); in testSimpleClass()
[all …]
/external/deqp/framework/randomshaders/
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) in VariableType() argument
187 : m_baseType (baseType) in VariableType()
193 DE_ASSERT(baseType != TYPE_ARRAY && baseType != TYPE_STRUCT); in VariableType()
196 inline VariableType::VariableType (Type baseType, const VariableType& elementType, int numElements) in VariableType() argument
197 : m_baseType (baseType) in VariableType()
203 DE_ASSERT(baseType == TYPE_ARRAY); in VariableType()
[all …]
/external/gson/extras/src/main/java/com/google/gson/typeadapters/
DRuntimeTypeAdapterFactory.java135 private final Class<?> baseType; field in RuntimeTypeAdapterFactory
143 Class<?> baseType, String typeFieldName, boolean maintainType) { in RuntimeTypeAdapterFactory() argument
144 if (typeFieldName == null || baseType == null) { in RuntimeTypeAdapterFactory()
147 this.baseType = baseType; in RuntimeTypeAdapterFactory()
158 …public static <T> RuntimeTypeAdapterFactory<T> of(Class<T> baseType, String typeFieldName, boolean… in of() argument
159 return new RuntimeTypeAdapterFactory<>(baseType, typeFieldName, maintainType); in of()
166 public static <T> RuntimeTypeAdapterFactory<T> of(Class<T> baseType, String typeFieldName) { in of() argument
167 return new RuntimeTypeAdapterFactory<>(baseType, typeFieldName, false); in of()
174 public static <T> RuntimeTypeAdapterFactory<T> of(Class<T> baseType) { in of() argument
175 return new RuntimeTypeAdapterFactory<>(baseType, "type", false); in of()
[all …]
/external/llvm/test/DebugInfo/X86/
Dearlydup-crash.ll54 !7 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 32, align: 32, file: !44, scope: !3, baseType: …
56 !9 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 32, align: 32, file: !44, scope: !3, baseType: …
57 !10 = !DIDerivedType(tag: DW_TAG_const_type, size: 8, align: 8, file: !44, scope: !3, baseType: !8)
58 !11 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 32, align: 32, file: !44, scope: !3, baseType:…
59 …DIDerivedType(tag: DW_TAG_typedef, name: "cpp_dir", line: 45, file: !41, scope: !13, baseType: !14)
63 … DW_TAG_member, name: "next", line: 572, size: 32, align: 32, file: !41, scope: !14, baseType: !17)
64 !17 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 32, align: 32, file: !44, scope: !3, baseType:…
65 …ber, name: "name", line: 575, size: 32, align: 32, offset: 32, file: !41, scope: !14, baseType: !7)
66 …ber, name: "len", line: 576, size: 32, align: 32, offset: 64, file: !41, scope: !14, baseType: !20)
68 …mber, name: "sysp", line: 580, size: 8, align: 8, offset: 96, file: !41, scope: !14, baseType: !22)
[all …]
Dblock-capture.ll74 !11 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 64, align: 64, baseType: null)
85 !25 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 64, baseType: !26)
88 …vedType(tag: DW_TAG_member, name: "__isa", size: 64, align: 64, file: !1, scope: !5, baseType: !11)
89 …W_TAG_member, name: "__flags", size: 32, align: 32, offset: 64, file: !1, scope: !5, baseType: !30)
91 …AG_member, name: "__reserved", size: 32, align: 32, offset: 96, file: !1, scope: !5, baseType: !30)
92 …AG_member, name: "__FuncPtr", size: 64, align: 64, offset: 128, file: !1, scope: !5, baseType: !33)
93 !33 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 64, align: 64, baseType: !34)
96 …ame: "__descriptor", line: 2, size: 64, align: 64, offset: 192, file: !1, scope: !5, baseType: !37)
97 !37 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 64, baseType: !38)
100 …Type(tag: DW_TAG_member, name: "reserved", size: 64, align: 64, file: !1, scope: !5, baseType: !41)
[all …]
Ddebug-info-packed-struct.ll159 !8 = !DIDerivedType(tag: DW_TAG_member, name: "l0_ofs0", scope: !6, file: !5, line: 16, baseType: !…
161 !10 = !DIDerivedType(tag: DW_TAG_member, name: "l0_ofs8", scope: !6, file: !5, line: 17, baseType: …
164 !13 = !DIDerivedType(tag: DW_TAG_member, name: "i", scope: !11, file: !5, line: 12, baseType: !14, …
166 !15 = !DIDerivedType(tag: DW_TAG_member, name: "l", scope: !11, file: !5, line: 13, baseType: !16, …
168 !17 = !DIDerivedType(tag: DW_TAG_member, name: "l0_ofs16", scope: !6, file: !5, line: 18, baseType:…
172 !21 = !DIDerivedType(tag: DW_TAG_member, name: "l1_ofs0", scope: !19, file: !5, line: 35, baseType:…
173 !22 = !DIDerivedType(tag: DW_TAG_member, name: "l1_ofs1", scope: !19, file: !5, line: 36, baseType:…
175 !24 = !DIDerivedType(tag: DW_TAG_member, name: "l1_ofs9", scope: !19, file: !5, line: 37, baseType:…
179 !28 = !DIDerivedType(tag: DW_TAG_member, name: "l2_ofs0", scope: !26, file: !5, line: 55, baseType:…
180 !29 = !DIDerivedType(tag: DW_TAG_member, name: "l2_ofs1", scope: !26, file: !5, line: 56, baseType:…
[all …]
/external/ow2-asm/asm-analysis/src/test/java/org/objectweb/asm/tree/analysis/
DSimpleVerifierTest.java80 Type baseType = Type.getObjectType("C"); in testIsAssignableFrom_subclassWithInterfaces() local
86 baseType, in testIsAssignableFrom_subclassWithInterfaces()
99 if (type == baseType) { in testIsAssignableFrom_subclassWithInterfaces()
112 assertTrue(simpleVerifier.isAssignableFrom(baseType, baseType)); in testIsAssignableFrom_subclassWithInterfaces()
113 assertTrue(simpleVerifier.isAssignableFrom(superType, baseType)); in testIsAssignableFrom_subclassWithInterfaces()
114 assertTrue(simpleVerifier.isAssignableFrom(interfaceType, baseType)); in testIsAssignableFrom_subclassWithInterfaces()
119 Type baseType = Type.getObjectType("C"); in testIsAssignableFrom_interface() local
131 assertTrue(simpleVerifier.isAssignableFrom(interfaceType, baseType)); in testIsAssignableFrom_interface()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/
DMapperConfig.java265 public final TypeResolverBuilder<?> getDefaultTyper(JavaType baseType) { in getDefaultTyper() argument
321 public JavaType constructSpecializedType(JavaType baseType, Class<?> subclass) { in constructSpecializedType() argument
323 return getTypeFactory().constructSpecializedType(baseType, subclass, true); in constructSpecializedType()
415 public abstract JsonInclude.Value getDefaultPropertyInclusion(Class<?> baseType); in getDefaultPropertyInclusion() argument
426 public JsonInclude.Value getDefaultPropertyInclusion(Class<?> baseType, in getDefaultPropertyInclusion() argument
429 JsonInclude.Value v = getConfigOverride(baseType).getInclude(); in getDefaultPropertyInclusion()
448 public abstract JsonInclude.Value getDefaultInclusion(Class<?> baseType, in getDefaultInclusion() argument
463 public JsonInclude.Value getDefaultInclusion(Class<?> baseType, in getDefaultInclusion() argument
466 JsonInclude.Value baseOverride = getConfigOverride(baseType).getInclude(); in getDefaultInclusion()
480 public abstract JsonFormat.Value getDefaultPropertyFormat(Class<?> baseType); in getDefaultPropertyFormat() argument
[all …]
/external/deqp/modules/gles31/functional/
Des31fShaderIntegerFunctionTests.cpp322 static std::string getIntegerFuncCaseName (glu::DataType baseType, glu::Precision precision, glu::S… in getIntegerFuncCaseName() argument
324 …return string(glu::getDataTypeName(baseType)) + getPrecisionPostfix(precision) + getShaderTypePost… in getIntegerFuncCaseName()
330 …UaddCarryCase (Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType… in UaddCarryCase() argument
331 …: IntegerFunctionCase(context, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "u… in UaddCarryCase()
333 m_spec.inputs.push_back(Symbol("x", glu::VarType(baseType, precision))); in UaddCarryCase()
334 m_spec.inputs.push_back(Symbol("y", glu::VarType(baseType, precision))); in UaddCarryCase()
335 m_spec.outputs.push_back(Symbol("sum", glu::VarType(baseType, precision))); in UaddCarryCase()
336 m_spec.outputs.push_back(Symbol("carry", glu::VarType(baseType, glu::PRECISION_LOWP))); in UaddCarryCase()
426 …UsubBorrowCase (Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderTyp… in UsubBorrowCase() argument
427 …: IntegerFunctionCase(context, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "u… in UsubBorrowCase()
[all …]
Des31fShaderCommonFunctionTests.cpp452 static std::string getCommonFuncCaseName (glu::DataType baseType, glu::Precision precision, glu::Sh… in getCommonFuncCaseName() argument
454 …return string(glu::getDataTypeName(baseType)) + getPrecisionPostfix(precision) + getShaderTypePost… in getCommonFuncCaseName()
460 …AbsCase (Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shade… in AbsCase() argument
461 …: CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "abs… in AbsCase()
463 m_spec.inputs.push_back(Symbol("in0", glu::VarType(baseType, precision))); in AbsCase()
464 m_spec.outputs.push_back(Symbol("out0", glu::VarType(baseType, precision))); in AbsCase()
542 …SignCase (Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shad… in SignCase() argument
543 …: CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "sig… in SignCase()
545 m_spec.inputs.push_back(Symbol("in0", glu::VarType(baseType, precision))); in SignCase()
546 m_spec.outputs.push_back(Symbol("out0", glu::VarType(baseType, precision))); in SignCase()
[all …]
/external/gson/gson/src/test/java/com/google/gson/functional/
DRuntimeTypeAdapterFactoryFunctionalTest.java90 private final Class<?> baseType; field in RuntimeTypeAdapterFactoryFunctionalTest.RuntimeTypeAdapterFactory
95 protected RuntimeTypeAdapterFactory(Class<?> baseType, String typeFieldName) { in RuntimeTypeAdapterFactory() argument
96 if (typeFieldName == null || baseType == null) { in RuntimeTypeAdapterFactory()
99 this.baseType = baseType; in RuntimeTypeAdapterFactory()
107 public static <T> RuntimeTypeAdapterFactory<T> of(Class<T> baseType, String typeFieldName) { in of() argument
108 return new RuntimeTypeAdapterFactory<>(baseType, typeFieldName); in of()
115 public static <T> RuntimeTypeAdapterFactory<T> of(Class<T> baseType) { in of() argument
116 return new RuntimeTypeAdapterFactory<>(baseType, "type"); in of()
150 if (type.getRawType() != baseType) { in create()
167 throw new JsonParseException("cannot deserialize " + baseType in create()
[all …]
/external/llvm/test/DebugInfo/COFF/
Dtypes-ptr-to-member.ll207 !5 = !DIDerivedType(tag: DW_TAG_ptr_to_member_type, baseType: !6, size: 32, flags: DIFlagSingleInhe…
211 !9 = !DIDerivedType(tag: DW_TAG_member, name: "a", scope: !7, file: !1, line: 1, baseType: !6, size…
213 !11 = !DIDerivedType(tag: DW_TAG_ptr_to_member_type, baseType: !6, size: 32, flags: DIFlagMultipleI…
216 !14 = !DIDerivedType(tag: DW_TAG_inheritance, scope: !12, baseType: !7)
217 !15 = !DIDerivedType(tag: DW_TAG_inheritance, scope: !12, baseType: !16, offset: 32)
220 !18 = !DIDerivedType(tag: DW_TAG_member, name: "b", scope: !16, file: !1, line: 2, baseType: !6, si…
221 !19 = !DIDerivedType(tag: DW_TAG_member, name: "c", scope: !12, file: !1, line: 3, baseType: !6, si…
223 !21 = !DIDerivedType(tag: DW_TAG_ptr_to_member_type, baseType: !6, size: 64, flags: DIFlagVirtualIn…
226 !24 = !DIDerivedType(tag: DW_TAG_ptr_to_member_type, baseType: !6, size: 96, extraData: !25)
229 !27 = !DIDerivedType(tag: DW_TAG_ptr_to_member_type, baseType: !28, size: 64, flags: DIFlagSingleIn…
[all …]
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderIntegerFunctionTests.cpp196 static std::string getIntegerFuncCaseName (glu::DataType baseType, glu::Precision precision, glu::S… in getIntegerFuncCaseName() argument
198 …return string(glu::getDataTypeName(baseType)) + getPrecisionPostfix(precision) + getShaderTypePost… in getIntegerFuncCaseName()
496 …UaddCarryCase (tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::S… in UaddCarryCase() argument
497 …: IntegerFunctionCase (testCtx, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "… in UaddCarryCase()
499 m_spec.inputs.push_back(Symbol("x", glu::VarType(baseType, precision))); in UaddCarryCase()
500 m_spec.inputs.push_back(Symbol("y", glu::VarType(baseType, precision))); in UaddCarryCase()
501 m_spec.outputs.push_back(Symbol("sum", glu::VarType(baseType, precision))); in UaddCarryCase()
502 m_spec.outputs.push_back(Symbol("carry", glu::VarType(baseType, glu::PRECISION_LOWP))); in UaddCarryCase()
604 …UsubBorrowCase (tcu::TestContext& testCtx, glu::DataType baseType, glu::Precision precision, glu::… in UsubBorrowCase() argument
605 …: IntegerFunctionCase (testCtx, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "… in UsubBorrowCase()
[all …]
/external/deqp/modules/gles3/functional/
Des3fShaderCommonFunctionTests.cpp377 static std::string getCommonFuncCaseName (glu::DataType baseType, glu::Precision precision, glu::Sh… in getCommonFuncCaseName() argument
379 …return string(glu::getDataTypeName(baseType)) + getPrecisionPostfix(precision) + getShaderTypePost… in getCommonFuncCaseName()
385 …AbsCase (Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shade… in AbsCase() argument
386 …: CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "abs… in AbsCase()
388 m_spec.inputs.push_back(Symbol("in0", glu::VarType(baseType, precision))); in AbsCase()
389 m_spec.outputs.push_back(Symbol("out0", glu::VarType(baseType, precision))); in AbsCase()
467 …SignCase (Context& context, glu::DataType baseType, glu::Precision precision, glu::ShaderType shad… in SignCase() argument
468 …: CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "sig… in SignCase()
470 m_spec.inputs.push_back(Symbol("in0", glu::VarType(baseType, precision))); in SignCase()
471 m_spec.outputs.push_back(Symbol("out0", glu::VarType(baseType, precision))); in SignCase()
[all …]

12345678910>>...18