HomeSort by: relevance | last modified time | path
    Searched defs:YAML (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Remarks/
RemarkFormat.h 25 enum class Format { Unknown, YAML, YAMLStrTab, Bitstream };
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
archive2yaml.cpp 109 std::unique_ptr<ArchYAML::Archive> YAML(YAMLOrErr.get());
110 yaml::Output Yout(Out);
111 Yout << *YAML;
macho2yaml.cpp 91 yaml::BinaryRef(Obj.getSectionContents(Sec.offset, Sec.size));
181 // instead of an entry in the DWARF section of the YAML.
483 * de-serialization, but it makes the YAML representation more human readable.
593 Expected<std::unique_ptr<MachOYAML::Object>> YAML = Dumper.dump();
594 if (!YAML)
595 return YAML.takeError();
597 yaml::YamlObjectFile YAMLFile;
598 YAMLFile.MachO = std::move(YAML.get());
600 yaml::Output Yout(Out);
606 yaml::YamlObjectFile YAMLFile
    [all...]
wasm2yaml.cpp 187 CustomSec->Payload = yaml::BinaryRef(WasmSec.Content);
205 // being represented as a custom section in the YAML output.
351 Function.Body = yaml::BinaryRef(Func.Body);
365 Seg.Content = yaml::BinaryRef(Segment.Data.Content);
401 std::unique_ptr<WasmYAML::Object> YAML(YAMLOrErr.get());
402 yaml::Output Yout(Out);
403 Yout << *YAML;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-converter.cpp 36 enum class ConvertFormats { BINARY, YAML, CHROME_TRACE_EVENT };
40 clEnumValN(ConvertFormats::YAML, "yaml", "output in yaml"),
76 using llvm::yaml::Output;
399 case ConvertFormats::YAML:
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
FrontendActions.cpp 364 namespace yaml { namespace in namespace:llvm
374 } // namespace yaml
450 std::string YAML;
452 llvm::raw_string_ostream OS(YAML);
453 llvm::yaml::Output YO(OS);
456 llvm::yaml::EmptyContext Context;
457 llvm::yaml::yamlize(YO, Entry, true, Context);
459 Out << "---" << YAML << "\n";

Completed in 21 milliseconds