Lines Matching refs:String
90 // lwoer case string
101 // upper case string
175 // string length
184 // string length
193 // string size
202 // duplicate a string
219 // string length
273 // convert hex string to uint
304 // convert hex string to uint
329 IN CHAR16 *String,
341 // End of pattern. If end of string, TRUE match
342 return *String ? FALSE : TRUE;
346 while (*String) {
347 if (MetaMatch (String, Pattern)) {
350 String += 1;
352 return MetaMatch (String, Pattern);
356 if (!*String) {
359 String += 1;
364 c = *String;
398 String += 1;
402 c = *String;
407 String += 1;
417 IN CHAR16 *String,
421 return MetaMatch (String, Pattern);
427 IN CHAR16 *String,
432 return UnicodeInterface->MetaiMatch(UnicodeInterface, String, Pattern);
433 else return uefi_call_wrapper(UnicodeInterface->MetaiMatch, 3, UnicodeInterface, String, Pattern);