Home | History | Annotate | Download | only in Support

Lines Matching defs:End

210   StringRef::iterator End = Range.end();
218 if (Position + 1 != End &&
228 if (Position + 2 != End &&
243 if (Position + 3 != End &&
278 if (Current >= End)
279 Current = End - 1;
301 return StringRef(Current, End - Current);
311 return ::decodeUTF8(StringRef(Position, End - Position));
438 /// @brief Scan a ] or } and generate the proper flow collection end token.
480 /// @brief The end of the input (one past the last character).
481 StringRef::iterator End;
505 /// for the end
516 } // end namespace yaml
517 } // end namespace llvm
558 OS << "Stream-End: ";
570 OS << "Document-End: ";
576 OS << "Block-End: ";
591 OS << "Flow-Sequence-End: ";
597 OS << "Flow-Mapping-End: ";
644 for (StringRef::iterator i = Input.begin(), e = Input.end(); i != e; ++i) {
672 = decodeUTF8(StringRef(i, Input.end() - i));
677 EscapedInput.insert(EscapedInput.end(), Val.begin(), Val.end());
716 End = InputBuffer.getBufferEnd();
747 if (std::find(SimpleKeys.begin(), SimpleKeys.end(), SK)
748 == SimpleKeys.end())
772 if (Position == End)
797 if (Position == End)
800 if (Position + 1 != End && *(Position + 1) == 0x0A)
812 if (Position == End)
820 if (Position == End)
853 if (Current == End)
856 && Current + 2 < End
873 if (Current == End)
888 assert(Current <= End && "Skipped past the end");
892 if (Position == End)
916 i != SimpleKeys.end();) {
928 if (!SimpleKeys.empty() && (SimpleKeys.end() - 1)->FlowLevel == Level)
1116 rollIndent(Column, Token::TK_BlockSequenceStart, TokenQueue.end());
1129 rollIndent(Column, Token::TK_BlockMappingStart, TokenQueue.end());
1151 for (i = TokenQueue.begin(), e = TokenQueue.end(); i != e; ++i) {
1164 rollIndent(Column, Token::TK_BlockMappingStart, TokenQueue.end());
1201 while (Current != End && *Current != '"')
1205 } while ( Current != End
1212 if (Current + 1 < End && *Current == '\'' && *(Current + 1) == '\'') {
1226 if (i == End)
1234 if (Current == End) {
1235 setError("Expected quote at end of scalar", Current);
1269 // Check for the end of the plain scalar.
1283 // Are we at the end?
1405 if (Current == End || isBlankOrBreak(Current)); // An empty tag.
1435 if (Current == End)
1445 if (Column == 0 && Current + 4 <= End
1449 && (Current + 3 == End || isBlankOrBreak(Current + 3)))
1452 if (Column == 0 && Current + 4 <= End
1456 && (Current + 3 == End || isBlankOrBreak(Current + 3)))
1512 && Current + 2 < End
1549 document_iterator Stream::end() {
1554 for (document_iterator i = begin(), e = end(); i != e; ++i)
1581 if (It != Doc->getTagMap().end())
1655 Storage.insert(Storage.end(), Valid.begin(), Valid.end());
1659 Storage.insert(Storage.end(), UnquotedValue.begin(), UnquotedValue.end());
1678 Storage.insert(Storage.end(), Valid.begin(), Valid.end());
1807 Storage.insert(Storage.end(), UnquotedValue.begin(), UnquotedValue.end());
1897 setError("Unexpected token. Expected Key or Block End", T);
1911 // Set this to end iterator.
1917 "Mapping End."
1950 setError( "Unexpected token. Expected Block Entry or Block End."
1981 // Set this to end iterator.
1989 // Set this to end iterator.