Lines Matching refs:ScriptLexer
45 StringRef ScriptLexer::getLine() { in getLine()
56 size_t ScriptLexer::getLineNumber() { in getLineNumber()
83 size_t ScriptLexer::getColumnNumber() { in getColumnNumber()
88 std::string ScriptLexer::getCurrentLocation() { in getCurrentLocation()
93 ScriptLexer::ScriptLexer(MemoryBufferRef mb) { tokenize(mb); } in ScriptLexer() function in ScriptLexer
96 void ScriptLexer::setError(const Twine &msg) { in setError()
108 void ScriptLexer::tokenize(MemoryBufferRef mb) { in tokenize()
168 StringRef ScriptLexer::skipSpace(StringRef s) { in skipSpace()
194 bool ScriptLexer::atEOF() { return errorCount() || tokens.size() == pos; } in atEOF()
244 void ScriptLexer::maybeSplitExpr() { in maybeSplitExpr()
255 StringRef ScriptLexer::next() { in next()
267 StringRef ScriptLexer::peek() { in peek()
275 StringRef ScriptLexer::peek2() { in peek2()
284 bool ScriptLexer::consume(StringRef tok) { in consume()
293 bool ScriptLexer::consumeLabel(StringRef tok) { in consumeLabel()
304 void ScriptLexer::skip() { (void)next(); } in skip()
306 void ScriptLexer::expect(StringRef expect) { in expect()
319 MemoryBufferRef ScriptLexer::getCurrentMB() { in getCurrentMB()