Home
last modified time | relevance | path

Searched refs:values_count (Results 1 – 12 of 12) sorted by relevance

/third_party/flutter/skia/third_party/externals/imgui/
Dimgui_widgets.cpp5225 …* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_off… in PlotEx() argument
5253 for (int i = 0; i < values_count; i++) in PlotEx()
5267 if (values_count > 0) in PlotEx()
5269 …int res_w = ImMin((int)graph_size.x, values_count) + ((plot_type == ImGuiPlotType_Lines) ? -1 : 0); in PlotEx()
5270 int item_count = values_count + ((plot_type == ImGuiPlotType_Lines) ? -1 : 0); in PlotEx()
5278 IM_ASSERT(v_idx >= 0 && v_idx < values_count); in PlotEx()
5280 const float v0 = values_getter(data, (v_idx + values_offset) % values_count); in PlotEx()
5281 const float v1 = values_getter(data, (v_idx + 1 + values_offset) % values_count); in PlotEx()
5292 float v0 = values_getter(data, (0 + values_offset) % values_count); in PlotEx()
5304 IM_ASSERT(v1_idx >= 0 && v1_idx < values_count); in PlotEx()
[all …]
Dimgui.h500 …IMGUI_API void PlotLines(const char* label, const float* values, int values_count, int va…
501 …r* label, float(*values_getter)(void* data, int idx), void* data, int values_count, int values_off…
502 …IMGUI_API void PlotHistogram(const char* label, const float* values, int values_count, in…
503 …r* label, float(*values_getter)(void* data, int idx), void* data, int values_count, int values_off…
Dimgui_internal.h1449 …* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_off…
/third_party/mesa3d/src/imgui/
Dimgui_widgets.cpp5249 …* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_off… in PlotEx() argument
5278 for (int i = 0; i < values_count; i++) in PlotEx()
5292 if (values_count > 0) in PlotEx()
5294 …int res_w = ImMin((int)frame_size.x, values_count) + ((plot_type == ImGuiPlotType_Lines) ? -1 : 0); in PlotEx()
5295 int item_count = values_count + ((plot_type == ImGuiPlotType_Lines) ? -1 : 0); in PlotEx()
5303 IM_ASSERT(v_idx >= 0 && v_idx < values_count); in PlotEx()
5305 const float v0 = values_getter(data, (v_idx + values_offset) % values_count); in PlotEx()
5306 const float v1 = values_getter(data, (v_idx + 1 + values_offset) % values_count); in PlotEx()
5317 float v0 = values_getter(data, (0 + values_offset) % values_count); in PlotEx()
5329 IM_ASSERT(v1_idx >= 0 && v1_idx < values_count); in PlotEx()
[all …]
Dimgui.h506 …IMGUI_API void PlotLines(const char* label, const float* values, int values_count, int va…
507 …r* label, float(*values_getter)(void* data, int idx), void* data, int values_count, int values_off…
508 …IMGUI_API void PlotHistogram(const char* label, const float* values, int values_count, in…
509 …r* label, float(*values_getter)(void* data, int idx), void* data, int values_count, int values_off…
Dimgui_internal.h1497 …* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_off…
/third_party/skia/third_party/externals/imgui/
Dimgui_widgets.cpp6420 …* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_off… in PlotEx() argument
6449 for (int i = 0; i < values_count; i++) in PlotEx()
6467 if (values_count >= values_count_min) in PlotEx()
6469 …int res_w = ImMin((int)frame_size.x, values_count) + ((plot_type == ImGuiPlotType_Lines) ? -1 : 0); in PlotEx()
6470 int item_count = values_count + ((plot_type == ImGuiPlotType_Lines) ? -1 : 0); in PlotEx()
6477 IM_ASSERT(v_idx >= 0 && v_idx < values_count); in PlotEx()
6479 const float v0 = values_getter(data, (v_idx + values_offset) % values_count); in PlotEx()
6480 const float v1 = values_getter(data, (v_idx + 1 + values_offset) % values_count); in PlotEx()
6491 float v0 = values_getter(data, (0 + values_offset) % values_count); in PlotEx()
6503 IM_ASSERT(v1_idx >= 0 && v1_idx < values_count); in PlotEx()
[all …]
Dimgui.h637 …IMGUI_API void PlotLines(const char* label, const float* values, int values_count, int va…
638 …r* label, float(*values_getter)(void* data, int idx), void* data, int values_count, int values_off…
639 …IMGUI_API void PlotHistogram(const char* label, const float* values, int values_count, in…
640 …r* label, float(*values_getter)(void* data, int idx), void* data, int values_count, int values_off…
Dimgui_internal.h2724 …* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_off…
/third_party/icu/icu4c/source/test/intltest/
Dtmsgfmt.cpp1530 int32_t values_count = UPRV_LENGTHOF(values); in TestRBNF() local
1554 for (int j = 0; j < values_count; ++j) { in TestRBNF()
/third_party/flutter/skia/third_party/externals/imgui/docs/
DCHANGELOG.txt940 - Fixed PlotLines() PlotHistogram() calling with values_count == 0.
/third_party/skia/third_party/externals/imgui/docs/
DCHANGELOG.txt2619 - Fixed PlotLines() PlotHistogram() calling with values_count == 0.