OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImplicitTuple
(Results
1 - 10
of
10
) sorted by null
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/
ImplicitTuple.java
25
public class
ImplicitTuple
{
29
public
ImplicitTuple
(boolean plain, boolean nonplain) {
ScalarEvent.java
32
private final
ImplicitTuple
implicit;
34
public ScalarEvent(String anchor, String tag,
ImplicitTuple
implicit, String value,
88
public
ImplicitTuple
getImplicit() {
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/events/
ScalarEventTest.java
23
ScalarEvent event = new ScalarEvent("a2", "str", new
ImplicitTuple
(true, true), "text",
31
ScalarEvent event = new ScalarEvent("a2", "str", new
ImplicitTuple
(true, true), "text",
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/parser/
ParserImplTest.java
26
import org.yaml.snakeyaml.events.
ImplicitTuple
;
59
etalonEvents.add(new ScalarEvent(null, null, new
ImplicitTuple
(true, false), "string",
61
etalonEvents.add(new ScalarEvent(null, null, new
ImplicitTuple
(true, false), "abcd",
79
etalonEvents.add(new ScalarEvent(null, null, new
ImplicitTuple
(true, false), "american",
83
etalonEvents.add(new ScalarEvent(null, null, new
ImplicitTuple
(true, false),
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/emitter/
EventConstructor.java
30
import org.yaml.snakeyaml.events.
ImplicitTuple
;
69
ImplicitTuple
implicit;
71
implicit = new
ImplicitTuple
(false, true);
73
implicit = new
ImplicitTuple
((Boolean) implicitList.get(0),
EmitterTest.java
34
import org.yaml.snakeyaml.events.
ImplicitTuple
;
131
emitter.emit(new ScalarEvent(null, null, new
ImplicitTuple
(true, false), burger
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
YamlParseTest.java
59
assertEquals(new
ImplicitTuple
(true, false).toString(), scalarEvent.getImplicit().toString());
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/serializer/
Serializer.java
32
import org.yaml.snakeyaml.events.
ImplicitTuple
;
166
ImplicitTuple
tuple = new
ImplicitTuple
(node.getTag().equals(detectedTag), node
/external/snakeyaml/src/test/java/org/pyyaml/
CanonicalParser.java
25
import org.yaml.snakeyaml.events.
ImplicitTuple
;
95
events.add(new ScalarEvent(anchor, tag, new
ImplicitTuple
(false, false), token
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/
ParserImpl.java
29
import org.yaml.snakeyaml.events.
ImplicitTuple
;
434
ImplicitTuple
implicitValues;
436
implicitValues = new
ImplicitTuple
(true, false);
438
implicitValues = new
ImplicitTuple
(false, true);
440
implicitValues = new
ImplicitTuple
(false, false);
468
event = new ScalarEvent(anchor, tag, new
ImplicitTuple
(implicit, false), "",
[
all
...]
Completed in 290 milliseconds