HomeSort by relevance Sort by last modified time
    Searched refs:end_str (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/chrome/installer/mini_installer/
mini_string.cc 88 bool StrEndsWith(const wchar_t* str, const wchar_t* end_str) {
89 if (str == NULL || end_str == NULL)
92 for (int i = lstrlen(str) - 1, j = lstrlen(end_str) - 1; j >= 0; --i, --j) {
93 if (i < 0 || !EqualASCIICharI(str[i], end_str[j]))
mini_string.h 45 // (specified by end_str).
46 bool StrEndsWith(const wchar_t* str, const wchar_t* end_str);
  /external/e2fsprogs/misc/
e2freefrag.c 188 char end_str[32]; local
190 sprintf(end_str, "%5lu%c-", end, *unitp);
192 strcpy(end_str, "max ");
194 start, *unitp, end_str,

Completed in 832 milliseconds