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

<<11121314151617181920>>

  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Images_ThumbnailsTest.java 93 // query with the uri of the thumbnail and the kind
100 // query all thumbnails with other kind
106 // query without kind
107 c = Thumbnails.query(mContentResolver, uri, null);
132 Cursor c = mContentResolver.query(stringUri,
184 c = mContentResolver.query(Uri.parse(stringUrl),
198 c = mContentResolver.query(Uri.parse(stringUrl),
222 assertNotNull(c = mContentResolver.query(Thumbnails.getContentUri("internal"), null, null,
225 assertNotNull(c = mContentResolver.query(Thumbnails.getContentUri("external"), null, null,
231 assertNull(mContentResolver.query(Thumbnails.getContentUri(volume), null, null, null
    [all...]
TelephonyProviderTest.java 92 Cursor cursor = mContentResolver.query(Carriers.CONTENT_URI,
  /cts/tests/tests/syncmanager/apps/app1/src/android/content/syncmanager/cts/app/
SyncManagerCtsProvider.java 30 public Cursor query(Uri uri, String[] projection, String selection, method in class:SyncManagerCtsProvider
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/common/db/
SelectionBuilder.java 52 * .query(db, projection, sortOrder)
57 * specified via method call. SelectionBuilder takes care of issuing a "query" command to the
89 * criteria, executed as a sub-query.
254 * SQL sub-query), the column name will be replaced with a more specific, SQL-compatible
284 * Execute query (SQL {@code SELECT}) against specified database.
288 * @param db Database to query.
296 public Cursor query(SQLiteDatabase db, String[] columns, String orderBy) { method in class:SelectionBuilder
297 return query(db, columns, null, null, orderBy, null);
301 * Execute query ({@code SELECT}) against database.
305 * @param db Database to query
322 public Cursor query(SQLiteDatabase db, String[] columns, String groupBy, method in class:SelectionBuilder
    [all...]
  /developers/samples/android/common/src/java/com/example/android/common/db/
SelectionBuilder.java 52 * .query(db, projection, sortOrder)
57 * specified via method call. SelectionBuilder takes care of issuing a "query" command to the
89 * criteria, executed as a sub-query.
254 * SQL sub-query), the column name will be replaced with a more specific, SQL-compatible
284 * Execute query (SQL {@code SELECT}) against specified database.
288 * @param db Database to query.
296 public Cursor query(SQLiteDatabase db, String[] columns, String orderBy) { method in class:SelectionBuilder
297 return query(db, columns, null, null, orderBy, null);
301 * Execute query ({@code SELECT}) against database.
305 * @param db Database to query
322 public Cursor query(SQLiteDatabase db, String[] columns, String groupBy, method in class:SelectionBuilder
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
AutoComplete5.java 35 Cursor cursor = content.query(Contacts.CONTENT_URI,
List2.java 37 Cursor c = getContentResolver().query(Contacts.CONTENT_URI,
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/db/
SelectionBuilder.java 52 * .query(db, projection, sortOrder)
57 * specified via method call. SelectionBuilder takes care of issuing a "query" command to the
89 * criteria, executed as a sub-query.
254 * SQL sub-query), the column name will be replaced with a more specific, SQL-compatible
284 * Execute query (SQL {@code SELECT}) against specified database.
288 * @param db Database to query.
296 public Cursor query(SQLiteDatabase db, String[] columns, String orderBy) { method in class:SelectionBuilder
297 return query(db, columns, null, null, orderBy, null);
301 * Execute query ({@code SELECT}) against database.
305 * @param db Database to query
322 public Cursor query(SQLiteDatabase db, String[] columns, String groupBy, method in class:SelectionBuilder
    [all...]
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/utils/
QueueHelper.java 70 public static List<MediaSession.QueueItem> getPlayingQueueFromSearch(String query,
73 LogHelper.d(TAG, "Creating playing queue for musics from search ", query);
75 return convertToQueue(musicProvider.searchMusic(query), MEDIA_ID_MUSICS_BY_SEARCH, query);
  /external/apache-http/src/org/apache/http/client/utils/
URLEncodedUtils.java 65 * URI's query portion. For example, a URI of
74 * encoding to use while parsing the query
78 final String query = uri.getRawQuery(); local
79 if (query != null && query.length() > 0) {
81 parse(result, new Scanner(query), encoding);
  /external/autotest/client/cros/cellular/
test_endpoint.py 32 parsed_query = urlparse.parse_qs(url.query)
  /external/autotest/utils/
site_check_dut_usage.py 56 query = ('select queued_time, started_time, finished_time, '
63 query += ' and tko_machines.machine_group=%s'
66 query += ' and tko_machines.hostname=%s'
70 query, [self._start_time, self._end_time, filter_value])
139 print 'Query returned no results.'
  /external/kernel-headers/original/uapi/linux/
uvcvideo.h 62 __u8 query; /* Video Class-Specific Request Code, */ member in struct:uvc_xu_control_query
  /external/libchrome/base/metrics/
statistics_recorder.h 135 // have |query| as a substring are written to |output| (an empty string will
137 static void WriteHTMLGraph(const std::string& query, std::string* output);
138 static void WriteGraph(const std::string& query, std::string* output);
140 // Returns the histograms with |query| as a substring as JSON text (an empty
141 // |query| will process all registered histograms).
142 static std::string ToJSON(const std::string& query);
162 // caller supplied vector (Histograms). Only histograms which have |query| as
165 static void GetSnapshot(const std::string& query, Histograms* snapshot);
  /external/llvm/include/llvm/CodeGen/
LiveRegMatrix.h 51 std::unique_ptr<LiveIntervalUnion::Query[]> Queries;
135 /// Query a line of the assigned virtual register matrix directly.
137 /// This returns a reference to an internal Query data structure that is only
138 /// valid until the next query() call.
139 LiveIntervalUnion::Query &query(LiveInterval &VirtReg, unsigned RegUnit);
  /external/mesa3d/src/gallium/state_trackers/clover/core/
queue.hpp 63 friend class clover::timestamp::query;
  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpMethodResponse.java 99 String query = httpRequest.getURI().getQuery(); local
100 if (query != null && query.length() > 0) {
101 request.append("?").append(query);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
SQLiteDatabaseTest.java 113 Cursor cursor = database.query("table_name", new String[]{"second_column", "first_column"}, null, null, null, null, null);
216 Cursor cursor = database.query("table_name", new String[]{"second_column", "first_column"}, null, null, null, null, null);
256 Cursor cursor = database.query("blob_table", new String[]{"blob_col"}, "id=1", null, null, null, null);
264 cursor = database.query("blob_table", new String[]{"blob_col"}, "id=2", null, null, null, null);
280 Cursor cursor = database.query("table_name", new String[]{"id", "name"}, null, null, null, null, null);
293 Cursor cursor = database.query("table_name", new String[]{"id", "name"}, null, null, null, null, null);
307 Cursor cursor = database.query("table_name", new String[]{"id", "name"}, null, null, null, null, null);
466 Cursor cursor = database.query("table_name", new String[]{"big_int"}, null, null, null, null, null);
567 String query = "SELECT name FROM table_name where id = " + id; local
568 Cursor cursor = executeQuery(query);
576 final String query = "SELECT first_column FROM table_name WHERE id = "; local
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowContentProviderClient.java 51 public Cursor query(Uri url, String[] projection, String selection, String[] selectionArgs, method in class:ShadowContentProviderClient
53 return provider.query(url, projection, selection, selectionArgs, sortOrder);
57 public Cursor query(Uri url, String[] projection, String selection, String[] selectionArgs, method in class:ShadowContentProviderClient
59 return provider.query(url, projection, selection, selectionArgs, sortOrder, cancellationSignal);
  /external/selinux/libsemanage/src/
booleans_policydb.c 47 .query = (record_policydb_table_query_t) sepol_bool_query,
ibendports_policydb.c 37 .query = (record_policydb_table_query_t)sepol_ibendport_query,
ibpkeys_policydb.c 37 .query = (record_policydb_table_query_t)sepol_ibpkey_query,
interfaces_policydb.c 43 .query = (record_policydb_table_query_t) sepol_iface_query,
nodes_policydb.c 42 .query = (record_policydb_table_query_t) sepol_node_query,
ports_policydb.c 42 .query = (record_policydb_table_query_t) sepol_port_query,

Completed in 783 milliseconds

<<11121314151617181920>>