Home
last modified time | relevance | path

Searched refs:representSequence (Results 1 – 7 of 7) sorted by relevance

/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/
DImmutablesRepresenter.java43 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/main/java/org/yaml/snakeyaml/representer/
DSafeRepresenter.java175 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 …]
DBaseRepresenter.java123 protected Node representSequence(Tag tag, Iterable<?> sequence, Boolean flowStyle) { in representSequence() method in BaseRepresenter
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/primitives/
DImmutablePrimitivesRepresenter.java34 return representSequence( in representData()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue73/
DDumpSetAsSequenceExampleTest.java66 return representSequence(getTag(data.getClass(), Tag.SEQ), (Iterable<Object>) data, in representData()
/external/snakeyaml/src/test/java8/org/yaml/snakeyaml/issues/issue310/
DOptionalTest.java121 return representSequence(Tag.SEQ, seq, true); in representData()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
DExample2_24Test.java107 return representSequence(new Tag("!shape"), value, Boolean.FALSE); in representData()