Home
last modified time | relevance | path

Searched refs:readLine (Results 1 – 11 of 11) sorted by relevance

/llvm-project/mlir/lib/ExecutionEngine/SparseTensor/
H A DFile.cpp42 void SparseTensorReader::readLine() { in readLine() function in SparseTensorReader
161 readLine(); in readMMEHeader()
181 readLine(); in readExtFROSTTHeader()
197 readLine(); // end of line in readExtFROSTTHeader()
/llvm-project/clang-tools-extra/clangd/
H A DJSONTransport.cpp200 bool readLine(std::FILE *In, llvm::SmallVectorImpl<char> &Out) { in readLine() function
233 if (feof(In) || ferror(In) || !readLine(In, Line)) in readStandardMessage()
303 while (readLine(In, Line)) { in readDelimitedMessage()
/llvm-project/mlir/lib/Tools/lsp-server-support/
H A DTransport.cpp279 LogicalResult readLine(std::FILE *in, SmallVectorImpl<char> &out) { in readLine() function
312 if (feof(in) || ferror(in) || failed(readLine(in, line))) in readStandardMessage()
355 while (succeeded(readLine(in, line))) { in readDelimitedMessage()
/llvm-project/mlir/include/mlir/ExecutionEngine/SparseTensor/
H A DFile.h223 void readLine();
230 readLine();
/llvm-project/llvm/lib/LineEditor/
H A DLineEditor.cpp257 std::optional<std::string> LineEditor::readLine() const { in readLine()
302 std::optional<std::string> LineEditor::readLine() const { in readLine()
251 std::optional<std::string> LineEditor::readLine() const { readLine() function in LineEditor
295 std::optional<std::string> LineEditor::readLine() const { readLine() function in LineEditor
/llvm-project/llvm/include/llvm/LineEditor/
H A DLineEditor.h40 std::optional<std::string> readLine() const;
/llvm-project/mlir/lib/Tools/mlir-query/
H A DMlirQueryMain.cpp104 while (std::optional<std::string> line = le.readLine()) { in mlirQueryMain()
/llvm-project/clang-tools-extra/clang-query/tool/
H A DClangQuery.cpp158 while (std::optional<std::string> Line = LE.readLine()) { in main()
/llvm-project/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Dsuspicious-semicolon.rst25 while ((line = readLine(file)) != NULL);
/llvm-project/clang/tools/clang-repl/
H A DClangRepl.cpp233 while (std::optional<std::string> Line = LE.readLine()) { in main()
/llvm-project/clang-tools-extra/clangd/index/dex/dexp/
H A DDexp.cpp447 while (std::optional<std::string> Request = LE.readLine()) in main()