Home | History | Annotate | Download | only in metro_driver

Lines Matching refs:walk

298     const wchar_t* walk = open_file_name_->lpstrFilter;
299 while (*walk != L'\0') {
300 // Walk past the description.
301 walk += wcslen(walk) + 1;
304 if (*walk == L'\0')
309 size_t extension_count = Tokenize(walk, L";", &extensions_win32_style);
335 // Walk past the extension.
336 walk += wcslen(walk) + 1;
464 const wchar_t* walk = open_file_name_->lpstrFilter;
465 while (*walk != L'\0') {
467 hr = description.Set(walk);
471 // Walk past the description.
472 walk += wcslen(walk) + 1;
475 if (*walk == L'\0')
480 size_t extension_count = Tokenize(walk, L";", &extensions_win32_style);
511 // Walk past the extension(s).
512 walk += wcslen(walk) + 1;