Home
last modified time | relevance | path

Searched defs:sourceType (Results 1 – 25 of 1682) sorted by relevance

12345678910>>...68

/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.core/src/main/java/org/springframework/core/convert/support/
H A DGenericConversionService.java101 public void addConverter(Class<?> sourceType, Class<?> targetType, Converter<?, ?> converter) { in addConverter()
123 public void removeConvertible(Class<?> sourceType, Class<?> targetType) { in removeConvertible()
131 public boolean canConvert(Class<?> sourceType, Class<?> targetType) { in canConvert()
138 public boolean canConvert(TypeDescriptor sourceType, TypeDescriptor targetType) { in canConvert()
157 public Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType) { in convert()
222 protected Object convertNullSource(TypeDescriptor sourceType, TypeDescriptor targetType) { in convertNullSource()
279 private MatchableConverters getMatchableConverters(Class<?> sourceType, Class<?> targetType) { in getMatchableConverters()
293 private Map<Class<?>, MatchableConverters> getSourceConverterMap(Class<?> sourceType) { in getSourceConverterMap()
513 public Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType) { in convert()
615 private final TypeDescriptor sourceType; field in GenericConversionService.ConverterCacheKey
[all …]
H A DMapToMapConverter.java53 public boolean matches(TypeDescriptor sourceType, TypeDescriptor targetType) { in matches()
58 public Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType) { in convert()
90 private boolean canConvertKey(TypeDescriptor sourceType, TypeDescriptor targetType) { in canConvertKey()
95 private boolean canConvertValue(TypeDescriptor sourceType, TypeDescriptor targetType) { in canConvertValue()
100 private Object convertKey(Object sourceKey, TypeDescriptor sourceType, TypeDescriptor targetType) { in convertKey()
107 …private Object convertValue(Object sourceValue, TypeDescriptor sourceType, TypeDescriptor targetTy… in convertValue()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.core/src/test/java/org/springframework/core/convert/support/
H A DCollectionToCollectionConverterTests.java61 TypeDescriptor sourceType = TypeDescriptor.forObject(list); in scalarList() local
85 TypeDescriptor sourceType = TypeDescriptor.forObject(list); in emptyListToList() local
98 TypeDescriptor sourceType = TypeDescriptor.forObject(list); in emptyListToListDifferentTargetType() local
140 TypeDescriptor sourceType = TypeDescriptor.forObject(list); in objectToCollection() local
162 TypeDescriptor sourceType = TypeDescriptor.forObject(list); in stringToCollection() local
178 TypeDescriptor sourceType = TypeDescriptor.forObject(resources); in differentImpls() local
189 TypeDescriptor sourceType = TypeDescriptor.forObject(resources); in mixedInNulls() local
198 TypeDescriptor sourceType = TypeDescriptor.forObject(resources); in allNulls() local
207 TypeDescriptor sourceType = new TypeDescriptor(getClass().getField("strings")); in elementTypesNotConvertible() local
218 TypeDescriptor sourceType = TypeDescriptor.forObject(resources); in nothingInCommon() local
H A DMapToMapConverterTests.java49 TypeDescriptor sourceType = TypeDescriptor.forObject(map); in scalarMap() local
82 TypeDescriptor sourceType = new TypeDescriptor(getClass().getField("notGenericMapSource")); in scalarMapNotGenericSourceField() local
106 TypeDescriptor sourceType = TypeDescriptor.forObject(map); in collectionMap() local
131 TypeDescriptor sourceType = new TypeDescriptor(getClass().getField("sourceCollectionMapTarget")); in collectionMapSourceTarget() local
175 TypeDescriptor sourceType = TypeDescriptor.forObject(map); in emptyMap() local
193 TypeDescriptor sourceType = TypeDescriptor.forObject(map); in emptyMapDifferentTargetImplType() local
209 TypeDescriptor sourceType = TypeDescriptor.map(NoDefaultConstructorMap.class, in noDefaultConstructorCopyNotRequired() local
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/lookup/
H A DClassScope.java37 SourceTypeBinding sourceType = referenceContext.binding; in buildAnonymousTypeBinding() local
141 SourceTypeBinding sourceType = referenceContext.binding; in buildFieldsAndMethods() local
288 SourceTypeBinding sourceType = referenceContext.binding; in buildType() local
342 SourceTypeBinding sourceType = referenceContext.binding; in checkAndSetModifiers() local
636 SourceTypeBinding sourceType = referenceContext.binding; in connectMemberTypes() local
654 SourceTypeBinding sourceType = referenceContext.binding; in connectSuperclass() local
705 SourceTypeBinding sourceType = referenceContext.binding; in connectSuperInterfaces() local
764 SourceTypeBinding sourceType = referenceContext.binding; in connectTypeHierarchy() local
790 SourceTypeBinding sourceType = referenceContext.binding; in connectTypeHierarchyWithoutMembers() local
805 private boolean detectCycle(SourceTypeBinding sourceType, in detectCycle()
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/test/java/util/Scanner/
H A DScanTest.java458 public static void nextLineTest(int sourceType) throws Exception { in nextLineTest()
1018 private static void byteTest(int sourceType) throws Exception { in byteTest()
1087 private static void shortTest(int sourceType) throws Exception { in shortTest()
1120 private static void intTest(int sourceType) throws Exception { in intTest()
1153 private static void longTest(int sourceType) throws Exception { in longTest()
1183 private static void floatTest(int sourceType) throws Exception { in floatTest()
1228 private static void doubleTest(int sourceType) throws Exception { in doubleTest()
1273 private static void booleanTest(int sourceType) throws Exception { in booleanTest()
1292 private static void hasNextTest(int sourceType) throws Exception { in hasNextTest()
1320 private static void nextTest(int sourceType) throws Exception { in nextTest()
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/test/java/util/Scanner/
H A DScanTest.java458 public static void nextLineTest(int sourceType) throws Exception { in nextLineTest()
1018 private static void byteTest(int sourceType) throws Exception { in byteTest()
1087 private static void shortTest(int sourceType) throws Exception { in shortTest()
1120 private static void intTest(int sourceType) throws Exception { in intTest()
1153 private static void longTest(int sourceType) throws Exception { in longTest()
1183 private static void floatTest(int sourceType) throws Exception { in floatTest()
1228 private static void doubleTest(int sourceType) throws Exception { in doubleTest()
1273 private static void booleanTest(int sourceType) throws Exception { in booleanTest()
1292 private static void hasNextTest(int sourceType) throws Exception { in hasNextTest()
1320 private static void nextTest(int sourceType) throws Exception { in nextTest()
[all …]
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.core/src/main/java/org/springframework/core/convert/
H A DConversionService.java40 boolean canConvert(Class<?> sourceType, Class<?> targetType); in canConvert()
55 boolean canConvert(TypeDescriptor sourceType, TypeDescriptor targetType); in canConvert()
78 Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType); in convert()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/workspace/Compiler/src/org/eclipse/jdt/internal/compiler/lookup/
H A DClassScope.java40 SourceTypeBinding sourceType = referenceContext.binding; in buildAnonymousTypeBinding() local
142 SourceTypeBinding sourceType = referenceContext.binding; in buildFieldsAndMethods() local
216 SourceTypeBinding sourceType = referenceContext.binding; in buildMemberTypes() local
307 SourceTypeBinding sourceType = referenceContext.binding; in buildType() local
317 SourceTypeBinding sourceType = referenceContext.binding; in buildTypeVariables() local
336 SourceTypeBinding sourceType = referenceContext.binding; in checkAndSetModifiers() local
632 SourceTypeBinding sourceType = referenceContext.binding; in connectMemberTypes() local
649 SourceTypeBinding sourceType = referenceContext.binding; in connectSuperclass() local
694 SourceTypeBinding sourceType = referenceContext.binding; in connectSuperInterfaces() local
760 SourceTypeBinding sourceType = referenceContext.binding; in connectTypeHierarchy() local
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/java/util/Scanner/
H A DScanTest.java460 public static void nextLineTest(int sourceType) throws Exception { in nextLineTest()
1050 private static void byteTest(int sourceType) throws Exception { in byteTest()
1119 private static void shortTest(int sourceType) throws Exception { in shortTest()
1152 private static void intTest(int sourceType) throws Exception { in intTest()
1185 private static void longTest(int sourceType) throws Exception { in longTest()
1215 private static void floatTest(int sourceType) throws Exception { in floatTest()
1260 private static void doubleTest(int sourceType) throws Exception { in doubleTest()
1305 private static void booleanTest(int sourceType) throws Exception { in booleanTest()
1324 private static void hasNextTest(int sourceType) throws Exception { in hasNextTest()
1352 private static void nextTest(int sourceType) throws Exception { in nextTest()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/java/util/Scanner/
H A DScanTest.java460 public static void nextLineTest(int sourceType) throws Exception { in nextLineTest()
1050 private static void byteTest(int sourceType) throws Exception { in byteTest()
1119 private static void shortTest(int sourceType) throws Exception { in shortTest()
1152 private static void intTest(int sourceType) throws Exception { in intTest()
1185 private static void longTest(int sourceType) throws Exception { in longTest()
1215 private static void floatTest(int sourceType) throws Exception { in floatTest()
1260 private static void doubleTest(int sourceType) throws Exception { in doubleTest()
1305 private static void booleanTest(int sourceType) throws Exception { in booleanTest()
1324 private static void hasNextTest(int sourceType) throws Exception { in hasNextTest()
1352 private static void nextTest(int sourceType) throws Exception { in nextTest()
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/java/util/Scanner/
H A DScanTest.java460 public static void nextLineTest(int sourceType) throws Exception { in nextLineTest()
1050 private static void byteTest(int sourceType) throws Exception { in byteTest()
1119 private static void shortTest(int sourceType) throws Exception { in shortTest()
1152 private static void intTest(int sourceType) throws Exception { in intTest()
1185 private static void longTest(int sourceType) throws Exception { in longTest()
1215 private static void floatTest(int sourceType) throws Exception { in floatTest()
1260 private static void doubleTest(int sourceType) throws Exception { in doubleTest()
1305 private static void booleanTest(int sourceType) throws Exception { in booleanTest()
1324 private static void hasNextTest(int sourceType) throws Exception { in hasNextTest()
1352 private static void nextTest(int sourceType) throws Exception { in nextTest()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/java/util/Scanner/
H A DScanTest.java460 public static void nextLineTest(int sourceType) throws Exception { in nextLineTest()
1050 private static void byteTest(int sourceType) throws Exception { in byteTest()
1119 private static void shortTest(int sourceType) throws Exception { in shortTest()
1152 private static void intTest(int sourceType) throws Exception { in intTest()
1185 private static void longTest(int sourceType) throws Exception { in longTest()
1215 private static void floatTest(int sourceType) throws Exception { in floatTest()
1260 private static void doubleTest(int sourceType) throws Exception { in doubleTest()
1305 private static void booleanTest(int sourceType) throws Exception { in booleanTest()
1324 private static void hasNextTest(int sourceType) throws Exception { in hasNextTest()
1352 private static void nextTest(int sourceType) throws Exception { in nextTest()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/util/Scanner/
H A DScanTest.java460 public static void nextLineTest(int sourceType) throws Exception { in nextLineTest()
1050 private static void byteTest(int sourceType) throws Exception { in byteTest()
1119 private static void shortTest(int sourceType) throws Exception { in shortTest()
1152 private static void intTest(int sourceType) throws Exception { in intTest()
1185 private static void longTest(int sourceType) throws Exception { in longTest()
1215 private static void floatTest(int sourceType) throws Exception { in floatTest()
1260 private static void doubleTest(int sourceType) throws Exception { in doubleTest()
1305 private static void booleanTest(int sourceType) throws Exception { in booleanTest()
1324 private static void hasNextTest(int sourceType) throws Exception { in hasNextTest()
1352 private static void nextTest(int sourceType) throws Exception { in nextTest()
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/util/Scanner/
H A DScanTest.java460 public static void nextLineTest(int sourceType) throws Exception { in nextLineTest()
1050 private static void byteTest(int sourceType) throws Exception { in byteTest()
1119 private static void shortTest(int sourceType) throws Exception { in shortTest()
1152 private static void intTest(int sourceType) throws Exception { in intTest()
1185 private static void longTest(int sourceType) throws Exception { in longTest()
1215 private static void floatTest(int sourceType) throws Exception { in floatTest()
1260 private static void doubleTest(int sourceType) throws Exception { in doubleTest()
1305 private static void booleanTest(int sourceType) throws Exception { in booleanTest()
1324 private static void hasNextTest(int sourceType) throws Exception { in hasNextTest()
1352 private static void nextTest(int sourceType) throws Exception { in nextTest()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/util/Scanner/
H A DScanTest.java460 public static void nextLineTest(int sourceType) throws Exception { in nextLineTest()
1050 private static void byteTest(int sourceType) throws Exception { in byteTest()
1119 private static void shortTest(int sourceType) throws Exception { in shortTest()
1152 private static void intTest(int sourceType) throws Exception { in intTest()
1185 private static void longTest(int sourceType) throws Exception { in longTest()
1215 private static void floatTest(int sourceType) throws Exception { in floatTest()
1260 private static void doubleTest(int sourceType) throws Exception { in doubleTest()
1305 private static void booleanTest(int sourceType) throws Exception { in booleanTest()
1324 private static void hasNextTest(int sourceType) throws Exception { in hasNextTest()
1352 private static void nextTest(int sourceType) throws Exception { in nextTest()
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/java/util/Scanner/
H A DScanTest.java460 public static void nextLineTest(int sourceType) throws Exception { in nextLineTest()
1050 private static void byteTest(int sourceType) throws Exception { in byteTest()
1119 private static void shortTest(int sourceType) throws Exception { in shortTest()
1152 private static void intTest(int sourceType) throws Exception { in intTest()
1185 private static void longTest(int sourceType) throws Exception { in longTest()
1215 private static void floatTest(int sourceType) throws Exception { in floatTest()
1260 private static void doubleTest(int sourceType) throws Exception { in doubleTest()
1305 private static void booleanTest(int sourceType) throws Exception { in booleanTest()
1324 private static void hasNextTest(int sourceType) throws Exception { in hasNextTest()
1352 private static void nextTest(int sourceType) throws Exception { in nextTest()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/nunit-lite/NUnitLite-1.0.0/src/framework/Attributes/
H A DTestCaseSourceAttribute.cs43 private readonly Type sourceType; field in NUnit.Framework.TestCaseSourceAttribute
59 public TestCaseSourceAttribute(Type sourceType, string sourceName) in TestCaseSourceAttribute()
69 public TestCaseSourceAttribute(Type sourceType) in TestCaseSourceAttribute()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.core/src/main/java/org/springframework/core/convert/converter/
H A DGenericConverter.java59 Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType); in convert()
67 private final Class<?> sourceType; field in GenericConverter.ConvertiblePair
76 public ConvertiblePair(Class<?> sourceType, Class<?> targetType) { in ConvertiblePair()
/dports/java/eclipse-ecj/eclipse-ecj-4.4.2_1/org/eclipse/jdt/internal/compiler/lookup/
H A DClassScope.java117 SourceTypeBinding sourceType = this.referenceContext.binding; in buildFields() local
182 SourceTypeBinding sourceType = this.referenceContext.binding; in buildFieldsAndMethods() local
309 SourceTypeBinding sourceType = this.referenceContext.binding; in buildMethods() local
409 SourceTypeBinding sourceType = this.referenceContext.binding; in buildType() local
446 SourceTypeBinding sourceType = this.referenceContext.binding; in checkAndSetModifiers() local
766 SourceTypeBinding sourceType = this.referenceContext.binding; in checkParameterizedSuperTypeCollisions() local
902 SourceTypeBinding sourceType = this.referenceContext.binding; in connectMemberTypes() local
921 SourceTypeBinding sourceType = this.referenceContext.binding; in connectSuperclass() local
974 SourceTypeBinding sourceType = this.referenceContext.binding; in connectEnumSuperclass() local
1018 SourceTypeBinding sourceType = this.referenceContext.binding; in connectSuperInterfaces() local
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/
H A DClassScope.java131 SourceTypeBinding sourceType = this.referenceContext.binding; in buildComponents() local
186 SourceTypeBinding sourceType = this.referenceContext.binding; in buildFields() local
252 SourceTypeBinding sourceType = this.referenceContext.binding; in buildFieldsAndMethods() local
382 SourceTypeBinding sourceType = this.referenceContext.binding; in buildMethods() local
487 SourceTypeBinding sourceType = this.referenceContext.binding; in buildType() local
526 SourceTypeBinding sourceType = this.referenceContext.binding; in checkAndSetModifiers() local
897 SourceTypeBinding sourceType = this.referenceContext.binding; in checkParameterizedSuperTypeCollisions() local
1033 SourceTypeBinding sourceType = this.referenceContext.binding; in connectMemberTypes() local
1052 SourceTypeBinding sourceType = this.referenceContext.binding; in connectSuperclass() local
1111 SourceTypeBinding sourceType = this.referenceContext.binding; in connectEnumSuperclass() local
[all …]
/dports/net-mgmt/icinga2/icinga2-2.13.2/lib/config/
H A Dobjectrule.cpp10 void ObjectRule::RegisterType(const String& sourceType) in RegisterType()
15 bool ObjectRule::IsValidSourceType(const String& sourceType) in IsValidSourceType()
/dports/finance/prestashop/prestashop/src/Core/Domain/Theme/ValueObject/
H A DThemeImportSource.php44 private $sourceType; variable in PrestaShop\\PrestaShop\\Core\\Domain\\Theme\\ValueObject\\ThemeImportSource
88 private function __construct($sourceType, $source)
117 private function assertSupportedThemeImportSourceTypeSupplied($sourceType)
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/nashorn/src/jdk/nashorn/internal/runtime/linker/
H A DNashornLinker.java115 …public GuardedTypeConversion convertToType(final Class<?> sourceType, final Class<?> targetType) t… in convertToType()
137 …private static GuardedInvocation convertToTypeNoCast(final Class<?> sourceType, final Class<?> tar… in convertToTypeNoCast()
162 …private static GuardedInvocation getSamTypeConverter(final Class<?> sourceType, final Class<?> tar… in getSamTypeConverter()
193 …private static GuardedInvocation getArrayConverter(final Class<?> sourceType, final Class<?> targe… in getArrayConverter()
221 …private static GuardedInvocation getMirrorConverter(final Class<?> sourceType, final Class<?> targ… in getMirrorConverter()
252 …public Comparison compareConversion(final Class<?> sourceType, final Class<?> targetType1, final C… in compareConversion()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/nashorn/src/jdk/nashorn/internal/runtime/linker/
H A DNashornLinker.java115 …public GuardedTypeConversion convertToType(final Class<?> sourceType, final Class<?> targetType) t… in convertToType()
137 …private static GuardedInvocation convertToTypeNoCast(final Class<?> sourceType, final Class<?> tar… in convertToTypeNoCast()
162 …private static GuardedInvocation getSamTypeConverter(final Class<?> sourceType, final Class<?> tar… in getSamTypeConverter()
193 …private static GuardedInvocation getArrayConverter(final Class<?> sourceType, final Class<?> targe… in getArrayConverter()
221 …private static GuardedInvocation getMirrorConverter(final Class<?> sourceType, final Class<?> targ… in getMirrorConverter()
252 …public Comparison compareConversion(final Class<?> sourceType, final Class<?> targetType1, final C… in compareConversion()

12345678910>>...68