Searched refs:CurrentLine (Results 1 – 7 of 7) sorted by relevance
/external/vogar/src/vogar/ |
D | Console.java | 48 protected CurrentLine currentLine = CurrentLine.NEW; 94 MarkResetConsole.Mark savedStreamMark = currentLine == CurrentLine.STREAMED_OUTPUT in verbose() 102 currentLine = CurrentLine.VERBOSE; in verbose() 170 if (currentLine == CurrentLine.NAME) { in printResult() 185 currentLine = CurrentLine.NEW; in printResult() 340 if (currentLine == CurrentLine.VERBOSE && currentStreamMark != null && ansi) { in streamOutput() 343 } else if (currentLine != CurrentLine.STREAMED_OUTPUT) { in streamOutput() 349 currentLine = CurrentLine.STREAMED_OUTPUT; in streamOutput() 358 currentLine = CurrentLine.STREAMED_OUTPUT; in streamOutput() 369 if (currentLine == CurrentLine.VERBOSE && !verbose && ansi) { in newLine() [all …]
|
/external/llvm/include/llvm/Support/ |
D | LineIterator.h | 39 StringRef CurrentLine; variable 70 StringRef operator*() const { return CurrentLine; } 71 const StringRef *operator->() const { return &CurrentLine; } 75 LHS.CurrentLine.begin() == RHS.CurrentLine.begin();
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | LineIterator.h | 39 StringRef CurrentLine; variable 70 StringRef operator*() const { return CurrentLine; } 71 const StringRef *operator->() const { return &CurrentLine; } 75 LHS.CurrentLine.begin() == RHS.CurrentLine.begin();
|
/external/llvm/lib/Support/ |
D | LineIterator.cpp | 39 CurrentLine(Buffer.getBufferSize() ? Buffer.getBufferStart() : nullptr, in line_iterator() 54 const char *Pos = CurrentLine.end(); in advance() 83 CurrentLine = StringRef(); in advance() 93 CurrentLine = StringRef(Pos, Length); in advance()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | LineIterator.cpp | 39 CurrentLine(Buffer.getBufferSize() ? Buffer.getBufferStart() : nullptr, in line_iterator() 54 const char *Pos = CurrentLine.end(); in advance() 83 CurrentLine = StringRef(); in advance() 93 CurrentLine = StringRef(Pos, Length); in advance()
|
/external/toolchain-utils/crosperf/ |
D | experiment_file.py | 77 line = reader.CurrentLine().strip() 84 line = reader.CurrentLine().strip() 94 line = reader.CurrentLine().strip() 112 line = reader.CurrentLine().strip() 134 reader.CurrentLine(False))) 198 def CurrentLine(self, strip_comment=True): member in ExperimentFileReader 208 return self.CurrentLine(strip_comment)
|
/external/clang/lib/Format/ |
D | Format.cpp | 1052 unsigned CurrentLine, unsigned &NewLine) { in checkEmptyNamespace() argument 1053 unsigned InitLine = CurrentLine, End = AnnotatedLines.size(); in checkEmptyNamespace() 1058 if (!AnnotatedLines[++CurrentLine]->startsWith(tok::l_brace)) { in checkEmptyNamespace() 1059 NewLine = CurrentLine; in checkEmptyNamespace() 1062 } else if (!AnnotatedLines[CurrentLine]->endsWith(tok::l_brace)) { in checkEmptyNamespace() 1065 while (++CurrentLine < End) { in checkEmptyNamespace() 1066 if (AnnotatedLines[CurrentLine]->startsWith(tok::r_brace)) in checkEmptyNamespace() 1069 if (AnnotatedLines[CurrentLine]->startsWith(tok::kw_namespace) || in checkEmptyNamespace() 1070 AnnotatedLines[CurrentLine]->startsWith(tok::kw_inline, in checkEmptyNamespace() 1072 if (!checkEmptyNamespace(AnnotatedLines, CurrentLine, NewLine)) in checkEmptyNamespace() [all …]
|