HomeSort by relevance Sort by last modified time
    Searched defs:yaml (Results 1 - 14 of 14) sorted by null

  /external/llvm/tools/yaml2obj/
yaml2obj.h 17 namespace yaml { namespace in namespace:llvm
21 int yaml2coff(llvm::yaml::Input &YIn, llvm::raw_ostream &Out);
22 int yaml2elf(llvm::yaml::Input &YIn, llvm::raw_ostream &Out);
  /external/llvm/include/llvm/MC/
YAML.h 7 namespace yaml { namespace in namespace:llvm
13 /// It renders as a string of hex digits in a YAML file.
14 /// For example, it might render as `DEADBEEFCAFEBABE` (YAML does not
27 /// The YAML mapping:
38 /// namespace yaml {
45 /// } // end namespace yaml
  /external/llvm/unittests/MC/
YAMLTest.cpp 1 //===- llvm/unittest/Object/YAMLTest.cpp - Tests for Object YAML ----------===//
10 #include "llvm/MC/YAML.h"
17 yaml::BinaryRef Binary;
21 namespace yaml { namespace in namespace:llvm
28 } // end namespace yaml
35 yaml::Output YOut(OS);
  /external/clang/include/clang/Tooling/
ReplacementsYaml.h 11 /// \brief This file defines the structure of a YAML document for serializing
27 namespace yaml { namespace in namespace:llvm
73 } // end namespace yaml
  /external/llvm/lib/Object/
ELFYAML.cpp 10 // This file defines classes for handling the YAML representation of ELF.
21 namespace yaml { namespace in namespace:llvm
740 } // end namespace yaml
COFFYAML.cpp 10 // This file defines classes for handling the YAML representation of COFF.
25 namespace yaml { namespace in namespace:llvm
  /external/llvm/include/llvm/Object/
COFFYAML.h 10 // This file declares classes for handling the YAML representation of COFF.
18 #include "llvm/MC/YAML.h"
36 // The structure of the yaml files is not an exact 1:1 match to COFF. In order
37 // to use yaml::IO, we use these structures which are closer to the source.
52 yaml::BinaryRef SectionData;
86 namespace yaml { namespace in namespace:llvm
188 } // end namespace yaml
ELFYAML.h 11 /// \brief This file declares classes for handling the YAML representation
19 #include "llvm/MC/YAML.h"
58 llvm::yaml::Hex64 Entry;
64 llvm::yaml::Hex64 Value;
65 llvm::yaml::Hex64 Size;
79 llvm::yaml::Hex64 Address;
81 llvm::yaml::Hex64 AddressAlign;
86 yaml::BinaryRef Content;
87 llvm::yaml::Hex64 Size;
94 llvm::yaml::Hex64 Offset
125 namespace yaml { namespace in namespace:llvm
    [all...]
  /external/llvm/include/llvm/Support/
YAMLParser.h 1 //===--- YAMLParser.h - Simple YAML parser --------------------------------===//
10 // This is a YAML 1.2 parser.
12 // See http://www.yaml.org/spec/1.2/spec.html for the full standard.
20 // The most important class here is Stream. This represents a YAML stream with
25 // yaml::Stream stream(input, sm);
27 // for (yaml::document_iterator di = stream.begin(), de = stream.end();
29 // yaml::Node *n = di->getRoot();
55 namespace yaml { namespace in namespace:llvm
75 /// \brief This class represents a YAML stream potentially containing multiple
203 // Return Value without any escaping or folding or other fun YAML stuff. Thi
    [all...]
YAMLTraits.h 30 namespace yaml { namespace in namespace:llvm
34 /// to/from a YAML mapping. For example:
53 /// to/from a YAML scalar where there is a one-to-one mapping between
54 /// in-memory values and a string in YAML. For example:
71 /// of bit values and the YAML representation is a flow sequence of
89 /// to/from a yaml scalar. For example:
121 /// to/from a YAML sequence. For example:
140 // The following is option and will cause generated YAML to use
147 /// to/from a list of YAML documents.
640 assert(Err.empty() && "invalid struct trying to be written as yaml");
    [all...]
  /external/llvm/lib/MC/MCAnalysis/
MCModuleYAML.cpp 10 // This file defines classes for handling the YAML representation of MCModule.
20 #include "llvm/MC/YAML.h"
101 yaml::Hex64 StartAddress;
105 yaml::BinaryRef Data;
109 yaml::Hex64 Address;
110 std::vector<yaml::Hex64> Preds;
111 std::vector<yaml::Hex64> Succs;
127 LLVM_YAML_IS_FLOW_SEQUENCE_VECTOR(llvm::yaml::Hex64)
136 namespace yaml { namespace in namespace:llvm
274 } // end namespace yaml
    [all...]
  /external/llvm/unittests/Support/
YAMLIOTest.cpp 18 using llvm::yaml::Input;
19 using llvm::yaml::Output;
20 using llvm::yaml::IO;
21 using llvm::yaml::MappingTraits;
22 using llvm::yaml::MappingNormalization;
23 using llvm::yaml::ScalarTraits;
24 using llvm::yaml::Hex8;
25 using llvm::yaml::Hex16;
26 using llvm::yaml::Hex32;
27 using llvm::yaml::Hex64
51 namespace yaml { namespace in namespace:llvm
169 namespace yaml { namespace in namespace:llvm
325 namespace yaml { namespace in namespace:llvm
449 namespace yaml { namespace in namespace:llvm
523 namespace yaml { namespace in namespace:llvm
615 namespace yaml { namespace in namespace:llvm
698 namespace yaml { namespace in namespace:llvm
726 namespace yaml { namespace in namespace:llvm
798 namespace yaml { namespace in namespace:llvm
910 namespace yaml { namespace in namespace:llvm
1023 namespace yaml { namespace in namespace:llvm
1102 namespace yaml { namespace in namespace:llvm
1184 namespace yaml { namespace in namespace:llvm
1618 namespace yaml { namespace in namespace:llvm
    [all...]
  /external/clang/lib/Format/
Format.cpp 40 namespace yaml { namespace in namespace:llvm
494 llvm::yaml::Input Input(Text);
535 llvm::yaml::Output Output(Stream);
    [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 1 //===--- YAMLParser.cpp - Simple YAML parser ------------------------------===//
10 // This file implements a YAML parser.
26 using namespace yaml;
98 namespace yaml { namespace in namespace:llvm
108 /// Token - A single YAML token.
258 namespace yaml { namespace in namespace:llvm
259 /// @brief Scans YAML tokens from a MemoryBuffer.
311 // The following functions are based on the gramar rules in the YAML spec. The
480 /// @brief Current YAML indentation level in spaces.
513 } // end namespace yaml
    [all...]

Completed in 468 milliseconds