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

<<11121314151617181920>>

  /external/mesa3d/src/gallium/drivers/noop/
noop_pipe.c 44 * query
47 unsigned query; member in struct:noop_query
51 struct noop_query *query = CALLOC_STRUCT(noop_query); local
53 return (struct pipe_query *)query;
56 static void noop_destroy_query(struct pipe_context *ctx, struct pipe_query *query)
58 FREE(query);
61 static void noop_begin_query(struct pipe_context *ctx, struct pipe_query *query)
65 static void noop_end_query(struct pipe_context *ctx, struct pipe_query *query)
70 struct pipe_query *query,
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseStatementTest.java 85 Cursor c = mDatabase.query("test", null, null, null, null, null, null);
139 Cursor c = mDatabase.query("test", null, null, null, null, null, null);
161 Cursor c = mDatabase.query("test", null, null, null, null, null, null);
184 Cursor c = mDatabase.query("test", null, null, null, null, null, "ROWID");
206 Cursor c = mDatabase.query("test", null, null, null, null, null, null);
231 Cursor c = mDatabase.query("test", null, null, null, null, null, "ROWID");
266 Cursor c = mDatabase.query("test", null, null, null, null, null, "ROWID");
315 Cursor c = mDatabase.query("test", null, null, null, null, null, null);
  /frameworks/base/media/java/android/media/session/
ISessionCallback.aidl 34 void onPlayFromSearch(String query, in Bundle extras);
  /packages/apps/Dialer/src/com/android/dialer/calllog/
