/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/webgl/ |
update_webgl_conformance_tests_unittest.py | 84 input_text = "" 87 input_text += construct_style(input) 90 input_text += construct_script(input) 95 input_text = head + input_text + foot 97 self.assert_translate(input_text, output_text)
|
/external/chromium/chrome/browser/autocomplete/ |
history_provider.cc | 64 const string16& input_text = input.text(); local 66 const GURL canonical_gurl(URLFixerUpper::FixupURL(UTF16ToUTF8(input_text), 71 return input_text; 83 UTF16ToUTF8(input_text.substr(input.parts().host.begin, 96 !url_util::FindAndCompareScheme(UTF16ToUTF8(input_text), 115 input_text.find_last_not_of(ASCIIToUTF16("/\\")); 117 input_text.length() : (input_text.length() - 1 - last_input_nonslash);
|
search_provider.h | 55 // Marks the instant query as done. If |input_text| is non-empty this changes 56 // the 'search what you typed' results text to |input_text| + |suggest_text|. 57 // |input_text| is the text the user input into the edit. |input_text| differs 62 void FinalizeInstantQuery(const string16& input_text, 203 const string16& input_text, 257 const string16& input_text,
|
search_provider.cc | 67 void SearchProvider::FinalizeInstantQuery(const string16& input_text, 75 if (input_text.empty()) { 84 string16 adjusted_input_text(input_text); 268 const string16& input_text = local 272 ParseSuggestResults(root_val.get(), is_keyword_results, input_text, 438 const string16& input_text, 449 (query_str != input_text) || 751 const string16& input_text, 764 // will be highlighted, e.g. for input_text = "you" the suggestion may be 766 if (input_text != query_string) 856 const string16& input_text = local [all...] |
autocomplete_edit.cc | 162 const string16& input_text, 166 const string16 final_text = input_text + suggest_text; 173 search_provider->FinalizeInstantQuery(input_text, suggest_text); [all...] |
autocomplete_edit.h | 190 void FinalizeInstantQuery(const string16& input_text,
|
/external/chromium_org/chrome/browser/autocomplete/ |
history_provider.cc | 67 const string16& input_text = input->text(); local 69 const GURL canonical_gurl(URLFixerUpper::FixupURL(UTF16ToUTF8(input_text), 86 UTF16ToUTF8(input_text.substr(input->parts().host.begin, 99 !url_util::FindAndCompareScheme(UTF16ToUTF8(input_text), 118 input_text.find_last_not_of(ASCIIToUTF16("/\\")); 120 input_text.length() : (input_text.length() - 1 - last_input_nonslash);
|
search_provider.cc | 266 const string16& input_text, 280 // will be highlighted, e.g. for input_text = "you" the suggestion may be 282 if (input_text != query_string) { 283 size_t input_position = match.contents.find(input_text); 304 size_t next_fragment_position = input_position + input_text.length(); 327 StartsWith(query_string, input_text, false)) { 328 match.inline_autocompletion = query_string.substr(input_text.length()); 337 match.search_terms_args->original_query = input_text; 868 const string16& input_text = local 1189 const string16& input_text = local [all...] |
search_provider.h | 68 // |input_text| is the original user input, which may differ from 76 // with |input_text| to generate Assisted Query Stats. 86 const string16& input_text, 403 const string16& input_text, 449 const string16& input_text,
|
zero_suggest_provider.cc | 322 // Pass in query_string as the input_text since we don't want any bolding.
|
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/input/ |
ImeTest.java | 37 "<input id=\"input_text\" type=\"text\" />" + 65 DOMUtils.clickNode(this, mContentView, mCallbackContainer, "input_text"); 131 DOMUtils.clickNode(this, mContentView, mCallbackContainer, "input_text"); 228 DOMUtils.focusNode(this, mContentView, mCallbackContainer, "input_text");
|
InsertionHandleTest.java | 53 private static final String INPUT_TEXT_ID = "input_text"; 56 "<input id=\"input_text\" type=\"text\" value=\"" +
|