MCPcopy Create free account
hub / github.com/MyGUI/mygui / push_back

Method push_back

MyGUIEngine/src/MyGUI_UString.cpp:633–641  ·  view source on GitHub ↗

--------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

631 }
632 //--------------------------------------------------------------------------
633 void UString::push_back(unicode_char val)
634 {
635 code_point cp[2];
636 size_t c = _utf32_to_utf16(val, cp);
637 if (c > 0)
638 push_back(cp[0]);
639 if (c > 1)
640 push_back(cp[1]);
641 }
642 //--------------------------------------------------------------------------
643#if MYGUI_IS_NATIVE_WCHAR_T
644 void UString::push_back(wchar_t val)

Callers 15

createChildItemNodeMethod · 0.45
createChildItemNodeMethod · 0.45
createVertexBufferMethod · 0.45
doRenderMethod · 0.45
getDataPathMethod · 0.45
addResourceLocationMethod · 0.45
addButtonNameMethod · 0.45
AttributeFieldMethod · 0.45
assignBaseMethod · 0.45
initialiseMethod · 0.45
getSystemFileListFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected