Home
last modified time | relevance | path

Searched refs:text (Results 1 – 25 of 35) sorted by relevance

12

/CafeSDK-2.12.13-1/system/src/lib/demo/demowin/
Ddemowin_button.cpp60 if (text.text[0]) in Draw()
61 …DrawTextCenter(text.text, CVec3(x, y, z + 0.0001), CVec2(width, height * 0.8), CVec4(1.0 - color.r… in Draw()
Ddemowin_held_button.cpp67 if (text.text[0]) in Draw()
68 …DrawTextCenter(text.text, CVec3(x, y, z + 0.0001), CVec2(width, height * 0.8), CVec4(1.0 - color.r… in Draw()
Ddemowin_text_center.cpp29 DrawTextCenter(text.text, position, size, color); in Draw()
Ddemowin_text_right.cpp29 DrawTextRight(text.text, position, size, color); in Draw()
Ddemowin_text_multi.cpp29 DrawMultiLineText(text.text, position, size, color); in Draw()
Ddemowin_text.cpp29 DrawText(text.text, position, size, color); in Draw()
/CafeSDK-2.12.13-1/system/include/cafe/demo/demowin/
Ddemowin_held_button.h19 …: MenuItem(window, position, size), text(""), tex(NULL), colorFunc(_colorFunc), func(_func), funcE… in MenuItem()
22 …: MenuItem(window, position, size), text(_text), tex(NULL), colorFunc(_colorFunc), func(_func), fu… in MenuItem()
25 …: MenuItem(window, position, size), text(""), tex(_tex), colorFunc(_colorFunc), func(_func), funcE… in MenuItem()
33 String<MAX_NAME_LENGTH> text; member
Ddemowin_button.h19 …: MenuItem(window, position, size), text(""), tex(NULL), colorFunc(_colorFunc), func(_func), funcE… in MenuItem()
22 …: MenuItem(window, position, size), text(_text), tex(NULL), colorFunc(_colorFunc), func(_func), fu… in MenuItem()
25 …: MenuItem(window, position, size), text(""), tex(_tex), colorFunc(_colorFunc), func(_func), funcE… in MenuItem()
33 String<MAX_NAME_LENGTH> text; member
Ddemowin_text.h19 : MenuItem(window, position, size), text(_text), color(_color) {} in MenuText()
23 String<MAX_TEXT_LENGTH> text; member
Ddemowin_peripheral.h22 virtual void DrawText(const char* text, CVec3 position, CVec2 size, CVec4 color) = 0;
23 virtual void DrawTextCenter(const char* text, CVec3 position, CVec2 size, CVec4 color) = 0;
24 virtual void DrawTextRight(const char* text, CVec3 position, CVec2 size, CVec4 color) = 0;
25 virtual void DrawMultiLineText(const char* text, CVec3 position, CVec2 size, CVec4 color) = 0;
Ddemowin_assets.h121 String(const char* txt) {strcpy_s(text, txt);} in String()
123 String& operator=(const char* txt) {strcpy_s(text, txt); return *this;}
125 operator char*() {return text;}
127 char text[SIZE]; member
259 virtual const char* GetName() {return name.text;} in GetName()
277 virtual const char* GetName() {return name.text;} in GetName()
/CafeSDK-2.12.13-1/system/src/lib/demo/headers/cafe/demo/demowin/
Ddemowin_button.h19 …: MenuItem(window, position, size), text(""), tex(NULL), colorFunc(_colorFunc), func(_func), funcE… in MenuItem()
22 …: MenuItem(window, position, size), text(_text), tex(NULL), colorFunc(_colorFunc), func(_func), fu… in MenuItem()
25 …: MenuItem(window, position, size), text(""), tex(_tex), colorFunc(_colorFunc), func(_func), funcE… in MenuItem()
33 String<MAX_NAME_LENGTH> text; member
Ddemowin_held_button.h19 …: MenuItem(window, position, size), text(""), tex(NULL), colorFunc(_colorFunc), func(_func), funcE… in MenuItem()
22 …: MenuItem(window, position, size), text(_text), tex(NULL), colorFunc(_colorFunc), func(_func), fu… in MenuItem()
25 …: MenuItem(window, position, size), text(""), tex(_tex), colorFunc(_colorFunc), func(_func), funcE… in MenuItem()
33 String<MAX_NAME_LENGTH> text; member
Ddemowin_text.h19 : MenuItem(window, position, size), text(_text), color(_color) {} in MenuText()
23 String<MAX_TEXT_LENGTH> text; member
Ddemowin_peripheral.h22 virtual void DrawText(const char* text, CVec3 position, CVec2 size, CVec4 color) = 0;
23 virtual void DrawTextCenter(const char* text, CVec3 position, CVec2 size, CVec4 color) = 0;
24 virtual void DrawTextRight(const char* text, CVec3 position, CVec2 size, CVec4 color) = 0;
25 virtual void DrawMultiLineText(const char* text, CVec3 position, CVec2 size, CVec4 color) = 0;
Ddemowin_assets.h121 String(const char* txt) {strcpy_s(text, txt);} in String()
123 String& operator=(const char* txt) {strcpy_s(text, txt); return *this;}
125 operator char*() {return text;}
127 char text[SIZE]; member
259 virtual const char* GetName() {return name.text;} in GetName()
277 virtual const char* GetName() {return name.text;} in GetName()
/CafeSDK-2.12.13-1/system/src/lib/demo/headers/cafe/demo/
Ddemowin.h48 const char* GetName() {return name.text;} in GetName()
181 void DrawText(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawText()
182 …{window->manager->peripheral->DrawText(text, CVec3(window->GetX() + position.x, window->GetY() + p… in DrawText()
183 void DrawTextCenter(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawTextCenter()
184 …{window->manager->peripheral->DrawTextCenter(text, CVec3(window->GetX() + position.x, window->GetY… in DrawTextCenter()
185 void DrawTextRight(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawTextRight()
186 …{window->manager->peripheral->DrawTextRight(text, CVec3(window->GetX() + position.x, window->GetY(… in DrawTextRight()
187 void DrawMultiLineText(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawMultiLineText()
188 …{window->manager->peripheral->DrawMultiLineText(text, CVec3(window->GetX() + position.x, window->G… in DrawMultiLineText()
/CafeSDK-2.12.13-1/system/include/cafe/demo/
Ddemowin.h48 const char* GetName() {return name.text;} in GetName()
181 void DrawText(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawText()
182 …{window->manager->peripheral->DrawText(text, CVec3(window->GetX() + position.x, window->GetY() + p… in DrawText()
183 void DrawTextCenter(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawTextCenter()
184 …{window->manager->peripheral->DrawTextCenter(text, CVec3(window->GetX() + position.x, window->GetY… in DrawTextCenter()
185 void DrawTextRight(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawTextRight()
186 …{window->manager->peripheral->DrawTextRight(text, CVec3(window->GetX() + position.x, window->GetY(… in DrawTextRight()
187 void DrawMultiLineText(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawMultiLineText()
188 …{window->manager->peripheral->DrawMultiLineText(text, CVec3(window->GetX() + position.x, window->G… in DrawMultiLineText()
/CafeSDK-2.12.13-1/system/include/cafe/
Dkpr.h42 wchar_t text[ KPR_MAX_QUEUE_LEN ]; member
Deppc.Cafe.rpl.ld14 .text ALIGN(0x20) : > codearea
Deppc.Cafe.ld14 .text ALIGN(0x20) : > codearea
/CafeSDK-2.12.13-1/system/src/lib/demo/
Ddemowin.cpp131 MenuText text(this, CVec3(0, 0, 0.1), CVec2(1.0, 0.07), "", CVec4(1.0, 1.0, 1.0)); in Init() local
150 text.text = names[j]; in Init()
151 text.y = -0.1 - j * 0.1; in Init()
152 MenuText::Add(text); in Init()
/CafeSDK-2.12.13-1/system/src/lib/libsys/
Dind_exit.c55 section .text
Dind_dots.ppc36 blr # return to .text section
Dind_call.ppc47 .text
57 .text

12