Home
last modified time | relevance | path

Searched refs:TypeDescription (Results 1 – 23 of 23) sorted by relevance

/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue149/
DGlobalDirectivesTest.java22 import org.yaml.snakeyaml.TypeDescription;
33 TypeDescription description = new TypeDescription(ComponentBean.class, new Tag( in testOneDocument()
48 TypeDescription description = new TypeDescription(ComponentBean.class, new Tag( in testDirectives()
66 TypeDescription description = new TypeDescription(ComponentBean.class, new Tag( in testDirectives2()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
DTypeDescriptionTest.java26 TypeDescription descr = new TypeDescription(TypeDescriptionTest.class); in testSetTag()
34 TypeDescription carDescription = new TypeDescription(CarWithArray.class, "!car"); in testToString()
DEnumTest.java173 TypeDescription td = new TypeDescription(EnumBean.class); in testLoadEnumBean2()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/
DTypeDescription.java27 public final class TypeDescription { class
34 public TypeDescription(Class<? extends Object> clazz, Tag tag) { in TypeDescription() method in TypeDescription
42 public TypeDescription(Class<? extends Object> clazz, String tag) { in TypeDescription() method in TypeDescription
46 public TypeDescription(Class<? extends Object> clazz) { in TypeDescription() method in TypeDescription
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
DTypeSafeCollectionsTest.java25 import org.yaml.snakeyaml.TypeDescription;
35 TypeDescription carDescription = new TypeDescription(Car.class); in testTypeSafeList()
51 TypeDescription carDescription = new TypeDescription(MyCar.class); in testTypeSafeMap()
DArrayTagsTest.java24 import org.yaml.snakeyaml.TypeDescription;
62 constructor.addTypeDescription(new TypeDescription(Car.class, "!car")); in testLoadClassTag()
82 Constructor constructor = new Constructor(new TypeDescription(CarWithArray.class)); in testLoadClassNoRoot()
DClassTagsTest.java23 import org.yaml.snakeyaml.TypeDescription;
76 constructor.addTypeDescription(new TypeDescription(Car.class, "!car")); in testLoadClassTag()
97 Constructor constructor = new Constructor(new TypeDescription(Car.class)); in testLoadClassNoRoot()
DImplicitTagsTest.java26 import org.yaml.snakeyaml.TypeDescription;
92 constructor.addTypeDescription(new TypeDescription(Car.class, "!car")); in testLoadClassTag()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/
DHumanTest.java32 import org.yaml.snakeyaml.TypeDescription;
136 TypeDescription humanDescription = new TypeDescription(Human.class); in testChildren()
209 TypeDescription humanDescription = new TypeDescription(Human.class); in testChildrenPretty()
276 TypeDescription humanDescription = new TypeDescription(Human2.class); in testChildren2()
343 TypeDescription Human3Description = new TypeDescription(Human3.class); in testChildren3()
383 TypeDescription humanDescription = new TypeDescription(Human.class); in testChildrenSetAsRoot()
420 TypeDescription Human2Description = new TypeDescription(Human2.class); in testChildrenMapAsRoot()
488 TypeDescription Human3Description = new TypeDescription(Human3.class); in testChildrenListRoot()
631 TypeDescription humanDescription = new TypeDescription(Human.class); in testChildrenWithoutRootTag()
DHuman_WithArrayOfChildrenTest.java22 import org.yaml.snakeyaml.TypeDescription;
146 TypeDescription HumanWithChildrenArrayDescription = new TypeDescription( in testChildrenArray()
173 TypeDescription HumanWithChildrenArrayDescription = new TypeDescription( in testParseChildrenArrayWithoutRootTag()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/generics/
DHumanGenericsTest.java32 import org.yaml.snakeyaml.TypeDescription;
148 TypeDescription humanDescription = new TypeDescription(HumanGen.class); in testChildren()
227 TypeDescription humanDescription = new TypeDescription(HumanGen2.class); in testChildren2()
290 TypeDescription Human3Description = new TypeDescription(HumanGen3.class); in testChildren3()
334 TypeDescription humanDescription = new TypeDescription(HumanGen.class); in testChildrenSetAsRoot()
372 TypeDescription Human2Description = new TypeDescription(HumanGen2.class); in testChildrenMapAsRoot()
441 TypeDescription Human3Description = new TypeDescription(HumanGen3.class); in testChildrenListRoot()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue95/
DArrayInGenericCollectionTest.java29 import org.yaml.snakeyaml.TypeDescription;
85 TypeDescription aTypeDescr = new TypeDescription(A.class); in testArrayAsMapValueWithTypeDespriptor()
124 TypeDescription aTypeDescr = new TypeDescription(B.class); in testArrayAsListValueWithTypeDespriptor()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/ruby/
DRubyTest.java21 import org.yaml.snakeyaml.TypeDescription;
105 con.addTypeDescription(new TypeDescription(TestObject.class, in parseObject()
107 con.addTypeDescription(new TypeDescription(Sub1.class, "!ruby/object:Test::Module::Sub1")); in parseObject()
108 con.addTypeDescription(new TypeDescription(Sub2.class, "!ruby/object:Test::Module::Sub2")); in parseObject()
/external/snakeyaml/src/test/java/examples/collections/
DTypeSafePriorityTest.java22 import org.yaml.snakeyaml.TypeDescription;
40 TypeDescription descr = new TypeDescription(ListBean.class); in testLoadList2()
/external/snakeyaml/src/test/java/examples/staticstate/
DStaticFieldsWrapperTest.java20 import org.yaml.snakeyaml.TypeDescription;
70 TypeDescription description = new TypeDescription(Wrapper.class, new Tag("!mybean")); in testLocalTag()
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
DInlineBytecodeGenerator.java16 import net.bytebuddy.description.type.TypeDescription;
187 public ClassVisitor wrap(TypeDescription instrumentedType, in wrap()
196 … ? new ParameterAddingClassVisitor(classVisitor, new TypeDescription.ForLoadedType(type)) in wrap()
202 private final TypeDescription typeDescription;
204 private ParameterAddingClassVisitor(ClassVisitor cv, TypeDescription typeDescription) { in ParameterAddingClassVisitor()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue56/
DPerlTest.java24 import org.yaml.snakeyaml.TypeDescription;
72 TypeDescription descr = new TypeDescription(CodeBean.class, new Tag( in testJavaBeanWithTypeDescription()
/external/testng/src/main/java/org/testng/internal/
DYaml.java8 import org.yaml.snakeyaml.TypeDescription;
32 TypeDescription suiteDescription = new TypeDescription(XmlSuite.class); in parse()
41 TypeDescription testDescription = new TypeDescription(XmlTest.class); in parse()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
DConstructor.java36 import org.yaml.snakeyaml.TypeDescription;
52 protected final Map<Class<? extends Object>, TypeDescription> typeDefinitions;
65 this(new TypeDescription(checkRoot(theRoot))); in Constructor()
78 public Constructor(TypeDescription theRoot) { in Constructor()
87 typeDefinitions = new HashMap<Class<? extends Object>, TypeDescription>(); in Constructor()
127 public TypeDescription addTypeDescription(TypeDescription definition) { in addTypeDescription()
243 TypeDescription memberDescription = typeDefinitions.get(beanType); in constructJavaBean2ndStep()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/javabeans/
DHouseTest.java27 import org.yaml.snakeyaml.TypeDescription;
88 TypeDescription description = new TypeDescription(House.class); in testDump3()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/
DImplicitResolverTest.java24 import org.yaml.snakeyaml.TypeDescription;
85 constructor.addTypeDescription(new TypeDescription(TestBean.class, "!testbean")); in testMain()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue82/
DPropOrderInfluenceWhenAliasedInGenericCollectionTest.java27 import org.yaml.snakeyaml.TypeDescription;
160 .addTypeDescription(new TypeDescription(GeneralAccount.class, generalAccountTag)); in testABWithCustomTag()
215 .addTypeDescription(new TypeDescription(GeneralAccount.class, generalAccountTag)); in testABPropertyWithCustomTag()
/external/mockito/src/test/java/org/mockito/internal/creation/bytebuddy/
DInlineByteBuddyMockMakerTest.java6 import net.bytebuddy.description.type.TypeDescription;
255 …assertThat(new TypeDescription.ForLoadedType(typeWithParameters).getDeclaredMethods().filter(named… in test_parameters_retention()