Lines Matching refs:inView
60 UIView* TextAdapter::GetView(UIView* inView, int16_t index)
62 UILabel* newView = GetTextView(inView, index);
84 UILabel* TextAdapter::GetTextView(UIView* inView, int16_t index)
88 return GetDynamicText(inView, index);
90 return GetIntegerText(inView, index);
96 UILabel* TextAdapter::GetDynamicText(UIView* inView, int16_t index)
106 UILabel* newView = CreateUILabel(inView);
119 UILabel* TextAdapter::GetIntegerText(UIView* inView, int16_t index)
124 UILabel* newView = CreateUILabel(inView);
129 if (inView == nullptr) {
137 if (inView == nullptr) {
157 UILabel* TextAdapter::CreateUILabel(UIView* inView)
159 if (inView == nullptr) {
162 return static_cast<UILabel*>(inView);