Home
last modified time | relevance | path

Searched refs:document_iterator (Results 1 – 7 of 7) sorted by relevance

/external/llvm/include/llvm/Support/
DYAMLParser.h56 class document_iterator; variable
84 document_iterator begin();
85 document_iterator end();
515 friend class document_iterator; variable
550 class document_iterator {
552 document_iterator() : Doc(nullptr) {} in document_iterator() function
553 document_iterator(std::unique_ptr<Document> &D) : Doc(&D) {} in document_iterator() function
555 bool operator==(const document_iterator &Other) {
561 bool operator!=(const document_iterator &Other) { return !(*this == Other); }
563 document_iterator operator++() {
DYAMLTraits.h1070 llvm::yaml::document_iterator DocIterator;
/external/llvm/utils/yaml-bench/
DYAMLBench.cpp133 for (yaml::document_iterator di = stream.begin(), de = stream.end(); di != de; in dumpStream()
/external/llvm/lib/Support/
DYAMLParser.cpp1788 document_iterator Stream::begin() { in begin()
1796 return document_iterator(CurrentDoc); in begin()
1799 document_iterator Stream::end() { in end()
1800 return document_iterator(); in end()
1804 for (document_iterator i = begin(), e = end(); i != e; ++i) in skip()
/external/clang/lib/Tooling/
DJSONCompilationDatabase.cpp240 llvm::yaml::document_iterator I = YAMLStream.begin(); in parse()
/external/clang/lib/Basic/
DVirtualFileSystem.cpp1199 yaml::document_iterator DI = Stream.begin(); in create()
/external/clang/lib/ARCMigrate/
DObjCMT.cpp2093 document_iterator I = YAMLStream.begin(); in parse()