Searched refs:Query (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/libs/hwui/
H A DQuery.h28 * A Query instance can be used to perform occlusion queries. If the device
34 * Query query;
40 class Query { class in namespace:android::uirenderer
62 Query(Target target = kTargetSamples): mActive(false), mTarget(target), function in class:android::uirenderer::Query
67 ~Query() {
147 }; // class Query
/frameworks/opt/chips/src/com/android/ex/chips/
H A DQueries.java31 public static final Query PHONE = new Query(new String[] {
51 public static final Query EMAIL = new Query(new String[]{
71 static abstract class Query { class in class:Queries
87 public Query(String[] projection, Uri contentFilter, Uri content) { method in class:Queries.Query
H A DRecipientAlternatesAdapter.java39 import com.android.ex.chips.Queries.Query;
96 Queries.Query query;
128 query.getProjection()[Queries.Query.DESTINATION] + " IN ("
157 Account account, Set<String> matchesNotFound, Queries.Query query,
251 String address = c.getString(Queries.Query.DESTINATION);
254 c.getString(Queries.Query.NAME),
255 c.getInt(Queries.Query.DISPLAY_NAME_SOURCE),
256 c.getString(Queries.Query.DESTINATION),
257 c.getInt(Queries.Query.DESTINATION_TYPE),
258 c.getString(Queries.Query
[all...]
H A DDropdownChipLayouter.java19 import com.android.ex.chips.Queries.Query;
42 private Query mQuery;
49 public void setQuery(Query query) {
H A DBaseRecipientAdapter.java89 private final Queries.Query mQueryMode;
163 this.displayName = cursor.getString(Queries.Query.NAME);
164 this.destination = cursor.getString(Queries.Query.DESTINATION);
165 this.destinationType = cursor.getInt(Queries.Query.DESTINATION_TYPE);
166 this.destinationLabel = cursor.getString(Queries.Query.DESTINATION_LABEL);
167 this.contactId = cursor.getLong(Queries.Query.CONTACT_ID);
169 this.dataId = cursor.getLong(Queries.Query.DATA_ID);
170 this.thumbnailUriString = cursor.getString(Queries.Query.PHOTO_THUMBNAIL_URI);
171 this.displayNameSource = cursor.getInt(Queries.Query.DISPLAY_NAME_SOURCE);
172 this.lookupKey = cursor.getString(Queries.Query
[all...]
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
H A DDownloadManagerBaseTest.java20 import android.app.DownloadManager.Query;
374 Query q = new Query();
485 DownloadManager.Query q = new DownloadManager.Query();
489 Log.i(LOG_TAG, String.format("Query to download manager returned nothing for id %d",id));
518 Cursor cursor = mDownloadManager.query(new Query());
540 Query query = new Query();
/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerBaseTest.java19 import android.app.DownloadManager.Query;
151 Cursor cursor = dm.query(new Query().setFilterById(id));
486 Cursor cursor = mDownloadManager.query(new Query().setFilterById(requestId));
677 doWaitForDownloadsOrTimeout(new Query().setFilterById(id), poll, timeoutMillis);
691 doWaitForDownloadsOrTimeout(new Query(), poll, timeoutMillis);
706 doWaitForDownloadsOrTimeout(new Query().setFilterById(id), poll, timeoutMillis);
754 protected void doWaitForDownloadsOrTimeout(Query query, long poll, long timeoutMillis)
889 Cursor cursor = mDownloadManager.query(new Query());
906 cursor = mDownloadManager.query(new Query());
997 Query quer
[all...]
H A DDownloadManagerStressTest.java19 import android.app.DownloadManager.Query;
93 Cursor cursor = mDownloadManager.query(new Query());
H A DDownloadManagerFunctionalTest.java19 import android.app.DownloadManager.Query;
129 Cursor cursor = mDownloadManager.query(new Query().setFilterById(requestId));
311 Cursor cursor = mDownloadManager.query(new Query().setFilterById(dlRequest));
/frameworks/base/core/java/android/app/
H A DDownloadManager.java763 public static class Query { class in class:DownloadManager
786 public Query setFilterById(long... ids) {
796 public Query setFilterByStatus(int flags) {
809 public Query setOnlyIncludeVisibleInDownloadsUi(boolean value) {
824 public Query orderBy(String column, int direction) {
990 * Query the download manager about downloads that have been requested.
995 public Cursor query(Query query) {
1027 Query query = new Query().setFilterById(id);
1075 Query quer
[all...]
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
H A DConnectionUtil.java20 import android.app.DownloadManager.Query;
414 Query query = new Query();
/frameworks/base/docs/html/guide/
H A Dguide_toc.cs285 <li><a href="<?cs var:toroot ?>guide/topics/search/adding-recent-query-suggestions.html">Adding Recent Query Suggestions</a></li>

Completed in 234 milliseconds