Searched refs:line_end (Results 1 - 7 of 7) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/gtest/src/
H A Dgtest-death-test.cc507 const size_t line_end = output.find('\n', at); local in function:testing::internal::FormatDeathTestOutput
509 if (line_end == ::std::string::npos) {
513 ret += output.substr(at, line_end + 1 - at);
514 at = line_end + 1;
/xsrc/external/mit/MesaLib/dist/src/gtest/src/
H A Dgtest-death-test.cc536 const size_t line_end = output.find('\n', at); local in function:testing::internal::FormatDeathTestOutput
538 if (line_end == ::std::string::npos) {
542 ret += output.substr(at, line_end + 1 - at);
543 at = line_end + 1;
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_widgets.cpp167 const char* line_end = (const char*)memchr(line, '\n', text_end - line); local in function:ImGui::TextUnformatted
168 if (!line_end)
169 line_end = text_end;
170 line = line_end + 1;
186 const char* line_end = (const char*)memchr(line, '\n', text_end - line); local in function:ImGui::TextUnformatted
187 if (!line_end)
188 line_end = text_end;
189 const ImVec2 line_size = CalcTextSize(line, line_end, false);
191 RenderText(pos, line, line_end, false);
192 line = line_end
202 const char* line_end = (const char*)memchr(line, '\\n', text_end - line); local in function:ImGui::TextUnformatted
[all...]
H A Dimgui.cpp8814 const char* line_end = ImStreolRange(line_start, text_end); local in function:ImGui::LogRenderedText
8816 const bool is_last_line = (line_end == text_end);
8817 if (!is_last_line || (line_start != line_end))
8819 const int char_count = (int)(line_end - line_start);
8828 text_remaining = line_end + 1;
9024 char* line_end = NULL; local in function:ImGui::LoadIniSettingsFromMemory
9025 for (char* line = buf; line < buf_end; line = line_end + 1)
9030 line_end = line;
9031 while (line_end < buf_end && *line_end !
[all...]
H A Dimgui_demo.cpp3533 const char* line_end = (line_no + 1 < LineOffsets.Size) ? (buf + LineOffsets[line_no + 1] - 1) : buf_end; local in function:ExampleAppLog::Draw
3534 if (Filter.PassFilter(line_start, line_end))
3535 ImGui::TextUnformatted(line_start, line_end);
3556 const char* line_end = (line_no + 1 < LineOffsets.Size) ? (buf + LineOffsets[line_no + 1] - 1) : buf_end; local in function:ExampleAppLog::Draw
3557 ImGui::TextUnformatted(line_start, line_end);
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui_widgets.cpp167 const char* line_end = (const char*)memchr(line, '\n', text_end - line); local in function:ImGui::TextUnformatted
168 if (!line_end)
169 line_end = text_end;
170 line = line_end + 1;
186 const char* line_end = (const char*)memchr(line, '\n', text_end - line); local in function:ImGui::TextUnformatted
187 if (!line_end)
188 line_end = text_end;
189 const ImVec2 line_size = CalcTextSize(line, line_end, false);
191 RenderText(pos, line, line_end, false);
192 line = line_end
202 const char* line_end = (const char*)memchr(line, '\\n', text_end - line); local in function:ImGui::TextUnformatted
[all...]
H A Dimgui.cpp8814 const char* line_end = ImStreolRange(line_start, text_end); local in function:ImGui::LogRenderedText
8816 const bool is_last_line = (line_end == text_end);
8817 if (!is_last_line || (line_start != line_end))
8819 const int char_count = (int)(line_end - line_start);
8828 text_remaining = line_end + 1;
9024 char* line_end = NULL; local in function:ImGui::LoadIniSettingsFromMemory
9025 for (char* line = buf; line < buf_end; line = line_end + 1)
9030 line_end = line;
9031 while (line_end < buf_end && *line_end !
[all...]

Completed in 56 milliseconds