Home
last modified time | relevance | path

Searched refs:pText (Results 1 – 9 of 9) sorted by relevance

/CTR-SDK-4.2.7-SampleDemos/common/libraries/scene/
DGuiControlBase.cpp21 s32 wstrlen(const wchar_t* pText) in wstrlen() argument
25 while (pText[length] != '\0') in wstrlen()
38 …rolType type, u32 id, s32 x, s32 y, u32 width, u32 height, const wchar_t* pText, void* pExtraData,… in ControlBase() argument
58 SetText(pText); in ControlBase()
68 void ControlBase::SetText(const wchar_t* pText) in SetText() argument
70 if (pText) in SetText()
72 s32 length = wstrlen(pText); in SetText()
83 memcpy(m_pText, pText, length * sizeof (m_pText[0])); in SetText()
DUtil.cpp42 u32 wstrlen(const wchar_t* pText) in wstrlen() argument
46 while (*pText++ != '\0') in wstrlen()
55 u32 wtoi(const wchar_t* pText) in wtoi() argument
60 while (*pText != '\0' && *pText >= '0' && *pText <= '9') in wtoi()
62 value = value * 10 + (*pText - '0'); in wtoi()
63 pText++; in wtoi()
DGuiLabel.cpp22 Label::Label(u32 id, s32 x, s32 y, u32 width, u32 height, const wchar_t* pText, void* pExtraData, f… in Label() argument
23 : ControlBase(CONTROL_TYPE_LABEL, id, x, y, width, height, pText, pExtraData, fontScale) in Label()
DGuiButton.cpp22 Button::Button(u32 id, s32 x, s32 y, u32 width, u32 height, const wchar_t* pText, void* pExtraData,… in Button() argument
23 : ControlBase(CONTROL_TYPE_BUTTON, id, x, y, width, height, pText, pExtraData, fontScale) in Button()
DTenKey.cpp43 scene::Label* CreateInputBox(u32 id, u16 x, const wchar_t* pText) in CreateInputBox() argument
46 scene::Label* pLabel = new scene::Label(id, x, 8, BOX_SIZE, 36, pText); in CreateInputBox()
/CTR-SDK-4.2.7-SampleDemos/common/include/scene/
DUtil.h30 u32 wstrlen(const wchar_t* pText);
35 u32 wtoi(const wchar_t* pText);
DGuiLabel.h40 …Label(u32 id, s32 x, s32 y, u32 width, u32 height, const wchar_t* pText = NULL, void* pExtraData =…
DGuiButton.h40 …Button(u32 id, s32 x, s32 y, u32 width, u32 height, const wchar_t* pText = NULL, void* pExtraData …
DGuiControlBase.h48 …rolType type, u32 id, s32 x, s32 y, u32 width, u32 height, const wchar_t* pText, void* pExtraData,…
226 void SetText(const wchar_t* pText);