Home | History | Annotate | Download | only in BaseLib

Lines Matching full:searchstring

450   specified by String and returns the first occurrence of SearchString.

451 If SearchString is not found in String, then NULL is returned. If
452 the length of SearchString is zero, then String is
457 If SearchString is NULL, then ASSERT().
458 If SearchString is not aligned on a 16-bit boundary, then ASSERT().
460 If PcdMaximumUnicodeStringLength is not zero, and SearchString
465 @param SearchString A pointer to a Null-terminated Unicode string to search for.
467 @retval NULL If the SearchString does not appear in String.
475 IN CONST CHAR16 *SearchString
486 ASSERT (StrSize (SearchString) != 0);
488 if (*SearchString == L'\0') {
493 SearchStringTmp = SearchString;
1602 and returns the first occurrence of SearchString. If SearchString is not
1603 found in String, then NULL is returned. If the length of SearchString is zero,
1607 If SearchString is NULL, then ASSERT().
1609 If PcdMaximumAsciiStringLength is not zero, and SearchString or
1614 @param SearchString A pointer to a Null-terminated ASCII string to search for.
1616 @retval NULL If the SearchString does not appear in String.
1618 If the length of SearchString is zero,return String.
1625 IN CONST CHAR8 *SearchString
1635 ASSERT (AsciiStrSize (SearchString) != 0);
1637 if (*SearchString == '\0') {
1642 SearchStringTmp = SearchString;