Searched refs:yaml (Results 1 - 25 of 30) sorted by relevance

12

/freebsd-10-stable/contrib/llvm/lib/Object/
H A DYAML.cpp21 using namespace object::yaml;
23 void yaml::ScalarTraits<object::yaml::BinaryRef>::output(
24 const object::yaml::BinaryRef &Val, void *, llvm::raw_ostream &Out) {
28 StringRef yaml::ScalarTraits<object::yaml::BinaryRef>::input(
29 StringRef Scalar, void *, object::yaml::BinaryRef &Val) {
37 Val = object::yaml::BinaryRef(Scalar);
H A DCOFFYAML.cpp25 namespace yaml { namespace in namespace:llvm
261 IO.mapOptional("AuxiliaryData", S.AuxiliaryData, object::yaml::BinaryRef());
H A DELFYAML.cpp17 namespace yaml { namespace in namespace:llvm
337 } // end namespace yaml
/freebsd-10-stable/contrib/llvm/include/llvm/Object/
H A DYAML.h22 namespace yaml { namespace in namespace:llvm::object
54 /// namespace yaml {
61 /// } // end namespace yaml
106 namespace yaml { namespace in namespace:llvm
107 template <> struct ScalarTraits<object::yaml::BinaryRef> {
108 static void output(const object::yaml::BinaryRef &, void *,
110 static StringRef input(StringRef, void *, object::yaml::BinaryRef &);
H A DELFYAML.h53 llvm::yaml::Hex64 Entry;
59 llvm::yaml::Hex64 Value;
60 llvm::yaml::Hex64 Size;
71 llvm::yaml::Hex64 Address;
72 object::yaml::BinaryRef Content;
74 llvm::yaml::Hex64 AddressAlign;
93 namespace yaml { namespace in namespace:llvm
160 } // end namespace yaml
H A DCOFFYAML.h35 // The structure of the yaml files is not an exact 1:1 match to COFF. In order
36 // to use yaml::IO, we use these structures which are closer to the source.
47 object::yaml::BinaryRef SectionData;
57 object::yaml::BinaryRef AuxiliaryData;
76 namespace yaml { namespace in namespace:llvm
138 } // end namespace yaml
/freebsd-10-stable/contrib/libyaml/tests/
H A Dtest-version.c1 #include <yaml.h>
H A Drun-loader.c1 #include <yaml.h>
17 printf("Usage: %s file1.yaml ...\n", argv[0]);
H A Drun-parser.c1 #include <yaml.h>
17 printf("Usage: %s file1.yaml ...\n", argv[0]);
H A Drun-scanner.c1 #include <yaml.h>
17 printf("Usage: %s file1.yaml ...\n", argv[0]);
H A Dexample-reformatter.c2 #include <yaml.h>
H A Dexample-reformatter-alt.c2 #include <yaml.h>
H A Dtest-reader.c1 #include <yaml.h>
H A Drun-dumper.c1 #include <yaml.h>
218 printf("Usage: %s [-c] [-u] file1.yaml ...\n", argv[0]);
H A Drun-emitter.c1 #include <yaml.h>
244 printf("Usage: %s [-c] [-u] file1.yaml ...\n", argv[0]);
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp232 llvm::yaml::document_iterator I = YAMLStream.begin();
237 llvm::yaml::Node *Root = I->getRoot();
242 llvm::yaml::SequenceNode *Array = dyn_cast<llvm::yaml::SequenceNode>(Root);
247 for (llvm::yaml::SequenceNode::iterator AI = Array->begin(),
250 llvm::yaml::MappingNode *Object = dyn_cast<llvm::yaml::MappingNode>(&*AI);
255 llvm::yaml::ScalarNode *Directory = NULL;
256 llvm::yaml::ScalarNode *Command = NULL;
257 llvm::yaml
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Tooling/
H A DJSONCompilationDatabase.h95 typedef std::pair<llvm::yaml::ScalarNode*,
96 llvm::yaml::ScalarNode*> CompileCommandRef;
109 llvm::yaml::Stream YAMLStream;
H A DReplacementsYaml.h27 namespace yaml { namespace in namespace:llvm
85 } // end namespace yaml
/freebsd-10-stable/lib/libyaml/
H A DMakefile5 LIB= yaml
/freebsd-10-stable/contrib/libyaml/
H A DMakefile.am9 pkgconfig_DATA = yaml-0.1.pc
/freebsd-10-stable/contrib/llvm/include/llvm/Support/
H A DYAMLParser.h12 // See http://www.yaml.org/spec/1.2/spec.html for the full standard.
25 // yaml::Stream stream(input, sm);
27 // for (yaml::document_iterator di = stream.begin(), de = stream.end();
29 // yaml::Node *n = di->getRoot();
57 namespace yaml { namespace in namespace:llvm
364 template <class T> friend typename T::iterator yaml::begin(T &);
365 template <class T> friend void yaml::skip(T &);
368 return yaml::begin(*this);
374 yaml::skip(*this);
423 template <class T> friend typename T::iterator yaml
[all...]
H A DYAMLTraits.h31 namespace yaml { namespace in namespace:llvm
88 /// to/from a yaml scalar. For example:
675 /// The Input class is used to parse a yaml document into in-memory structs
678 /// It works by using YAMLParser to do a syntax parse of the entire yaml
680 /// each yaml Node. The extra layer is buffering. The low level yaml
688 // Construct a yaml Input object from a StringRef and optional
806 OwningPtr<llvm::yaml::Stream> Strm;
810 llvm::yaml::document_iterator DocIterator;
820 /// The Output class is used to generate a yaml documen
[all...]
/freebsd-10-stable/contrib/llvm/lib/MC/
H A DMCModuleYAML.cpp100 yaml::Hex64 StartAddress;
104 object::yaml::BinaryRef Data;
108 yaml::Hex64 Address;
109 std::vector<yaml::Hex64> Preds;
110 std::vector<yaml::Hex64> Succs;
126 LLVM_YAML_IS_FLOW_SEQUENCE_VECTOR(llvm::yaml::Hex64)
135 namespace yaml { namespace in namespace:llvm
271 } // end namespace yaml
400 typedef std::vector<yaml::Hex64>::const_iterator AddrIt;
440 yaml
[all...]
/freebsd-10-stable/contrib/llvm/lib/Support/
H A DYAMLParser.cpp26 using namespace yaml;
98 namespace yaml { namespace in namespace:llvm
258 namespace yaml { namespace in namespace:llvm
516 } // end namespace yaml
548 bool yaml::dumpTokens(StringRef Input, raw_ostream &OS) {
629 bool yaml::scanTokens(StringRef Input) {
631 llvm::yaml::Scanner scanner(Input, SM);
633 llvm::yaml::Token T = scanner.getNext();
642 std::string yaml::escape(StringRef Input) {
1644 return "tag:yaml
[all...]
H A DYAMLTraits.cpp20 using namespace yaml;
594 // the whole key/value can be not written. But, that produces wrong yaml

Completed in 214 milliseconds

12