OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lower_text
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/ui/views/controls/
prefix_selector.cc
181
const base::string16
lower_text
(base::i18n::ToLower(current_text_));
183
if (TextAtRowMatchesText(row,
lower_text
)) {
192
const base::string16&
lower_text
) {
195
return (model_text.size() >=
lower_text
.size()) &&
196
(model_text.compare(0,
lower_text
.size(),
lower_text
) == 0);
prefix_selector.h
65
// Returns true if the text of the node at |row| starts with |
lower_text
|.
66
bool TextAtRowMatchesText(int row, const base::string16&
lower_text
);
/external/chromium_org/components/query_parser/
query_parser.cc
363
base::string16
lower_text
= base::i18n::ToLower(text);
local
364
ExtractQueryWords(
lower_text
, &query_words);
374
if (
lower_text
.length() != text.length()) {
Completed in 59 milliseconds