DefaultVoicemailNotifier.java 91 final NewCall[] newCalls = mNewCallsQuery.query();
94 // Query failed, just return.
126 name = mNameLookupQuery.query(newCall.number);
232 public NewCall[] query(); method in interface:DefaultVoicemailNotifier.NewCallsQuery
260 public NewCall[] query() { method in class:DefaultVoicemailNotifier.DefaultNewCallsQuery
265 cursor = mContentResolver.query(Calls.CONTENT_URI_WITH_VOICEMAIL, PROJECTION,
300 public String query(String number); method in interface:DefaultVoicemailNotifier.NameLookupQuery
323 public String query(String number) { method in class:DefaultVoicemailNotifier.DefaultNameLookupQuery
326 cursor = mContentResolver.query(
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
Suggestions.java 24 * Collects all corpus results for a single query.
48 public Suggestions(String query, Source source) {
49 mQuery = query;
99 throw new IllegalArgumentException("Got result for wrong query: "
  /cts/tests/tests/provider/src/android/provider/cts/
SearchRecentSuggestionsTest.java 59 Cursor c = mTestSRSProvider.query(mTestUri, null, null, null, null);
73 c = mTestSRSProvider.query(mTestUri, SearchRecentSuggestions.QUERIES_PROJECTION_2LINE,
98 c = mTestSRSProvider.query(mTestUri, SearchRecentSuggestions.QUERIES_PROJECTION_2LINE,
135 value.put("query", insertQuery);
140 Cursor cursor = mTestSRSProvider.query(mTestUri,
162 value.put("query", updateQuery);
175 cursor = mTestSRSProvider.query(mTestUri,
203 cursor = mTestSRSProvider.query(uri, projection, null, null, null);
  /external/chromium_org/chrome/browser/prerender/
prerender_util.cc 100 url::Component query = parsed.query; local
102 while (url::ExtractQueryKeyValue(url.spec().c_str(), &query, &key, &value)) {
105 // We found a url= query string component.
124 url::Component query = parsed.query; local
126 while (url::ExtractQueryKeyValue(url.spec().c_str(), &query, &key, &value)) {
130 // We found a lpe= query string component.
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
ContentProviders.js 113 * @param {string} query
118 searchInContent: function(query, caseSensitive, isRegex, callback)
152 scripts[i].searchInContent(query, caseSensitive, isRegex, searchCallback.bind(null, scripts[i]));
243 * @param {string} query
248 searchInContent: function(query, caseSensitive, isRegex, callback)
262 callback(WebInspector.ContentProvider.performSearchInContent(content, query, caseSensitive, isRegex));
305 * @param {string} query
310 searchInContent: function(query, caseSensitive, isRegex, callback)
317 callback(WebInspector.ContentProvider.performSearchInContent(this._content, query, caseSensitive, isRegex));
  /packages/apps/Browser/src/com/android/browser/search/
OpenSearchSearchEngine.java 100 public void startSearch(Context context, String query, Bundle appData, String extraData) {
101 String uri = mSearchEngineInfo.getSearchUriForQuery(query);
109 intent.putExtra(SearchManager.QUERY, query);
125 public Cursor getSuggestions(Context context, String query) {
126 if (TextUtils.isEmpty(query)) {
134 String suggestUri = mSearchEngineInfo.getSuggestUriForQuery(query);
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactsIntentResolver.java 127 String query = intent.getStringExtra(SearchManager.QUERY); local
128 // If the {@link SearchManager.QUERY} is empty, then check if a phone number
130 if (TextUtils.isEmpty(query)) {
131 query = intent.getStringExtra(Insert.PHONE);
133 if (TextUtils.isEmpty(query)) {
134 query = intent.getStringExtra(Insert.EMAIL);
136 request.setQueryString(query);
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
SyncCalendarTest.java 75 cursor = mResolver.query(mEventsUri, null, null, null, null);
89 cursor = mResolver.query(mEventsUri, null, null, null, null);
103 cursor = mResolver.query(mEventsUri, null, null, null, null);
120 cursor = mResolver.query(mEventsUri, null, null, null, null);
136 cursor = mResolver.query(mEventsUri, null, null, null, null);
150 cursor = mResolver.query(mEventsUri, null, null, null, null);
  /external/wpa_supplicant_8/src/drivers/
ndis_events.c 398 WCHAR query[256]; local
400 _snwprintf(query, 256,
402 wpa_printf(MSG_DEBUG, "ndis_events: WMI: %S", query);
404 pSvc, L"WQL", query, 0, 0, pDestSink);
489 WCHAR query[MAX_QUERY_LEN]; local
514 _snwprintf(query, MAX_QUERY_LEN,
517 wpa_printf(MSG_DEBUG, "ndis_events: WMI: %S", query);
520 pSvc, L"WQL", query,
524 wpa_printf(MSG_DEBUG, "ndis_events: Failed to query interface "
554 _snwprintf(query, MAX_QUERY_LEN
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactDirectoryManagerTest.java 81 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:ContactDirectoryManagerTest.MockContactDirectoryProvider
173 Cursor cursor = mResolver.query(Directory.CONTENT_URI, null, null, null, null);
211 Cursor cursor = mResolver.query(Directory.CONTENT_URI, null, null, null, null);
229 cursor = mResolver.query(Directory.CONTENT_URI, null, null, null, null);
271 Cursor cursor = mResolver.query(Directory.CONTENT_URI, null, null, null, null);
280 cursor = mResolver.query(Directory.CONTENT_URI, null, null, null, null);
317 Cursor cursor = mResolver.query(Directory.CONTENT_URI, null, null, null, null);
329 cursor = mResolver.query(Directory.CONTENT_URI, null, null, null, null);
375 Cursor cursor = mResolver.query(Directory.CONTENT_URI, null, null, null, null);
394 cursor = mResolver.query(Directory.CONTENT_URI, null, null, null, null)
    [all...]
  /development/samples/NotePad/tests/src/com/example/android/notepad/
NotePadProviderTest.java 360 noteIdCursor = mMockResolver.query(
423 // Defines a projection of column names to return for a query
430 // Defines a selection column for the query. When the selection columns are passed
431 // to the query, the selection arguments replace the placeholders.
434 // Defines the selection columns for a query.
441 // Defines a query sort order
444 // Query subtest 1.
445 // If there are no records in the table, the returned cursor from a query should be empty.
446 Cursor cursor = mMockResolver.query(
457 // Query subtest 2
    [all...]
  /external/chromium_org/chrome/browser/search_engines/
template_url_parser.cc 81 std::string* query) {
82 if (!query->empty())
83 query->append("&");
85 query->append(key);
86 query->append("=");
88 query->append(value);
424 url::Component query = url.parsed_for_possibly_invalid_spec().query; local
427 while (url::ExtractQueryKeyValue(url_spec, &query, &key, &value)) {
438 new_query = url.query();
    [all...]
  /external/chromium_org/chrome/browser/download/
download_query_unittest.cc 64 DownloadQuery* query() { return &query_; } function in class:DownloadQueryTest
162 EXPECT_FALSE(query()->AddFilter(
177 query()->Limit(1);
187 base::FilePath match_filename(FILE_PATH_LITERAL("query"));
197 query_terms.push_back("query");
213 GURL match_url("http://query.com/query");
218 query_terms.push_back("query");
253 base::FilePath match_filename(FILE_PATH_LITERAL("query"));
271 query()->AddSorter(DownloadQuery::SORT_FILENAME, DownloadQuery::ASCENDING)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fImplementationLimitTests.cpp 54 // Query function template.
56 T query (const glw::Functions& gl, deUint32 param);
98 // Query function implementations.
100 GLint query<GLint> (const glw::Functions& gl, deUint32 param) function in namespace:deqp::gles3::Functional::LimitQuery
108 GLint64 query<GLint64> (const glw::Functions& gl, deUint32 param) function in namespace:deqp::gles3::Functional::LimitQuery
116 GLuint64 query<GLuint64> (const glw::Functions& gl, deUint32 param) function in namespace:deqp::gles3::Functional::LimitQuery
124 GLfloat query<GLfloat> (const glw::Functions& gl,deUint32 param) function in namespace:deqp::gles3::Functional::LimitQuery
132 NegInt query<NegInt> (const glw::Functions& gl, deUint32 param) function in namespace:deqp::gles3::Functional::LimitQuery
134 return NegInt(query<GLint>(gl, param));
138 Boolean query<Boolean> (const glw::Functions& gl, deUint32 param function in namespace:deqp::gles3::Functional::LimitQuery
146 FloatRange query<FloatRange> (const glw::Functions& gl, deUint32 param) function in namespace:deqp::gles3::Functional::LimitQuery
154 AlignmentInt query<AlignmentInt> (const glw::Functions& gl, deUint32 param) function in namespace:deqp::gles3::Functional::LimitQuery
    [all...]
  /external/deqp/modules/gles31/functional/
es31fFboNoAttachmentTests.cpp 87 GLuint query = 0; local
105 log << TestLog::Message << "Using occlusion query to check for rendered fragments" << TestLog::EndMessage;
124 gl.genQueries(1, &query);
136 gl.beginQuery(GL_ANY_SAMPLES_PASSED, query);
139 gl.getQueryObjectuiv(query, GL_QUERY_RESULT, &insidePassed);
141 << "Occlusion query reports it was " << (insidePassed > 0 ? "rendered." : "not rendered") << TestLog::EndMessage;
144 gl.beginQuery(GL_ANY_SAMPLES_PASSED, query);
147 gl.getQueryObjectuiv(query, GL_QUERY_RESULT, &outsideXPassed);
149 << "Occlusion query reports it was " << (outsideXPassed > 0 ? "rendered." : "not rendered") << TestLog::EndMessage;
152 gl.beginQuery(GL_ANY_SAMPLES_PASSED, query);
192 GLuint query = 0; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.directorywatcher_1.0.203.R36x_v20101027.jar 
  /cts/tests/tests/database/src/android/database/cts/
DatabaseUtils_InsertHelperTest.java 100 Cursor cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null);
125 cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null);
157 cursor = mDatabase.query(TEST_TABLE_NAME, projection, "_id = " + id,
202 Cursor cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null);
221 cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null);
240 cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null);
267 cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null);
  /external/chromium_org/chrome/browser/devtools/device/adb/
adb_client_socket.cc 96 const std::string& query,
101 if (Tokenize(query, "|", &queries_) == 0) {
116 std::string query = queries_[current_query_];
117 if (query.length() > 0xFFFF) {
122 SendCommand(query, is_void,
152 const std::string& query,
154 new AdbQuerySocket(port, query, callback);
  /external/chromium_org/net/http/
http_auth_handler_negotiate_unittest.cc 157 test::MockGSSAPILibrary::SecurityContextQuery query(
165 mock_library->ExpectSecurityContext(query.expected_package,
166 query.response_code,
167 query.minor_response_code,
168 query.context_info,
169 query.expected_input_token,
170 query.output_token);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FormSubmission.cpp 78 StringBuilder query; local
79 query.append(url.query());
80 if (!query.isEmpty())
81 query.append('&');
82 query.append(body);
83 url.setQuery(query.toString());
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_context.c 135 struct radeon_query_object *query = radeon->query.current; local
139 OUT_BATCH_RELOC(0, query->bo, query->curr_offset, 0, RADEON_GEM_DOMAIN_GTT, 0);
141 query->curr_offset += sizeof(uint32_t);
142 assert(query->curr_offset < RADEON_QUERY_PAGE_SIZE);
143 query->emitted_begin = GL_FALSE;
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_context.c 135 struct radeon_query_object *query = radeon->query.current; local
139 OUT_BATCH_RELOC(0, query->bo, query->curr_offset, 0, RADEON_GEM_DOMAIN_GTT, 0);
141 query->curr_offset += sizeof(uint32_t);
142 assert(query->curr_offset < RADEON_QUERY_PAGE_SIZE);
143 query->emitted_begin = GL_FALSE;

Completed in 1792 milliseconds

<<11121314151617181920>>