Searched refs:getPropertyUtils (Results 1 – 12 of 12) sorted by relevance
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/ |
D | PropertyUtilsSharingTest.java | 29 assertSame(yaml1.constructor.getPropertyUtils(), yaml1.representer.getPropertyUtils()); in testYamlDefaults() 32 assertSame(yaml2.constructor.getPropertyUtils(), yaml2.representer.getPropertyUtils()); in testYamlDefaults() 35 assertSame(yaml3.constructor.getPropertyUtils(), yaml3.representer.getPropertyUtils()); in testYamlDefaults() 43 assertSame(pu, yaml.constructor.getPropertyUtils()); in testYamlConstructorWithPropertyUtils() 44 assertSame(pu, yaml.representer.getPropertyUtils()); in testYamlConstructorWithPropertyUtils() 52 assertSame(pu, yaml.constructor.getPropertyUtils()); in testYamlRepresenterWithPropertyUtils() 53 assertSame(pu, yaml.representer.getPropertyUtils()); in testYamlRepresenterWithPropertyUtils() 65 assertSame(pu_c, yaml.constructor.getPropertyUtils()); in testYamlConstructorANDRepresenterWithPropertyUtils() 66 assertSame(pu_r, yaml.representer.getPropertyUtils()); in testYamlConstructorANDRepresenterWithPropertyUtils()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue154/ |
D | MissingPropertyTest.java | 62 representer.getPropertyUtils().setSkipMissingProperties(true); in testSkipMissingProperties() 77 representer.getPropertyUtils().setSkipMissingProperties(false); in testNoSkipMissingProperties()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/ |
D | Yaml.java | 155 constructor.setPropertyUtils(representer.getPropertyUtils()); in Yaml() 157 representer.setPropertyUtils(constructor.getPropertyUtils()); in Yaml() 162 representer.getPropertyUtils().setAllowReadOnlyProperties( in Yaml() 657 constructor.getPropertyUtils().setBeanAccess(beanAccess); in setBeanAccess() 658 representer.getPropertyUtils().setBeanAccess(beanAccess); in setBeanAccess()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/ |
D | CompactConstructor.java | 78 Property property = getPropertyUtils().getProperty(bean.getClass(), key); in setProperties() 204 Property property = getPropertyUtils().getProperty(bean.getClass(), in applySequence() 219 Set<Property> properties = getPropertyUtils().getProperties(bean); in getSequencePropertyName()
|
/external/snakeyaml/src/patches/android/ |
D | Constructor.patch | 22 return getPropertyUtils().getProperty(type, name);
|
D | CompactConstructor.patch | 20 Set<Property> properties = getPropertyUtils().getProperties(bean);
|
D | Representer.patch | 42 return getPropertyUtils().getProperties(type);
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue55/ |
D | YamlFieldAccessCollectionTest.java | 72 representer.getPropertyUtils().setBeanAccess(BeanAccess.FIELD); in constructYamlDumper()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/ |
D | BaseRepresenter.java | 192 public final PropertyUtils getPropertyUtils() { in getPropertyUtils() method in BaseRepresenter
|
D | Representer.java | 246 return getPropertyUtils().getProperties(type); in getProperties()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/ |
D | BaseConstructor.java | 422 public final PropertyUtils getPropertyUtils() { in getPropertyUtils() method in BaseConstructor
|
D | Constructor.java | 323 return getPropertyUtils().getProperty(type, name); in getProperty()
|