Home | History | Annotate | Download | only in ObjectYAML

Lines Matching full:yaml

1 //===- YAML.cpp - YAMLIO utilities for object files -----------------------===//
10 // This file defines utility classes for handling the YAML representation of
15 #include "llvm/ObjectYAML/YAML.h"
22 void yaml::ScalarTraits<yaml::BinaryRef>::output(
23 const yaml::BinaryRef &Val, void *, llvm::raw_ostream &Out) {
27 StringRef yaml::ScalarTraits<yaml::BinaryRef>::input(StringRef Scalar, void *,
28 yaml::BinaryRef &Val) {
36 Val = yaml::BinaryRef(Scalar);
40 void yaml::BinaryRef::writeAsBinary(raw_ostream &OS) const {
52 void yaml::BinaryRef::writeAsHex(raw_ostream &OS) const {