Searched refs:ImplicitTuple (Results 1 – 10 of 10) sorted by relevance
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/parser/ |
D | ParserImplTest.java | 26 import org.yaml.snakeyaml.events.ImplicitTuple; 59 etalonEvents.add(new ScalarEvent(null, null, new ImplicitTuple(true, false), "string", in testGetEvent() 61 etalonEvents.add(new ScalarEvent(null, null, new ImplicitTuple(true, false), "abcd", in testGetEvent() 79 etalonEvents.add(new ScalarEvent(null, null, new ImplicitTuple(true, false), "american", in testGetEvent2() 83 etalonEvents.add(new ScalarEvent(null, null, new ImplicitTuple(true, false), in testGetEvent2()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/ |
D | ScalarEvent.java | 32 private final ImplicitTuple implicit; 34 public ScalarEvent(String anchor, String tag, ImplicitTuple implicit, String value, in ScalarEvent() 88 public ImplicitTuple getImplicit() { in getImplicit()
|
D | ImplicitTuple.java | 25 public class ImplicitTuple { class 29 public ImplicitTuple(boolean plain, boolean nonplain) { in ImplicitTuple() method in ImplicitTuple
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/emitter/ |
D | EventConstructor.java | 30 import org.yaml.snakeyaml.events.ImplicitTuple; 69 ImplicitTuple implicit; in construct() 71 implicit = new ImplicitTuple(false, true); in construct() 73 implicit = new ImplicitTuple((Boolean) implicitList.get(0), in construct()
|
D | EmitterTest.java | 34 import org.yaml.snakeyaml.events.ImplicitTuple; 131 emitter.emit(new ScalarEvent(null, null, new ImplicitTuple(true, false), burger in testWriteSupplementaryUnicode()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/events/ |
D | ScalarEventTest.java | 23 ScalarEvent event = new ScalarEvent("a2", "str", new ImplicitTuple(true, true), "text", in testToString() 31 ScalarEvent event = new ScalarEvent("a2", "str", new ImplicitTuple(true, true), "text", in testNotEqual()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/ |
D | ParserImpl.java | 29 import org.yaml.snakeyaml.events.ImplicitTuple; 434 ImplicitTuple implicitValues; in parseNode() 436 implicitValues = new ImplicitTuple(true, false); in parseNode() 438 implicitValues = new ImplicitTuple(false, true); in parseNode() 440 implicitValues = new ImplicitTuple(false, false); in parseNode() 468 event = new ScalarEvent(anchor, tag, new ImplicitTuple(implicit, false), "", in parseNode() 792 … return new ScalarEvent(null, null, new ImplicitTuple(true, false), "", mark, mark, (char) 0); in processEmptyScalar()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/serializer/ |
D | Serializer.java | 32 import org.yaml.snakeyaml.events.ImplicitTuple; 166 ImplicitTuple tuple = new ImplicitTuple(node.getTag().equals(detectedTag), node in serializeNode()
|
/external/snakeyaml/src/test/java/org/pyyaml/ |
D | CanonicalParser.java | 25 import org.yaml.snakeyaml.events.ImplicitTuple; 95 events.add(new ScalarEvent(anchor, tag, new ImplicitTuple(false, false), token in parseNode()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/ |
D | YamlParseTest.java | 59 … assertEquals(new ImplicitTuple(true, false).toString(), scalarEvent.getImplicit().toString()); in testParseEvents()
|