HomeSort by: relevance | last modified time | path
    Searched refs:yaml (Results 1 - 25 of 135) sorted by relevancy

1 2 3 4 5 6

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
SymbolRewriter.h 46 namespace yaml { namespace in namespace:llvm
53 } // end namespace yaml
100 bool parseEntry(yaml::Stream &Stream, yaml::KeyValueNode &Entry,
102 bool parseRewriteFunctionDescriptor(yaml::Stream &Stream,
103 yaml::ScalarNode *Key,
104 yaml::MappingNode *Value,
106 bool parseRewriteGlobalVariableDescriptor(yaml::Stream &Stream,
107 yaml::ScalarNode *Key,
108 yaml::MappingNode *Value
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
YAML.cpp 1 //===- YAML.cpp - YAMLIO utilities for object files -----------------------===//
9 // This file defines utility classes for handling the YAML representation of
14 #include "llvm/ObjectYAML/YAML.h"
22 void yaml::ScalarTraits<yaml::BinaryRef>::output(
23 const yaml::BinaryRef &Val, void *, raw_ostream &Out) {
27 StringRef yaml::ScalarTraits<yaml::BinaryRef>::input(StringRef Scalar, void *,
28 yaml::BinaryRef &Val) {
36 Val = yaml::BinaryRef(Scalar)
    [all...]
yaml2obj.cpp 19 namespace yaml { namespace in namespace:llvm
21 bool convertYAML(yaml::Input &YIn, raw_ostream &Out, ErrorHandler ErrHandler,
28 yaml::YamlObjectFile Doc;
31 ErrHandler("failed to parse YAML input: " + EC.message());
59 yaml2ObjectFile(SmallVectorImpl<char> &Storage, StringRef Yaml,
64 yaml::Input YIn(Yaml);
78 } // namespace yaml
MinidumpYAML.cpp 16 /// Perform an optional yaml-mapping of an endian-aware type EndianType. The
20 static inline void mapOptional(yaml::IO &IO, const char *Key, EndianType &Val,
25 /// Yaml-map an endian-aware type EndianType as some other type MapType.
27 static inline void mapRequiredAs(yaml::IO &IO, const char *Key,
34 /// Perform an optional yaml-mapping of an endian-aware type EndianType as some
37 static inline void mapOptionalAs(yaml::IO &IO, const char *Key, EndianType &Val,
45 /// Return the appropriate yaml Hex type for a given endian-aware type.
47 template <> struct HexType<support::ulittle16_t> { using type = yaml::Hex16; };
48 template <> struct HexType<support::ulittle32_t> { using type = yaml::Hex32; };
49 template <> struct HexType<support::ulittle64_t> { using type = yaml::Hex64; }
178 namespace yaml { namespace in namespace:llvm
215 namespace yaml { namespace in namespace:llvm
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Remarks/
YAMLRemarkParser.h 1 //===-- YAMLRemarkParser.h - Parser for YAML remarks ------------*- C++/-*-===//
9 // This file provides the impementation of the YAML remark parser.
35 YAMLParseError(StringRef Message, SourceMgr &SM, yaml::Stream &Stream,
36 yaml::Node &Node);
49 /// Regular YAML to Remark parser.
53 /// Last error message that can come from the YAML parser diagnostics.
58 /// Stream for yaml parsing.
59 yaml::Stream Stream;
60 /// Iterator in the YAML stream.
61 yaml::document_iterator YAMLIt
    [all...]
YAMLRemarkParser.cpp 36 yaml::Stream &Stream, yaml::Node &Node) {
174 : RemarkParser{Format::YAML}, StrTab(std::move(StrTab)), LastErrorMessage(),
177 Error YAMLRemarkParser::error(StringRef Message, yaml::Node &Node) {
190 YAMLRemarkParser::parseRemark(yaml::Document &RemarkEntry) {
194 yaml::Node *YAMLRoot = RemarkEntry.getRoot();
197 "not a valid YAML file.");
200 auto *Root = dyn_cast<yaml::MappingNode>(YAMLRoot);
216 for (yaml::KeyValueNode &RemarkField : *Root) {
248 auto *Args = dyn_cast<yaml::SequenceNode>(RemarkField.getValue())
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/dnstap/
ydump.py 15 import yaml namespace
17 print("No python yaml module, skipping")
28 for y in yaml.load_all(f.stdout, Loader=yaml.SafeLoader):
  /src/external/apache2/llvm/dist/llvm/benchmarks/
DummyYAML.cpp 8 llvm::yaml::isNumeric(copy);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
PdbYaml.h 35 namespace yaml { namespace in namespace:llvm::pdb
118 LLVM_YAML_DECLARE_MAPPING_TRAITS(pdb::yaml::PdbObject)
119 LLVM_YAML_DECLARE_MAPPING_TRAITS(pdb::yaml::MSFHeaders)
121 LLVM_YAML_DECLARE_MAPPING_TRAITS(pdb::yaml::StreamBlockList)
122 LLVM_YAML_DECLARE_MAPPING_TRAITS(pdb::yaml::PdbInfoStream)
123 LLVM_YAML_DECLARE_MAPPING_TRAITS(pdb::yaml::PdbDbiStream)
124 LLVM_YAML_DECLARE_MAPPING_TRAITS(pdb::yaml::PdbTpiStream)
125 LLVM_YAML_DECLARE_MAPPING_TRAITS(pdb::yaml::PdbPublicsStream)
126 LLVM_YAML_DECLARE_MAPPING_TRAITS(pdb::yaml::NamedStreamMapping)
127 LLVM_YAML_DECLARE_MAPPING_TRAITS(pdb::yaml::PdbModiStream
    [all...]
YAMLOutputStyle.h 42 llvm::yaml::Output Out;
44 yaml::PdbObject Obj;
  /src/external/mpl/bind/dist/bin/tests/system/digdelv/
yamlget.py 15 import yaml namespace
17 print("No python yaml module, skipping")
21 for item in yaml.safe_load_all(f):
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
XCOFFYAML.h 9 // This file declares classes for handling the YAML representation of XCOFF.
16 #include "llvm/ObjectYAML/YAML.h"
23 llvm::yaml::Hex16 Magic;
26 llvm::yaml::Hex32 SymbolTableOffset; // File offset to symbol table.
29 llvm::yaml::Hex16 Flags;
34 llvm::yaml::Hex32 Value; // Symbol value; storage class-dependent.
36 llvm::yaml::Hex16 Type;
50 namespace yaml { namespace in namespace:llvm
68 } // namespace yaml
DWARFYAML.h 10 /// This file declares classes for handling the YAML representation
21 #include "llvm/ObjectYAML/YAML.h"
33 llvm::yaml::Hex64 Value; // Some DWARF5 attributes have values
37 Optional<yaml::Hex64> Code;
49 llvm::yaml::Hex64 Address;
50 yaml::Hex64 Length;
55 Optional<yaml::Hex64> Length;
57 yaml::Hex64 CuOffset;
58 Optional<yaml::Hex8> AddrSize;
59 yaml::Hex8 SegSize
280 namespace yaml { namespace in namespace:llvm
    [all...]
ArchiveYAML.h 10 /// This file declares classes for handling the YAML representation of archives.
18 #include "llvm/ObjectYAML/YAML.h"
47 Optional<yaml::BinaryRef> Content;
48 Optional<llvm::yaml::Hex8> PaddingByte;
53 Optional<yaml::BinaryRef> Content;
62 namespace yaml { namespace in namespace:llvm
74 } // end namespace yaml
MachOYAML.h 10 /// This file declares classes for handling the YAML representation
21 #include "llvm/ObjectYAML/YAML.h"
32 llvm::yaml::Hex32 address;
47 llvm::yaml::Hex64 addr;
49 llvm::yaml::Hex32 offset;
51 llvm::yaml::Hex32 reloff;
53 llvm::yaml::Hex32 flags;
54 llvm::yaml::Hex32 reserved1;
55 llvm::yaml::Hex32 reserved2;
56 llvm::yaml::Hex32 reserved3
175 namespace yaml { namespace in namespace:llvm
    [all...]
ELFYAML.h 10 /// This file declares classes for handling the YAML representation
22 #include "llvm/ObjectYAML/YAML.h"
116 llvm::yaml::Hex8 ABIVersion;
120 llvm::yaml::Hex64 Entry;
122 Optional<llvm::yaml::Hex64> EPhOff;
123 Optional<llvm::yaml::Hex16> EPhEntSize;
124 Optional<llvm::yaml::Hex16> EPhNum;
125 Optional<llvm::yaml::Hex16> EShEntSize;
126 Optional<llvm::yaml::Hex64> EShOff;
127 Optional<llvm::yaml::Hex16> EShNum
754 namespace yaml { namespace in namespace:llvm
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/yaml-bench/
YAMLBench.cpp 9 // This program executes the YAMLParser on differently sized YAML texts and
36 , cl::desc("Print the canonical YAML for this file.")
70 /// Pretty print a tag by replacing tag:yaml.org,2002: with !!.
71 static std::string prettyTag(yaml::Node *N) {
73 if (StringRef(Tag).startswith("tag:yaml.org,2002:")) {
84 static void dumpNode( yaml::Node *n
94 if (yaml::ScalarNode *sn = dyn_cast<yaml::ScalarNode>(n)) {
97 outs() << prettyTag(n) << " \"" << yaml::escape(Val) << "\"";
98 } else if (yaml::BlockScalarNode *BN = dyn_cast<yaml::BlockScalarNode>(n))
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
minidump2yaml.cpp 1 //===- minidump2yaml.cpp - Minidump to yaml conversion tool -----*- C++ -*-===//
20 yaml::Output Output(Out);
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
JSONCompilationDatabase.h 109 // points to the corresponding scalar nodes in the YAML stream.
116 std::tuple<llvm::yaml::ScalarNode *, llvm::yaml::ScalarNode *,
117 std::vector<llvm::yaml::ScalarNode *>,
118 llvm::yaml::ScalarNode *>;
136 llvm::yaml::Stream YAMLStream;
  /src/external/apache2/llvm/dist/llvm/tools/opt-viewer/
opt-diff.py 5 desc = '''Generate the difference of two YAML files into a new YAML file (works on
12 import yaml
15 from yaml import CLoader as Loader
17 from yaml import Loader
50 help='Do not display any indicator of how many YAML files were read.')
51 parser.add_argument('--output', '-o', default='diff{}.opt.yaml')
75 yaml.dump_all(result[i:i + args.max_size], stream)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SymbolRewriter.cpp 11 // YAML configuration file.
13 // The YAML configuration file format is as follows:
271 yaml::Stream YS(MapFile->getBuffer(), SM);
274 yaml::MappingNode *DescriptorList;
277 if (isa<yaml::NullNode>(Document.getRoot()))
280 DescriptorList = dyn_cast<yaml::MappingNode>(Document.getRoot());
294 bool RewriteMapParser::parseEntry(yaml::Stream &YS, yaml::KeyValueNode &Entry,
296 yaml::ScalarNode *Key;
297 yaml::MappingNode *Value
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyTargetMachine.h 53 yaml::MachineFunctionInfo *createDefaultFuncInfoYAML() const override;
54 yaml::MachineFunctionInfo *
56 bool parseMachineFunctionInfo(const yaml::MachineFunctionInfo &,
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MIRPrinter.cpp 125 void convert(yaml::MachineFunction &MF, const MachineRegisterInfo &RegInfo,
127 void convert(ModuleSlotTracker &MST, yaml::MachineFrameInfo &YamlMFI,
129 void convert(yaml::MachineFunction &MF,
131 void convert(ModuleSlotTracker &MST, yaml::MachineJumpTable &YamlJTI,
133 void convertStackObjects(yaml::MachineFunction &YMF,
135 void convertCallSiteObjects(yaml::MachineFunction &YMF,
176 namespace yaml { namespace in namespace:llvm
190 } // end namespace yaml
193 static void printRegMIR(unsigned Reg, yaml::StringValue &Dest,
202 yaml::MachineFunction YamlMF
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64TargetMachine.h 52 yaml::MachineFunctionInfo *createDefaultFuncInfoYAML() const override;
53 yaml::MachineFunctionInfo *
55 bool parseMachineFunctionInfo(const yaml::MachineFunctionInfo &,
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Inclusions/
IncludeStyle.cpp 14 namespace yaml { namespace in namespace:llvm
31 } // namespace yaml

Completed in 29 milliseconds

1 2 3 4 5 6