Lines Matching refs:label
25 bool PhoneButton::Create(const char* label)
29 mKeyCode = LookupKeyCode(label);
31 fprintf(stderr, "WARNING: key code '%s' not recognized\n", label);
41 bool PhoneButton::Create(const char* label, const char* imageFileName,
44 if (!Create(label))
132 * Returns kKeyCodeUnknown if the label doesn't match anything.
134 KeyCode PhoneButton::LookupKeyCode(const char* label) const
137 const char* label;
174 if (strcmp(label, codeList[i].label) == 0)