Home
last modified time | relevance | path

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

/freebsd/contrib/ntp/sntp/tests/
H A DfileHandlingTest.c66 int currentLine = 1; in CompareFileContent() local
79 printf("Comparision failed on line %d",currentLine); in CompareFileContent()
83 currentLine++; in CompareFileContent()
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DMacroCallReconstructor.cpp232 } else if (!currentLine()->Tokens.empty()) { in reconstruct()
237 currentLine()->Tokens.back()->Tok; in reconstruct()
415 currentLine(), parentLine().Tokens.back()->Tok, Token)); in processNextReconstructed()
499 L = L ? L : currentLine(); in appendToken()
551 MacroCallReconstructor::currentLine() { in currentLine() function in clang::format::MacroCallReconstructor
H A DMacros.h250 ReconstructedLine *currentLine();
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp879 std::string currentLine = lines.GetStringAtIndex(m_current_line_index); in FixIndentationCommand() local
881 currentLine = currentLine.insert(0, indent_correction, ' '); in FixIndentationCommand()
883 currentLine = currentLine.erase(0, -indent_correction); in FixIndentationCommand()
886 m_input_lines[m_current_line_index] = m_utf8conv.from_bytes(currentLine); in FixIndentationCommand()
888 m_input_lines[m_current_line_index] = currentLine; in FixIndentationCommand()