Home
last modified time | relevance | path

Searched refs:addTypeDescription (Results 1 – 17 of 17) sorted by relevance

/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue149/
DGlobalDirectivesTest.java35 constr.addTypeDescription(description); in testOneDocument()
50 constr.addTypeDescription(description); in testDirectives()
68 constr.addTypeDescription(description); in testDirectives2()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/ruby/
DRubyTest.java105 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/org/yaml/snakeyaml/constructor/
DArrayTagsTest.java62 constructor.addTypeDescription(new TypeDescription(Car.class, "!car")); in testLoadClassTag()
74 constructor.addTypeDescription(null); in testNullDescription()
DClassTagsTest.java76 constructor.addTypeDescription(new TypeDescription(Car.class, "!car")); in testLoadClassTag()
89 constructor.addTypeDescription(null); in testNullDescription()
DTypeSafeCollectionsTest.java37 constructor.addTypeDescription(carDescription); in testTypeSafeList()
53 constructor.addTypeDescription(carDescription); in testTypeSafeMap()
DImplicitTagsTest.java92 constructor.addTypeDescription(new TypeDescription(Car.class, "!car")); in testLoadClassTag()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/generics/
DHumanGenericsTest.java150 constructor.addTypeDescription(humanDescription); in testChildren()
292 constructor.addTypeDescription(Human3Description); in testChildren3()
336 constructor.addTypeDescription(humanDescription); in testChildrenSetAsRoot()
374 constructor.addTypeDescription(Human2Description); in testChildrenMapAsRoot()
443 constructor.addTypeDescription(Human3Description); in testChildrenListRoot()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/
DHuman_WithArrayOfChildrenTest.java150 constructor.addTypeDescription(HumanWithChildrenArrayDescription); in testChildrenArray()
177 constructor.addTypeDescription(HumanWithChildrenArrayDescription); in testParseChildrenArrayWithoutRootTag()
DHumanTest.java278 constructor.addTypeDescription(humanDescription); in testChildren2()
345 constructor.addTypeDescription(Human3Description); in testChildren3()
385 constructor.addTypeDescription(humanDescription); in testChildrenSetAsRoot()
422 constructor.addTypeDescription(Human2Description); in testChildrenMapAsRoot()
490 constructor.addTypeDescription(Human3Description); in testChildrenListRoot()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue95/
DArrayInGenericCollectionTest.java89 c.addTypeDescription(aTypeDescr); in testArrayAsMapValueWithTypeDespriptor()
128 c.addTypeDescription(aTypeDescr); in testArrayAsListValueWithTypeDespriptor()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/
DImplicitResolverTest.java85 constructor.addTypeDescription(new TypeDescription(TestBean.class, "!testbean")); in testMain()
/external/snakeyaml/src/test/java/examples/staticstate/
DStaticFieldsWrapperTest.java71 constr.addTypeDescription(description); in testLocalTag()
/external/testng/src/main/java/org/testng/internal/
DYaml.java37 constructor.addTypeDescription(suiteDescription); in parse()
45 constructor.addTypeDescription(testDescription); in parse()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue82/
DPropOrderInfluenceWhenAliasedInGenericCollectionTest.java160 .addTypeDescription(new TypeDescription(GeneralAccount.class, generalAccountTag)); in testABWithCustomTag()
215 .addTypeDescription(new TypeDescription(GeneralAccount.class, generalAccountTag)); in testABPropertyWithCustomTag()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue56/
DPerlTest.java74 c.addTypeDescription(descr); in testJavaBeanWithTypeDescription()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
DEnumTest.java175 c.addTypeDescription(td); in testLoadEnumBean2()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
DConstructor.java91 addTypeDescription(theRoot); in Constructor()
127 public TypeDescription addTypeDescription(TypeDescription definition) { in addTypeDescription() method in Constructor