Home
last modified time | relevance | path

Searched refs:newline_pos (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
DDisassemblerLLVMC.cpp992 for (size_t newline_pos = 0; in PrintMCInst() local
993 (newline_pos = comments_string.find_first_of(g_newlines, newline_pos)) != in PrintMCInst()
996 comments_string.replace(comments_string.begin() + newline_pos, in PrintMCInst()
997 comments_string.begin() + newline_pos + 1, 1, ' '); in PrintMCInst()
/external/protobuf/src/google/protobuf/
Dtext_format_unittest.cc650 int newline_pos = val.find('\n'); in PrintString() local
651 while (newline_pos != std::string::npos) { in PrintString()
654 val.substr(last_pos, newline_pos + 1 - last_pos), generator); in PrintString()
655 last_pos = newline_pos + 1; in PrintString()
656 newline_pos = val.find('\n', last_pos); in PrintString()
/external/gflags/src/
Dgflags_completions.cc757 int newline_pos = static_cast<int>(newline) % FLAGS_tab_completion_columns; in GetLongFlagLine() local
758 int missing_spaces = FLAGS_tab_completion_columns - newline_pos; in GetLongFlagLine()
/external/libchrome/base/test/launcher/
Dtest_launcher.cc1333 size_t newline_pos = full_output.find("\n", end_pos); in GetTestOutputSnippet() local
1334 if (newline_pos != std::string::npos) in GetTestOutputSnippet()
1335 end_pos = newline_pos + 1; in GetTestOutputSnippet()
/external/angle/src/tests/test_utils/runner/
DTestSuite.cpp863 size_t newline_pos = fullOutput.find("\n", endPos); in PrintTestOutputSnippet() local
864 if (newline_pos != std::string::npos) in PrintTestOutputSnippet()
865 endPos = newline_pos + 1; in PrintTestOutputSnippet()