/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/impl/ |
D | StdTypeResolverBuilder.java | 81 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/ |
D | ArrayType.java | 30 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/ |
D | ResolvedArrayType.java | 35 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/ |
D | DatabindContext.java | 102 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/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/ |
D | SubtypeResolver.java | 72 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 …]
|
D | DefaultBaseTypeLimitingValidator.java | 28 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
|
D | PolymorphicTypeValidator.java | 98 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/skia/src/sksl/ir/ |
D | SkSLIndexExpression.cpp | 39 const Type& baseType = base->type(); in Convert() local 40 if (!baseType.isArray() && !baseType.isMatrix() && !baseType.isVector()) { in Convert() 42 "expected array, but found '" + baseType.displayName() + "'"); in Convert() 55 const int upperBound = (baseType.isArray() && baseType.columns() == Type::kUnsizedArray) in Convert() 57 : baseType.columns(); in Convert() 60 "for '" + baseType.displayName() + "'"); in Convert() 70 const Type& baseType = base->type(); in Make() local 71 SkASSERT(baseType.isArray() || baseType.isMatrix() || baseType.isVector()); in Make() 78 if (indexExpr->is<IntLiteral>() && baseType.isVector()) { in Make()
|
D | SkSLVarDeclarations.cpp | 17 &this->baseType(), in clone() 23 String result = this->var().modifiers().description() + this->baseType().description() + " " + in description() 80 const Type* baseType = &var->type(); in Convert() local 82 if (baseType->isArray()) { in Convert() 83 arraySize = baseType->columns(); in Convert() 84 baseType = &baseType->componentType(); in Convert() 86 return VarDeclaration::Make(context, var, baseType, arraySize, std::move(value)); in Convert() 91 const Type* baseType, in Make() argument 94 SkASSERT(!baseType->isArray()); in Make() 111 auto result = std::make_unique<VarDeclaration>(var, baseType, arraySize, std::move(value)); in Make()
|
D | SkSLPrefixExpression.cpp | 134 const Type& baseType = base->type(); in Convert() local 137 if (!baseType.componentType().isNumber()) { in Convert() 139 "'+' cannot operate on '" + baseType.displayName() + "'"); in Convert() 145 if (!baseType.componentType().isNumber()) { in Convert() 147 "'-' cannot operate on '" + baseType.displayName() + "'"); in Convert() 154 if (!baseType.isNumber()) { in Convert() 157 baseType.displayName() + "'"); in Convert() 167 if (!baseType.isBoolean()) { in Convert() 170 baseType.displayName() + "'"); in Convert() 183 if (!baseType.isInteger()) { in Convert() [all …]
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/type/ |
D | TestJavaType.java | 88 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/llvm-project/llvm/test/CodeGen/ARM/ |
D | debug-info-blocks.ll | 135 !28 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 32, scope: !0, baseType: !29) 138 …W_TAG_member, name: "__isa", line: 609, size: 32, align: 32, file: !152, scope: !24, baseType: !32) 139 !32 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 32, align: 32, scope: !0, baseType: null) 140 …name: "__flags", line: 609, size: 32, align: 32, offset: 32, file: !152, scope: !24, baseType: !34) 142 …e: "__reserved", line: 609, size: 32, align: 32, offset: 64, file: !152, scope: !24, baseType: !34) 143 …me: "__FuncPtr", line: 609, size: 32, align: 32, offset: 96, file: !152, scope: !24, baseType: !32) 144 …"__descriptor", line: 609, size: 32, align: 32, offset: 128, file: !152, scope: !24, baseType: !38) 145 !38 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 32, align: 32, scope: !0, baseType: !39) 149 …AG_member, name: "reserved", line: 307, size: 32, align: 32, file: !153, scope: !40, baseType: !43) 151 …r, name: "Size", line: 307, size: 32, align: 32, offset: 32, file: !153, scope: !40, baseType: !43) [all …]
|
/external/llvm/test/CodeGen/ARM/ |
D | debug-info-blocks.ll | 142 !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/deqp/framework/randomshaders/ |
D | rsgVariableType.hpp | 132 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/llvm/test/DebugInfo/X86/ |
D | earlydup-crash.ll | 54 !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 …]
|
D | block-capture.ll | 74 !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 …]
|
D | debug-info-packed-struct.ll | 159 !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/llvm-project/llvm/test/DebugInfo/X86/ |
D | earlydup-crash.ll | 54 !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 …]
|
D | block-capture.ll | 73 !11 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 64, align: 64, baseType: null) 84 !25 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 64, baseType: !26) 87 …vedType(tag: DW_TAG_member, name: "__isa", size: 64, align: 64, file: !1, scope: !5, baseType: !11) 88 …W_TAG_member, name: "__flags", size: 32, align: 32, offset: 64, file: !1, scope: !5, baseType: !30) 90 …AG_member, name: "__reserved", size: 32, align: 32, offset: 96, file: !1, scope: !5, baseType: !30) 91 …AG_member, name: "__FuncPtr", size: 64, align: 64, offset: 128, file: !1, scope: !5, baseType: !33) 92 !33 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 64, align: 64, baseType: !34) 95 …ame: "__descriptor", line: 2, size: 64, align: 64, offset: 192, file: !1, scope: !5, baseType: !37) 96 !37 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 64, baseType: !38) 99 …Type(tag: DW_TAG_member, name: "reserved", size: 64, align: 64, file: !1, scope: !5, baseType: !41) [all …]
|
D | basic-block-sections-debug-loc.ll | 43 !3 = !DIDerivedType(tag: DW_TAG_typedef, name: "int32_t", file: !4, line: 38, baseType: !5) 46 !6 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !7, size: 64) 47 !7 = !DIDerivedType(tag: DW_TAG_const_type, baseType: !8) 49 !9 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !8, size: 64) 50 !10 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 64) 51 !11 = !DIDerivedType(tag: DW_TAG_typedef, name: "uint32_t", file: !4, line: 51, baseType: !12) 53 !13 = !DIDerivedType(tag: DW_TAG_typedef, name: "UChar", file: !14, line: 372, baseType: !15) 56 !16 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !3, size: 64) 57 !17 = !DIDerivedType(tag: DW_TAG_typedef, name: "UBool", file: !14, line: 261, baseType: !18) 58 !18 = !DIDerivedType(tag: DW_TAG_typedef, name: "int8_t", file: !4, line: 36, baseType: !19) [all …]
|
D | debug-info-packed-struct.ll | 156 !11 = !DIDerivedType(tag: DW_TAG_member, name: "l1_ofs0", scope: !9, file: !8, line: 35, baseType: … 158 !13 = !DIDerivedType(tag: DW_TAG_member, name: "l1_ofs1", scope: !9, file: !8, line: 36, baseType: … 160 !15 = !DIDerivedType(tag: DW_TAG_member, name: "l1_ofs9", scope: !9, file: !8, line: 37, baseType: … 166 !21 = !DIDerivedType(tag: DW_TAG_member, name: "l2_ofs0", scope: !19, file: !8, line: 55, baseType:… 167 !22 = !DIDerivedType(tag: DW_TAG_member, name: "l2_ofs1", scope: !19, file: !8, line: 56, baseType:… 170 !25 = !DIDerivedType(tag: DW_TAG_member, name: "i", scope: !23, file: !8, line: 51, baseType: !16, … 171 !26 = !DIDerivedType(tag: DW_TAG_member, name: "l", scope: !23, file: !8, line: 52, baseType: !27, … 173 !28 = !DIDerivedType(tag: DW_TAG_member, name: "l2_ofs9", scope: !19, file: !8, line: 57, baseType:… 178 !33 = !DIDerivedType(tag: DW_TAG_member, name: "l3_ofs0", scope: !31, file: !8, line: 77, baseType:… 179 !34 = !DIDerivedType(tag: DW_TAG_member, name: "l3_ofs4", scope: !31, file: !8, line: 78, baseType:… [all …]
|
/external/llvm-project/llvm/test/DebugInfo/COFF/ |
D | synthetic.ll | 22 !9 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !10, size: 64) 25 !12 = !DIDerivedType(tag: DW_TAG_member, name: "__isa", scope: !1, file: !1, baseType: !13, size: 6… 26 !13 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 64) 27 !14 = !DIDerivedType(tag: DW_TAG_member, name: "__flags", scope: !1, file: !1, baseType: !15, size:… 29 !16 = !DIDerivedType(tag: DW_TAG_member, name: "__reserved", scope: !1, file: !1, baseType: !15, si… 30 !17 = !DIDerivedType(tag: DW_TAG_member, name: "__FuncPtr", scope: !1, file: !1, baseType: !18, siz… 31 !18 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !19, size: 64) 34 !21 = !DIDerivedType(tag: DW_TAG_member, name: "__descriptor", scope: !1, baseType: !22, size: 64, … 35 !22 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !23, size: 64) 38 !25 = !DIDerivedType(tag: DW_TAG_member, name: "reserved", scope: !1, file: !1, baseType: !26, size… [all …]
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/ |
D | MapperConfig.java | 265 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/ |
D | es31fShaderIntegerFunctionTests.cpp | 322 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 …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-model/ |
D | com_github_javaparser_symbolsolver_model_typesystem_ArrayType.txt | 3 Line 47) baseType.equals(that.baseType) ==> java.lang.Object.equals(java.lang.Object) 4 Line 54) baseType.hashCode() ==> java.lang.Object.hashCode() 5 …Line 78) baseType.describe() ==> com.github.javaparser.symbolsolver.model.typesystem.Type.describe… 7 …Line 88) baseType.isPrimitive() ==> com.github.javaparser.symbolsolver.model.typesystem.Type.isPri… 11 …Line 89) baseType.equals(other.asArrayType().getComponentType()) ==> java.lang.Object.equals(java.… 14 …Line 91) baseType.isAssignableBy(other.asArrayType().getComponentType()) ==> com.github.javaparser… 18 …Line 100) baseType.replaceTypeVariables(tpToReplace, replaced, inferredTypes) ==> com.github.javap…
|