HomeSort by relevance Sort by last modified time
    Searched refs:query (Results 426 - 450 of 1949) sorted by null

<<11121314151617181920>>

  /cts/tests/tests/provider/src/android/provider/cts/
Settings_SystemTest.java 63 * first query the exist settings in System table, and then insert five
70 // first query exist rows
71 Cursor c = cr.query(System.CONTENT_URI, null, null, null, null);
86 c = cr.query(System.CONTENT_URI, null, null, null, null);
102 c = cr.query(System.CONTENT_URI, null, null, null, null);
  /external/chromium_org/chrome/browser/extensions/activity_log/
database_string_table_unittest.cc 47 sql::Statement query(
49 ASSERT_TRUE(query.Step());
50 int64 raw_id = query.ColumnInt64(0);
  /external/chromium_org/chrome/browser/ui/app_list/search/
mixer_unittest.cc 53 virtual void Start(const base::string16& query) OVERRIDE {
97 const base::string16 query; local
100 providers_[i]->Start(query);
search_controller.cc 99 base::string16 query; local
100 base::TrimWhitespace(search_box_->text(), base::TRIM_ALL, &query);
106 (*it)->Start(query);
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_service_url.cc 177 std::string query_str = url.query();
178 url::Component query(0, query_str.length());
181 while (url::ExtractQueryKeyValue(query_str.c_str(), &query, &key, &value)) {
  /external/chromium_org/components/google/core/browser/
google_util.cc 82 url::Component query(0, str.length()), key, value;
83 while (url::ExtractQueryKeyValue(str.c_str(), &query, &key, &value)) {
134 // "search" and the "q=" query string.
204 // Check for query parameter in URL parameter and hash fragment, depending on
207 (!is_home_page_base && HasGoogleSearchQueryParam(url.query()));
  /external/chromium_org/content/test/gpu/gpu_tests/
context_lost.py 145 url='file://webgl.html?query=kill_after_notification',
163 url='file://webgl.html?query=WEBGL_lose_context',
179 url='file://webgl.html?query=forced_quantity_loss',
  /external/chromium_org/content/test/
mock_google_streaming_server.cc 42 std::string query = GetURLFetcher(true)->GetOriginalURL().query();
44 Tokenize(query, "&", &query_params);
  /external/chromium_org/net/proxy/
proxy_resolver_perftest.cc 120 // Do a query to warm things up. In the case of internal-fetch proxy
137 const PacQuery& query = queries[i % queries_len]; local
142 GURL(query.query_url), &proxy_info, net::CompletionCallback(), NULL,
148 ASSERT_EQ(query.expected_result, proxy_info.ToPacString());
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
SourceFrame.js 86 * @param {string} query
90 WebInspector.SourceFrame.createSearchRegex = function(query, modifiers)
97 if (/^\/.+\/$/.test(query)) {
98 regex = new RegExp(query.substring(1, query.length - 1), modifiers);
107 regex = createPlainTextSearchRegex(query, "i" + modifiers);
402 * @param {string} query
409 performSearch: function(query, shouldJump, jumpBackwards, callback, currentMatchChangedCallback, searchResultsChangedCallback)
412 * @param {string} query
415 function doFindSearchMatches(query)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/weborigin/
KURLTest.cpp 52 const char* query; member in struct:__anon15250::ComponentCase
67 const char* query; member in struct:__anon15250::GetterCase
88 EXPECT_EQ(cases[i].query, kurl.query());
102 EXPECT_EQ(cases[i].query, kurl.query());
113 // url protocol host port user pass lastPath query ref
139 EXPECT_EQ(cases[i].query, kurl.query());
181 // We also can't test clearing the query
203 const char* query; member in struct:__anon15250::ExpectedComponentCase
454 const char query[] = "foo=bar"; local
    [all...]
  /external/chromium_org/url/
gurl.h 35 // encode the query parameters. It is probably sufficient for the narrow
36 // version to assume the query parameter encoding should be the same as the
149 // for any query text specified in the input. The charset converter parameter
272 std::string query() const { // Stuff following '?' function in class:GURL
273 return ComponentString(parsed_.query);
281 // being nonempty. http://www.google.com/? has a query that just happens to
305 return parsed_.query.len >= 0;
325 // parameter, and query portions of the URL. It is guaranteed to be ASCII.
401 // TODO bug 684583: Add encoding for query params.
gurl_unittest.cc 88 EXPECT_EQ("q=a", url.query());
112 EXPECT_EQ("", url.query());
130 EXPECT_EQ("q=a", url2.query());
145 EXPECT_EQ("", invalid2.query());
164 EXPECT_EQ("q=a", url2.query());
180 EXPECT_EQ("", invalid2.query());
205 EXPECT_EQ("q=a", url2.query());
217 EXPECT_EQ("", inner->query());
275 EXPECT_EQ("", url.query());
391 const char* query; member in struct:url::ReplaceCase
    [all...]
url_canon_filesystemurl.cc 27 // filesystem only uses {scheme, path, query, ref} -- clear the rest.
68 // Ignore failures for query/ref since the URL can probably still be loaded.
69 CanonicalizeQuery(source.query, parsed.query, charset_converter,
70 output, &new_parsed->query);
url_canon_fileurl.cc 113 CanonicalizeQuery(source.query, parsed.query, query_converter,
114 output, &new_parsed->query);
url_canon_pathurl.cc 64 // We allow path URLs to have the path, query and fragment components, but we
69 source.query, parsed.query, '?', output, &new_parsed->query);
  /external/chromium_org/url/third_party/mozilla/
url_parse.h 93 QUERY,
116 // Note that this can get a little funny for the port, query, and ref
122 // delimited components that is present (the port and query) and one that
127 // Example input: http://foo:80/?query
135 // *QUERY: 14 15 <-
162 // Path, this is everything following the host name, stopping at the query of
172 // a question mark but no query string.
173 Component query; member in struct:url::Parsed
265 // MailtoURL is for mailto: urls. They are made up scheme,path,query
346 // Extract the first key/value from the range defined by |*query|. Update
    [all...]
  /external/chromium_org/v8/tools/testrunner/server/
local_handler.py 37 def LocalQuery(query):
41 compression.Send(query, sock)
47 assert data[0] == query[0]
status_handler.py 36 def _StatusQuery(peer, query):
42 compression.Send(query, sock)
48 assert data[0] == query[0]
  /frameworks/base/core/java/android/app/
SearchDialog.java 95 // The query entered by the user. This is not changed when selecting a suggestion
521 * Launch a search for the text in the query text field.
528 * Launch a search for the text in the query text field.
536 String query = mSearchAutoComplete.getText().toString(); local
538 Intent intent = createIntent(action, null, null, query, actionKey, actionMsg);
577 * @param query Intent query, or <code>null</code>.
586 private Intent createIntent(String action, Uri data, String extraData, String query,
598 if (query != null) {
599 intent.putExtra(SearchManager.QUERY, query)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerBaseTest.java 19 import android.app.DownloadManager.Query;
151 Cursor cursor = dm.query(new Query().setFilterById(id));
486 Cursor cursor = mDownloadManager.query(new Query().setFilterById(requestId));
646 * @param id The download id to query on (wait for)
658 * @param id The download id to query on (wait for)
671 * @param id The download id to query on (wait for)
677 doWaitForDownloadsOrTimeout(new Query().setFilterById(id), poll, timeoutMillis);
691 doWaitForDownloadsOrTimeout(new Query(), poll, timeoutMillis)
997 Query query = new Query(); local
    [all...]
  /frameworks/ex/common/java/com/android/common/content/
SyncStateContentProviderHelper.java 28 * and implements query/insert/update/delete to access that table using the
81 public Cursor query(SQLiteDatabase db, String[] projection, method in class:SyncStateContentProviderHelper
83 return db.query(SYNC_STATE_TABLE, projection, selection, selectionArgs,
114 Cursor c = db.query(SYNC_STATE_TABLE, ACCOUNT_PROJECTION, null, null, null, null, null);
  /packages/apps/Browser/tests/src/com/android/browser/tests/
BP2ProviderTests.java 85 Cursor c = getMockContentResolver().query(insertedUri,
104 c = getMockContentResolver().query(insertedUri,
124 c = getMockContentResolver().query(insertedUri,
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSearch.java 113 String query = intent.getStringExtra(SearchManager.QUERY); local
114 if (TextUtils.isEmpty(query)) {
115 Log.w(TAG, "Got search intent with no query.");
138 + "&q=" + URLEncoder.encode(query, "UTF-8");
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ActionBarController.java 261 * Close the search query entry field to avoid keyboard events, and to restore the actionbar
386 public boolean onQueryTextSubmit(String query) {
391 mController.executeSearch(query.trim());
411 LogUtils.d(LOG_TAG, "onSuggestionClick: Couldn't get a search query");
412 // We haven't handled this query, but the default behavior will
420 // What the suggested query is
421 String query = c.getString(c.getColumnIndex(SearchManager.SUGGEST_COLUMN_TEXT_1)); local
423 // widget suggestion query, just take the search widget suggestion
424 // query. Otherwise, it is a suffix and we want to remove matching
426 if (!TextUtils.isEmpty(queryText) && query.indexOf(queryText) != 0)
    [all...]

Completed in 1009 milliseconds

<<11121314151617181920>>