Searched refs:ScriptLexer (Results 1 – 4 of 4) sorted by relevance
40 StringRef ScriptLexer::getLine() { in getLine()51 size_t ScriptLexer::getLineNumber() { in getLineNumber()78 size_t ScriptLexer::getColumnNumber() { in getColumnNumber()83 std::string ScriptLexer::getCurrentLocation() { in getCurrentLocation()88 ScriptLexer::ScriptLexer(MemoryBufferRef mb) { tokenize(mb); } in ScriptLexer() function in ScriptLexer91 void ScriptLexer::setError(const Twine &msg) { in setError()103 void ScriptLexer::tokenize(MemoryBufferRef mb) { in tokenize()163 StringRef ScriptLexer::skipSpace(StringRef s) { in skipSpace()189 bool ScriptLexer::atEOF() { return errorCount() || tokens.size() == pos; } in atEOF()239 void ScriptLexer::maybeSplitExpr() { in maybeSplitExpr()[all …]
19 class ScriptLexer {21 explicit ScriptLexer(MemoryBufferRef mb);
49 class ScriptParser final : ScriptLexer {51 ScriptParser(MemoryBufferRef mb) : ScriptLexer(mb) { in ScriptParser()
69 SRCS+= ELF/ScriptLexer.cpp