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