/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue149/ |
D | GlobalDirectivesTest.java | 22 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/ |
D | TypeDescriptionTest.java | 26 TypeDescription descr = new TypeDescription(TypeDescriptionTest.class); in testSetTag() 34 TypeDescription carDescription = new TypeDescription(CarWithArray.class, "!car"); in testToString()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/ |
D | HumanTest.java | 32 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()
|
D | Human_WithArrayOfChildrenTest.java | 22 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/constructor/ |
D | TypeSafeCollectionsTest.java | 25 import org.yaml.snakeyaml.TypeDescription; 35 TypeDescription carDescription = new TypeDescription(Car.class); in testTypeSafeList() 51 TypeDescription carDescription = new TypeDescription(MyCar.class); in testTypeSafeMap()
|
D | ArrayTagsTest.java | 24 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()
|
D | ClassTagsTest.java | 23 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()
|
D | ImplicitTagsTest.java | 26 import org.yaml.snakeyaml.TypeDescription; 92 constructor.addTypeDescription(new TypeDescription(Car.class, "!car")); in testLoadClassTag()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/ |
D | TypeDescription.java | 27 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/recursive/generics/ |
D | HumanGenericsTest.java | 32 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/opencensus-java/contrib/agent/src/main/java/io/opencensus/contrib/agent/ |
D | AgentBuilderListener.java | 22 import net.bytebuddy.description.type.TypeDescription; 36 TypeDescription typeDescription, in onTransformation() 46 TypeDescription typeDescription, in onIgnored()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue95/ |
D | ArrayInGenericCollectionTest.java | 29 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/ |
D | RubyTest.java | 21 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/ |
D | TypeSafePriorityTest.java | 22 import org.yaml.snakeyaml.TypeDescription; 40 TypeDescription descr = new TypeDescription(ListBean.class); in testLoadList2()
|
/external/snakeyaml/src/test/java/examples/staticstate/ |
D | StaticFieldsWrapperTest.java | 20 import org.yaml.snakeyaml.TypeDescription; 70 TypeDescription description = new TypeDescription(Wrapper.class, new Tag("!mybean")); in testLocalTag()
|
/external/opencensus-java/contrib/agent/src/main/java/io/opencensus/contrib/agent/instrumentation/ |
D | ExecutorInstrumentation.java | 34 import net.bytebuddy.description.type.TypeDescription; 66 TypeDescription typeDescription, in transform() 73 private static ElementMatcher.Junction<TypeDescription> createMatcher() { in createMatcher()
|
D | ThreadInstrumentation.java | 29 import net.bytebuddy.description.type.TypeDescription; 64 TypeDescription typeDescription, in transform()
|
D | UrlInstrumentation.java | 30 import net.bytebuddy.description.type.TypeDescription; 62 TypeDescription typeDescription, in transform()
|
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/ |
D | InlineBytecodeGenerator.java | 16 import net.bytebuddy.description.type.TypeDescription; 233 public ClassVisitor wrap(TypeDescription instrumentedType, in wrap() 242 … ? new ParameterAddingClassVisitor(classVisitor, new TypeDescription.ForLoadedType(type)) in wrap() 248 private final TypeDescription typeDescription; 250 private ParameterAddingClassVisitor(ClassVisitor cv, TypeDescription typeDescription) { in ParameterAddingClassVisitor()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue56/ |
D | PerlTest.java | 24 import org.yaml.snakeyaml.TypeDescription; 72 TypeDescription descr = new TypeDescription(CodeBean.class, new Tag( in testJavaBeanWithTypeDescription()
|
/external/testng/src/main/java/org/testng/internal/ |
D | Yaml.java | 8 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/ |
D | Constructor.java | 36 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/ |
D | HouseTest.java | 27 import org.yaml.snakeyaml.TypeDescription; 88 TypeDescription description = new TypeDescription(House.class); in testDump3()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/ |
D | ImplicitResolverTest.java | 24 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/ |
D | PropOrderInfluenceWhenAliasedInGenericCollectionTest.java | 27 import org.yaml.snakeyaml.TypeDescription; 160 .addTypeDescription(new TypeDescription(GeneralAccount.class, generalAccountTag)); in testABWithCustomTag() 215 .addTypeDescription(new TypeDescription(GeneralAccount.class, generalAccountTag)); in testABPropertyWithCustomTag()
|