Home
last modified time | relevance | path

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

/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 …]
Dyaml2obj.rst4 yaml2obj takes a YAML description of an object file and converts it to a binary
Dindex.rst153 A reference guide for using LLVM's YAML I/O library.
/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/llvm/test/YAMLParser/
Dspec-07-03.data3 %YAML 1.1
4 %YAML 1.1
Dspec-05-09.data3 %YAML 1.1
Dspec-07-02.data3 %YAML 1.2 # Attempt parsing
Dspec-07-13.data9 %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/lib/MC/
DCMakeLists.txt48 YAML.cpp
DAndroid.mk50 YAML.cpp
/external/llvm/tools/obj2yaml/
Delf2yaml.cpp329 std::unique_ptr<ELFYAML::Object> YAML(YAMLOrErr.get()); in elf2yaml() local
331 Yout << *YAML; in elf2yaml()
/external/jsoncpp/doc/
Djsoncpp.dox116 - <a HREF="http://www.yaml.org/">YAML</a> A data format designed for human readability.
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/tutorials/gettingstarted/
Dhelloworld.rst68 The syntax of this file is `YAML <http://www.yaml.org/>`_. For a complete list
/external/clang/docs/
DClangFormatStyleOptions.rst27 The ``.clang-format`` file uses YAML format:
/external/clang/unittests/Format/
DFormatTest.cpp9187 std::string YAML = configurationAsText(Style); in TEST_F() local
9190 EXPECT_EQ(0, parseConfiguration(YAML, &ParsedStyle).value()); in TEST_F()