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

  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_input.cc 131 size_t first_non_white = text.find_first_not_of(base::kWhitespaceUTF16, 0); local
132 if (first_non_white == base::string16::npos)
135 if (text.at(first_non_white) == L'?') {
  /external/chromium/chrome/browser/autocomplete/
autocomplete.cc 124 const size_t first_non_white = text.find_first_not_of(kWhitespaceUTF16, 0); local
125 if (first_non_white == string16::npos)
128 if (text.at(first_non_white) == L'?') {
    [all...]

Completed in 470 milliseconds