/prebuilts/tools/common/m2/repository/org/eclipse/tycho/extras/tycho-p2-extras-plugin/0.18.1/ |
tycho-p2-extras-plugin-0.18.1.jar | |
/cts/tests/tests/media/src/android/media/cts/ |
MediaScannerTest.java | 129 Cursor c = res.query(audiouri, null, null, null, null); 144 c = res.query(audiouri, null, null, null, null); 155 c = res.query(audiouri, null, null, null, null); 183 c = res.query(MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI, null, 191 c = res.query(MediaStore.Audio.Playlists.Members.getContentUri("external", playlistid), 204 c = res.query(MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI, null, 212 c = res.query(MediaStore.Audio.Playlists.Members.getContentUri("external", playlistid), 268 Cursor c = res.query(file1Uri, new String[] { "parent" }, null, null, null); 272 c = res.query(file2Uri, new String[] { "parent" }, null, null, null); 281 c = res.query(MediaStore.Files.getContentUri("external", parent1id) [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
CalendarTest.java | 220 return resolver.query(Calendars.CONTENT_URI, CALENDARS_SYNC_PROJECTION, selection, 258 return resolver.query(uri, SYNCSTATE_PROJECTION, null, null, null); 269 return resolver.query(SyncState.CONTENT_URI, SYNCSTATE_PROJECTION, selection, 536 * @param resolver The resolver to issue the query against. 564 return resolver.query(Events.CONTENT_URI, EVENTS_PROJECTION, selection, selectionArgs, 569 return resolver.query(uri, EVENTS_PROJECTION, null, null, null); 637 return resolver.query(Attendees.CONTENT_URI, ATTENDEES_PROJECTION, 716 return resolver.query(Colors.CONTENT_URI, COLORS_PROJECTION, 723 return resolver.query(Colors.CONTENT_URI, COLORS_PROJECTION, WHERE_COLOR_ACCOUNT, [all...] |
/developers/samples/android/ui/actionbarcompat/ActionBarCompat-SearchView/src/main/src/com/example/android/actionbarcompat/searchview/ |
AppListFragment.java | 47 // Stores the result of the last query 80 * Set the query used to filter the installed application's names. 81 * @param query Query to filter against. 83 public void setFilterQuery(String query) { 92 if (TextUtils.isEmpty(query)) { 93 // If the query is empty, show all install apps 96 // Compile Regex Pattern which will match if the app name contains the query 97 final Pattern p = Pattern.compile(".*" + query + ".*", Pattern.CASE_INSENSITIVE); 99 // Iterate through the installed apps to see if their label matches the query [all...] |
/development/samples/training/threadsample/src/com/example/android/threadsample/ |
DataProvider.java | 37 // Indicates that the incoming query is for a picture URL 40 // Indicates that the incoming query is for a URL modification date 232 * @see android.content.ContentProvider#query(Uri, String[], String, String[], String) 235 * @param selection The selection clause for the query 238 * @return The query results, as a {@link android.database.Cursor} of rows and columns 241 public Cursor query( method in class:DataProvider 252 // If the query is for a picture URL 254 // Does the query against a read-only version of the database 255 Cursor returnCursor = db.query( 264 // If the query is for a modification date UR [all...] |
/external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/ |
TestContentProvider.java | 50 final Cursor cursor = context.getContentResolver().query(uri, null, null, null, null); 62 context.getContentResolver().query(uri, null, null, null, null); 183 public Cursor query(Uri uri, String[] projection, String selection, method in class:TestContentProvider
|
/external/chromium_org/chrome/browser/ui/webui/app_list/ |
start_page_handler.cc | 217 base::string16 query; local 219 CHECK(args->GetString(0, &query)); 223 query, is_final);
|
/external/chromium_org/chrome/browser/ui/webui/options/ |
cookies_view_handler.cc | 212 base::string16 query; local 213 if (!args->GetString(0, &query)) 218 cookies_tree_model_->UpdateSearchResults(query);
|
/external/chromium_org/chrome/tools/ |
history-viz.py | 38 scheme, loc, path, query, fragment = urlparse.urlsplit(url) 47 if len(query) > 0: 48 extra += '?' + query
|
/external/chromium_org/net/proxy/ |
dhcp_proxy_script_fetcher_win.cc | 138 scoped_refptr<AdapterQuery> query) { 142 // and a previous query was cancelled before it completed. 143 if (query.get() != last_query_.get()) 157 const std::set<std::string>& adapter_names = query->adapter_names();
|
/external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/ |
server.py | 85 def HandleRPC(self, name, query): 87 for k, v in query.iteritems(): 119 _, _, path, _, query, _ = urlparse.urlparse(self.path) 169 _, _, path, _, query, _ = urlparse.urlparse(self.path) 176 query = cgi.parse_qs(query, True) 180 self.HandleRPC(name, query)
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
NetworkUISourceCodeProvider.js | 232 * @param {string} query 237 searchInContent: function(query, caseSensitive, isRegex, callback) 249 var result = WebInspector.ContentProvider.performSearchInContent(content, query, caseSensitive, isRegex); 258 this._resource.searchInContent(query, caseSensitive, isRegex, callback);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/ |
nv30_query.c | 42 struct nv04_notify *query = screen->query->data; local 47 ntfy = (char *)notify->map + query->offset + qo->hw->start; 75 /* allocate a new hw query object, if no hw objects left we need to
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
eval.c | 548 _mesa_GetnMapdvARB( GLenum target, GLenum query, GLsizei bufSize, GLdouble *v ) 570 switch (query) { 623 _mesa_error( ctx, GL_INVALID_ENUM, "glGetMapdv(query)" ); 634 _mesa_GetMapdv( GLenum target, GLenum query, GLdouble *v ) 636 _mesa_GetnMapdvARB(target, query, INT_MAX, v); 640 _mesa_GetnMapfvARB( GLenum target, GLenum query, GLsizei bufSize, GLfloat *v ) 662 switch (query) { 715 _mesa_error( ctx, GL_INVALID_ENUM, "glGetMapfv(query)" ); 727 _mesa_GetMapfv( GLenum target, GLenum query, GLfloat *v ) 729 _mesa_GetnMapfvARB(target, query, INT_MAX, v) [all...] |
/external/chromium_org/third_party/skia/platform_tools/nacl/ |
httpd.py | 87 # A small handler that looks for '?quit=1' query in the path and shuts itself 138 (_, _, path, query, _) = urlparse.urlsplit(self.path) 140 for key_value in query.split('&')]) 157 (_, _,path, query, _) = urlparse.urlsplit(self.path)
|
/external/chromium_org/tools/telemetry/telemetry/page/ |
page_measurement_unittest.py | 51 query = tab.EvaluateJavaScript('window.location.search') 53 if query.strip() != expected: 55 'query was %s, not %s.' % (query, expected))
|
/external/chromium_org/ui/app_list/views/ |
app_list_main_view.cc | 278 base::string16 query; local 279 base::TrimWhitespace(model_->search_box()->text(), base::TRIM_ALL, &query); 280 bool should_show_search = !query.empty(); 297 // Resubmit the query via a posted task so that all observers for the
|
/external/deqp/framework/platform/X11/ |
tcuX11.cpp | 95 XVisualInfo query; local 96 query.visualid = visualID; 98 XVisualInfo* response = XGetVisualInfo(m_display, VisualIDMask, &query, &numVisuals);
|
/external/mdnsresponder/mDNSCore/ |
mDNS.c | 413 // Right now we just stop and re-use the existing query. If we really wanted to be 100% perfect, 414 // and track CNAMEs coming and going, we should really create a subordinate query here, 421 mDNS_StopQuery_internal(m, q); // Stop old query 424 // If a unicast query results in a CNAME that points to a .local, we need to re-try 426 // to try this as unicast query even though it is a .local name 433 mDNS_StartQuery_internal(m, q); // start new query 651 // CacheRecord *ka is the CacheRecord from the known answer list in the query. 8789 ServiceInfoQuery *query = (ServiceInfoQuery *)question->QuestionContext; local 8850 ServiceInfoQuery *query = (ServiceInfoQuery *)question->QuestionContext; local 8875 ServiceInfoQuery *query = (ServiceInfoQuery *)question->QuestionContext; local [all...] |
/external/mesa3d/src/gallium/drivers/nv30/ |
nv30_query.c | 42 struct nv04_notify *query = screen->query->data; local 47 ntfy = (char *)notify->map + query->offset + qo->hw->start; 75 /* allocate a new hw query object, if no hw objects left we need to
|
/external/mesa3d/src/mesa/main/ |
eval.c | 548 _mesa_GetnMapdvARB( GLenum target, GLenum query, GLsizei bufSize, GLdouble *v ) 570 switch (query) { 623 _mesa_error( ctx, GL_INVALID_ENUM, "glGetMapdv(query)" ); 634 _mesa_GetMapdv( GLenum target, GLenum query, GLdouble *v ) 636 _mesa_GetnMapdvARB(target, query, INT_MAX, v); 640 _mesa_GetnMapfvARB( GLenum target, GLenum query, GLsizei bufSize, GLfloat *v ) 662 switch (query) { 715 _mesa_error( ctx, GL_INVALID_ENUM, "glGetMapfv(query)" ); 727 _mesa_GetMapfv( GLenum target, GLenum query, GLfloat *v ) 729 _mesa_GetnMapfvARB(target, query, INT_MAX, v) [all...] |
/external/skia/platform_tools/nacl/ |
httpd.py | 87 # A small handler that looks for '?quit=1' query in the path and shuts itself 138 (_, _, path, query, _) = urlparse.urlsplit(self.path) 140 for key_value in query.split('&')]) 157 (_, _,path, query, _) = urlparse.urlsplit(self.path)
|
/frameworks/base/core/java/android/content/ |
SearchRecentSuggestionsProvider.java | 34 * <li>Implement and test query search, as described in {@link android.app.SearchManager}. (This 87 private static final String NULL_COLUMN = "query"; 111 // Uri and query support 145 builder.append(",query TEXT" + 200 "query AS " + SearchManager.SUGGEST_COLUMN_QUERY, 212 "query AS " + SearchManager.SUGGEST_COLUMN_QUERY, 319 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:SearchRecentSuggestionsProvider 340 Cursor c = db.query(sSuggestions, mSuggestionProjection, 346 // otherwise process arguments and perform a standard query 380 // And perform the generic query as requeste [all...] |
/frameworks/base/core/java/android/webkit/ |
URLUtil.java | 93 String query; local 98 query = java.net.URLEncoder.encode(inQuery, "utf-8"); 99 buffer.append(query); 323 // If there is a query string strip it, same as desktop browsers
|
/frameworks/base/test-runner/src/android/test/mock/ |
MockContentProvider.java | 100 public Cursor query(String callingPackage, Uri url, String[] projection, String selection, method in class:MockContentProvider.InversionIContentProvider 103 return MockContentProvider.this.query(url, projection, selection, 209 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:MockContentProvider
|