Home
last modified time | relevance | path

Searched refs:YAML (Results 1 – 25 of 143) sorted by relevance

123456

/external/llvm/test/DebugInfo/PDB/
Dpdbdump-yaml.test2 ; RUN: | FileCheck -check-prefix=YAML %s
6 ; YAML: ---
7 ; YAML-NEXT: MSF:
8 ; YAML-NEXT: SuperBlock:
9 ; YAML-NEXT: BlockSize: 4096
10 ; YAML-NEXT: Unknown0: 2
11 ; YAML-NEXT: NumBlocks: 25
12 ; YAML-NEXT: NumDirectoryBytes: 136
13 ; YAML-NEXT: Unknown1: 0
14 ; YAML-NEXT: BlockMapAddr: 24
[all …]
Dpdbdump-write.test3 ; to YAML. Then it tries to reconstruct as much of the original PDB as
5 ; the YAML, the PDB might be missing data required for any standard tool
7 ; constructed PDB to YAML, and verifies that the YAML is the same as the
8 ; original YAML generated from the good PDB.
/external/llvm/docs/
DYamlIO.rst2 YAML I/O
8 Introduction to YAML
11 YAML is a human readable data serialization language. The full YAML language
53 verbose, so YAML offers an alternate syntax for sequences called a "Flow
69 Introduction to YAML I/O
72 The use of indenting makes the YAML easy for a human to read and understand,
73 but having a program read and write YAML involves a lot of tedious details.
74 The YAML I/O library structures and simplifies reading and writing YAML
77 YAML I/O assumes you have some "native" data structures which you want to be
78 able to dump as YAML and recreate from YAML. The first step is to try
[all …]
DMIRLangRef.rst25 The MIR serialization format uses a YAML container. YAML is a standard
26 data serialization language, and the full YAML language spec can be read at
30 A MIR file is split up into a series of `YAML documents`_. The first document
107 When the first YAML document contains a `YAML block literal string`_, the MIR
110 Here is an example of a YAML document that contains an LLVM module:
129 The remaining YAML documents contain the machine functions. This is an example
130 of such YAML document:
155 The attribute ``body`` is a `YAML block literal string`_. Its value represents
163 `YAML block literal string`_ that corresponds to the machine function's body.
475 .. TODO: Describe the parsers default behaviour when optional YAML attributes
[all …]
/external/clang/unittests/Tooling/
DReplacementsYamlTest.cpp34 yaml::Output YAML(YamlContentStream); in TEST() local
35 YAML << Doc; in TEST()
69 yaml::Input YAML(YamlContent); in TEST() local
70 YAML >> DocActual; in TEST()
71 ASSERT_FALSE(YAML.error()); in TEST()
96 yaml::Input YAML(YamlContent); in TEST() local
97 YAML >> DocActual; in TEST()
98 ASSERT_FALSE(YAML.error()); in TEST()
/external/snakeyaml/src/test/resources/pyyaml/
Dspec-08-08.canonical1 %YAML 1.1
7 %YAML 1.1
10 %YAML 1.1
13 %YAML 1.1
Dspec-07-09.canonical1 %YAML 1.1
4 %YAML 1.1
7 %YAML 1.1
Dspec-07-10.canonical1 %YAML 1.1
4 %YAML 1.1
7 %YAML 1.1
Dduplicate-yaml-directive.loader-error1 %YAML 1.1
2 %YAML 1.1
Dspec-07-03.data1 %YAML 1.1
2 %YAML 1.1
Dempty-document-bug.canonical1 # This YAML stream contains no YAML documents.
Dspec-09-15.canonical1 %YAML 1.1
9 %YAML 1.1
Dinvalid-yaml-directive-version-3.loader-error1 %YAML 1.
Dinvalid-yaml-directive-version-4.loader-error1 %YAML 1.132.435
Dinvalid-yaml-directive-version-6.loader-error1 %YAML 123.C
Dinvalid-yaml-directive-version-2.loader-error1 %YAML 1e-5
Dinvalid-yaml-directive-version-5.loader-error1 %YAML A.0
Dscan-document-end-bug.canonical1 %YAML 1.1
Dspec-05-09.data1 %YAML 1.1
/external/snakeyaml/src/etc/
Dannouncement.msg25 YAML homepage: http://yaml.org/
26 YAML-core mailing list: http://lists.sourceforge.net/lists/listinfo/yaml-core
31 SnakeYAML is a YAML parser and emitter for Java 6.
33 SnakeYAML features a complete YAML 1.1 parser.
/external/snakeyaml/
DREADME.md4 [YAML](http://yaml.org) is a data serialization format designed for human readability and interacti…
6 SnakeYAML is a YAML processor for the Java Virtual Machine.
10 * a **complete** [YAML 1.1 processor](http://yaml.org/spec/1.1/current.html). In particular, SnakeY…
13 * support for all types from the [YAML types repository](http://yaml.org/type/index.html).
/external/llvm/test/YAMLParser/
Dspec-07-03.test3 %YAML 1.1
4 %YAML 1.1
/external/antlr/antlr-3.4/runtime/Perl5/tools/
Dport.pl11 use YAML::Tiny;
116 my $port = YAML::Tiny->read('port.yml');
139 my $port = YAML::Tiny->read('port.yml');
/external/llvm/tools/obj2yaml/
Dmacho2yaml.cpp466 Expected<std::unique_ptr<MachOYAML::Object>> YAML = Dumper.dump(); in macho2yaml() local
467 if (!YAML) in macho2yaml()
468 return YAML.takeError(); in macho2yaml()
471 YAMLFile.MachO = std::move(YAML.get()); in macho2yaml()
481 MachOYAML::UniversalBinary &YAML = *YAMLFile.FatMachO; in macho2yaml() local
482 YAML.Header.magic = Obj.getMagic(); in macho2yaml()
483 YAML.Header.nfat_arch = Obj.getNumberOfObjects(); in macho2yaml()
493 YAML.FatArchs.push_back(arch); in macho2yaml()
503 YAML.Slices.push_back(*YAMLObj.get()); in macho2yaml()
507 Yout << YAML; in macho2yaml()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/resolver/
DResolver.java48 public static final Pattern YAML = Pattern.compile("^(?:!|&|\\*)$"); field in Resolver
69 addImplicitResolver(Tag.YAML, YAML, "!&*"); in addImplicitResolvers()

123456