Searched refs:InitialText (Results 1 - 6 of 6) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_widgets.cpp2640 return DataTypeApplyOpFromText(data_buf, g.InputTextState.InitialText.Data, data_type, data_ptr, NULL);
2673 value_changed = DataTypeApplyOpFromText(buf, g.InputTextState.InitialText.Data, data_type, data_ptr, format);
2701 value_changed = DataTypeApplyOpFromText(buf, g.InputTextState.InitialText.Data, data_type, data_ptr, format);
3228 edit_state.InitialText.resize(init_buf_len + 1); // UTF-8. we use +1 to make sure that .Data isn't NULL so it doesn't crash.
3229 memcpy(edit_state.InitialText.Data, buf, init_buf_len + 1);
3473 if (is_editable && strcmp(buf, edit_state.InitialText.Data) != 0)
3475 apply_new_text = edit_state.InitialText.Data;
3476 apply_new_text_length = edit_state.InitialText.Size - 1;
H A Dimgui_internal.h565 ImVector<char> InitialText; // backup of end-user buffer at the time of focus (in UTF-8, unaltered) member in struct:ImGuiInputTextState
H A Dimgui.cpp3607 g.InputTextState.InitialText.clear();
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui_widgets.cpp2640 return DataTypeApplyOpFromText(data_buf, g.InputTextState.InitialText.Data, data_type, data_ptr, NULL);
2673 value_changed = DataTypeApplyOpFromText(buf, g.InputTextState.InitialText.Data, data_type, data_ptr, format);
2701 value_changed = DataTypeApplyOpFromText(buf, g.InputTextState.InitialText.Data, data_type, data_ptr, format);
3228 edit_state.InitialText.resize(init_buf_len + 1); // UTF-8. we use +1 to make sure that .Data isn't NULL so it doesn't crash.
3229 memcpy(edit_state.InitialText.Data, buf, init_buf_len + 1);
3473 if (is_editable && strcmp(buf, edit_state.InitialText.Data) != 0)
3475 apply_new_text = edit_state.InitialText.Data;
3476 apply_new_text_length = edit_state.InitialText.Size - 1;
H A Dimgui_internal.h565 ImVector<char> InitialText; // backup of end-user buffer at the time of focus (in UTF-8, unaltered) member in struct:ImGuiInputTextState
H A Dimgui.cpp3607 g.InputTextState.InitialText.clear();

Completed in 530 milliseconds