Home | History | Annotate | Download | only in Support

Lines Matching refs:End

209   StringRef::iterator End = Range.end();
217 if (Position + 1 != End &&
227 if (Position + 2 != End &&
242 if (Position + 3 != End &&
277 if (Current >= End)
278 Current = End - 1;
298 return StringRef(Current, End - Current);
308 return ::decodeUTF8(StringRef(Position, End - Position));
435 /// @brief Scan a ] or } and generate the proper flow collection end token.
477 /// @brief The end of the input (one past the last character).
478 StringRef::iterator End;
502 /// for the end of a simple key. And for cases where a single character
513 } // end namespace yaml
514 } // end namespace llvm
555 OS << "Stream-End: ";
567 OS << "Document-End: ";
573 OS << "Block-End: ";
588 OS << "Flow-Sequence-End: ";
594 OS << "Flow-Mapping-End: ";
641 for (StringRef::iterator i = Input.begin(), e = Input.end(); i != e; ++i) {
669 = decodeUTF8(StringRef(i, Input.end() - i));
674 EscapedInput.insert(EscapedInput.end(), Val.begin(), Val.end());
714 End = InputBuffer->getBufferEnd();
721 , End(InputBuffer->getBufferEnd())
750 if (std::find(SimpleKeys.begin(), SimpleKeys.end(), SK)
751 == SimpleKeys.end())
775 if (Position == End)
800 if (Position == End)
803 if (Position + 1 != End && *(Position + 1) == 0x0A)
815 if (Position == End)
823 if (Position == End)
856 if (Current == End)
859 && Current + 2 < End
876 if (Current == End)
891 assert(Current <= End && "Skipped past the end");
895 if (Position == End)
919 i != SimpleKeys.end();) {
931 if (!SimpleKeys.empty() && (SimpleKeys.end() - 1)->FlowLevel == Level)
1119 rollIndent(Column, Token::TK_BlockSequenceStart, TokenQueue.end());
1132 rollIndent(Column, Token::TK_BlockMappingStart, TokenQueue.end());
1154 for (i = TokenQueue.begin(), e = TokenQueue.end(); i != e; ++i) {
1167 rollIndent(Column, Token::TK_BlockMappingStart, TokenQueue.end());
1204 while (Current != End && *Current != '"')
1208 } while ( Current != End
1215 if (Current + 1 < End && *Current == '\'' && *(Current + 1) == '\'') {
1229 if (i == End)
1237 if (Current == End) {
1238 setError("Expected quote at end of scalar", Current);
1272 // Check for the end of the plain scalar.
1286 // Are we at the end?
1408 if (Current == End || isBlankOrBreak(Current)); // An empty tag.
1438 if (Current == End)
1448 if (Column == 0 && Current + 4 <= End
1452 && (Current + 3 == End || isBlankOrBreak(Current + 3)))
1455 if (Column == 0 && Current + 4 <= End
1459 && (Current + 3 == End || isBlankOrBreak(Current + 3)))
1515 && Current + 2 < End
1554 document_iterator Stream::end() {
1559 for (document_iterator i = begin(), e = end(); i != e; ++i)
1586 if (It != Doc->getTagMap().end())
1660 Storage.insert(Storage.end(), Valid.begin(), Valid.end());
1664 Storage.insert(Storage.end(), UnquotedValue.begin(), UnquotedValue.end());
1683 Storage.insert(Storage.end(), Valid.begin(), Valid.end());
1812 Storage.insert(Storage.end(), UnquotedValue.begin(), UnquotedValue.end());
1902 setError("Unexpected token. Expected Key or Block End", T);
1916 // Set this to end iterator.
1922 "Mapping End."
1955 setError( "Unexpected token. Expected Block Entry or Block End."
1986 // Set this to end iterator.
1994 // Set this to end iterator.