Home
last modified time | relevance | path

Searched refs:ScriptLexer (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lld/ELF/
H A DScriptLexer.cpp40 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 ScriptLexer
91 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 …]
H A DScriptLexer.h19 class ScriptLexer {
21 explicit ScriptLexer(MemoryBufferRef mb);
H A DScriptParser.cpp49 class ScriptParser final : ScriptLexer {
51 ScriptParser(MemoryBufferRef mb) : ScriptLexer(mb) { in ScriptParser()
/freebsd/usr.bin/clang/lld/
H A DMakefile69 SRCS+= ELF/ScriptLexer.cpp