Lines Matching refs:ScriptLexer
43 StringRef ScriptLexer::getLine() { in getLine()
54 size_t ScriptLexer::getLineNumber() { in getLineNumber()
81 size_t ScriptLexer::getColumnNumber() { in getColumnNumber()
86 std::string ScriptLexer::getCurrentLocation() { in getCurrentLocation()
91 ScriptLexer::ScriptLexer(MemoryBufferRef mb) { tokenize(mb); } in ScriptLexer() function in ScriptLexer
94 void ScriptLexer::setError(const Twine &msg) { in setError()
106 void ScriptLexer::tokenize(MemoryBufferRef mb) { in tokenize()
162 StringRef ScriptLexer::skipSpace(StringRef s) { in skipSpace()
188 bool ScriptLexer::atEOF() { return errorCount() || tokens.size() == pos; } in atEOF()
238 void ScriptLexer::maybeSplitExpr() { in maybeSplitExpr()
249 StringRef ScriptLexer::next() { in next()
261 StringRef ScriptLexer::peek() { in peek()
269 StringRef ScriptLexer::peek2() { in peek2()
278 bool ScriptLexer::consume(StringRef tok) { in consume()
287 bool ScriptLexer::consumeLabel(StringRef tok) { in consumeLabel()
298 void ScriptLexer::skip() { (void)next(); } in skip()
300 void ScriptLexer::expect(StringRef expect) { in expect()
313 MemoryBufferRef ScriptLexer::getCurrentMB() { in getCurrentMB()