Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DYAMLParser.h63 class document_iterator; variable
98 LLVM_ABI document_iterator begin();
99 LLVM_ABI document_iterator end();
560 friend class document_iterator; variable
595 class document_iterator {
597 document_iterator() = default;
598 document_iterator(std::unique_ptr<Document> &D) : Doc(&D) {} in document_iterator() function
600 bool operator==(const document_iterator &Other) const {
606 bool operator!=(const document_iterator &Other) const {
610 document_iterator operator++() {
/freebsd/contrib/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkParser.h57 yaml::document_iterator YAMLIt;
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp324 llvm::yaml::document_iterator I = YAMLStream.begin(); in parse()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DYAMLParser.cpp1936 document_iterator Stream::begin() { in begin()
1944 return document_iterator(CurrentDoc); in begin()
1947 document_iterator Stream::end() { in end()
1948 return document_iterator(); in end()
H A DVirtualFileSystem.cpp2184 yaml::document_iterator DI = Stream.begin(); in create()
/freebsd/contrib/llvm-project/clang/lib/CrossTU/
H A DCrossTranslationUnit.cpp628 llvm::yaml::document_iterator FirstInvocationFile = InvocationFile.begin(); in parseInvocationList()