Searched refs:representSequence (Results 1 – 7 of 7) sorted by relevance
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/ |
D | SafeRepresenter.java | 175 return representSequence(getTag(data.getClass(), Tag.SEQ), (List<Object>) data, null); in representData() 183 return representSequence(getTag(data.getClass(), Tag.SEQ), new IteratorWrapper(iter), in representData() 204 return representSequence(Tag.SEQ, list, null); in representData() 218 return representSequence(Tag.SEQ, asByteList(data), null); in representData() 220 return representSequence(Tag.SEQ, asShortList(data), null); in representData() 222 return representSequence(Tag.SEQ, asIntList(data), null); in representData() 224 return representSequence(Tag.SEQ, asLongList(data), null); in representData() 226 return representSequence(Tag.SEQ, asFloatList(data), null); in representData() 228 return representSequence(Tag.SEQ, asDoubleList(data), null); in representData() 230 return representSequence(Tag.SEQ, asCharList(data), null); in representData() [all …]
|
D | BaseRepresenter.java | 123 protected Node representSequence(Tag tag, Iterable<?> sequence, Boolean flowStyle) { in representSequence() method in BaseRepresenter
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/ |
D | ImmutablesRepresenter.java | 43 return representSequence( in representData() 55 return representSequence(getTag(data.getClass(), new Tag(data.getClass())), in representData() 65 return representSequence(getTag(data.getClass(), new Tag(data.getClass())), in representData() 75 return representSequence( in representData()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/primitives/ |
D | ImmutablePrimitivesRepresenter.java | 34 return representSequence( in representData()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue73/ |
D | DumpSetAsSequenceExampleTest.java | 66 return representSequence(getTag(data.getClass(), Tag.SEQ), (Iterable<Object>) data, in representData()
|
/external/snakeyaml/src/test/java8/org/yaml/snakeyaml/issues/issue310/ |
D | OptionalTest.java | 121 return representSequence(Tag.SEQ, seq, true); in representData()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/ |
D | Example2_24Test.java | 107 return representSequence(new Tag("!shape"), value, Boolean.FALSE); in representData()
|