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

<<11121314151617181920>>

  /packages/apps/Car/LocalMediaPlayer/src/com/android/car/media/localmediaplayer/
DataModel.java 93 FilesystemListTask query = new FilesystemListTask(result, ALL_AUDIO_URI, mResolver); local
94 queryInBackground(result, query);
98 QueryTask query = new QueryTask.Builder() local
106 queryInBackground(result, query);
110 QueryTask query = new QueryTask.Builder() local
118 queryInBackground(result, query);
122 QueryTask query = new QueryTask.Builder() local
130 queryInBackground(result, query);
154 cursor = mResolver.query(uri, null, AudioColumns.TITLE_KEY + " = ?",
204 QueryTask.Builder query = new QueryTask.Builder( local
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/p13n/logging/
P13nLogging.java 48 public void onSearchQuery(String query, PhoneNumberListAdapter adapter) {}
  /packages/apps/Music/src/com/android/music/utils/
QueueHelper.java 81 String query, MusicProvider musicProvider) {
82 LogHelper.d(TAG, "Creating playing queue for musics from search ", query);
84 return convertToQueue(musicProvider.searchMusic(query), MEDIA_ID_MUSICS_BY_SEARCH, query);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionFormatter.java 23 * suggestion which were not a part of the query.
36 * @param query the query as entered by the user
40 public abstract CharSequence formatSuggestion(String query, String suggestion);
  /packages/experimental/RpcPerformance/src/com/android/rpc_performance/
Provider.java 31 public Cursor query(Uri uri, String[] projection, method in class:Provider
  /packages/providers/BookmarkProvider/src/com/android/bookmarkstore/
BookmarkProvider.java 59 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:BookmarkProvider
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/util/
NullContentProvider.java 31 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:NullContentProvider
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
uvcvideo.h 61 __u8 query; member in struct:uvc_xu_control_query
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
categoryquery.py 22 from .query import PolicyQuery
28 Query MLS Categories
31 policy The policy to query.
commonquery.py 23 from .query import PolicyQuery
29 Query common permission sets.
32 policy The policy to query.
devicetreeconquery.py 22 from .query import PolicyQuery
28 Devicetreecon context query.
31 policy The policy to query.
initsidquery.py 22 from .query import PolicyQuery
28 Initial SID (Initial context) query.
31 policy The policy to query.
netifconquery.py 22 from .query import PolicyQuery
29 Network interface context query.
32 policy The policy to query.
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
CallLogNotificationsQueryHelper.java 160 return newCallsQuery.query(
175 return newCallsQuery.query(Calls.MISSED_TYPE);
242 List<NewCall> query(int type); method in interface:CallLogNotificationsQueryHelper.NewCallsQuery
251 List<NewCall> query(int type, long thresholdMillis); method in interface:CallLogNotificationsQueryHelper.NewCallsQuery
255 NewCall query(Uri callsUri); method in interface:CallLogNotificationsQueryHelper.NewCallsQuery
345 public List<NewCall> query(int type) { method in class:CallLogNotificationsQueryHelper.DefaultNewCallsQuery
346 return query(type, NO_THRESHOLD);
353 public List<NewCall> query(int type, long thresholdMillis) { method in class:CallLogNotificationsQueryHelper.DefaultNewCallsQuery
356 "CallLogNotificationsQueryHelper.DefaultNewCallsQuery.query",
362 // TYPE matches the query type
410 public NewCall query(Uri callsUri) { method in class:CallLogNotificationsQueryHelper.DefaultNewCallsQuery
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/main/impl/
MainSearchController.java 224 * <li>When the dialpad is visible with an empty query, close the search UI.
225 * <li>When the dialpad is visible with a non-empty query, hide the dialpad.
226 * <li>When the regular search UI is visible with an empty query, close the search UI.
227 * <li>When the regular search UI is visible with a non-empty query, hide the keyboard.
263 LogUtil.i("MainSearchController.onBackPressed", "Dialpad visible with query");
358 private void openSearch(Optional<String> query) {
361 toolbar.expand(/* animate=*/ true, query);
382 query.isPresent() ? query.get() : "", CallInitiationType.Type.REGULAR_SEARCH);
395 public void onSearchQueryUpdated(String query) {
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/searchfragment/cp2/
SearchContactViewHolder.java 95 public void bind(SearchCursor cursor, String query) {
107 nameOrNumberView.setText(QueryBoldingUtil.getNameWithQueryBolded(query, name, context));
108 numberView.setText(QueryBoldingUtil.getNumberWithQueryBolded(query, secondaryInfo));
109 setCallToAction(cursor, query);
163 private void setCallToAction(SearchCursor cursor, String query) {
164 currentAction = getCallToAction(context, cursor, query);
194 Context context, SearchCursor cursor, String query) {
209 } else if (shouldRequestCapabilities(cursor, capabilities, query)) {
221 * <li>The search query must be 3 or more characters; OR
228 @Nullable String query) {
    [all...]
  /cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/db/
Database.java 61 public Cursor query(final String table, final String[] projection, final String selection, method in class:Database
64 .query(table, projection, selection, selectionArgs, null /* groupBy */,
  /cts/tests/tests/database/src/android/database/sqlite/cts/
DatabaseStatementTest.java 86 Cursor c = mDatabase.query("test", null, null, null, null, null, null);
140 Cursor c = mDatabase.query("test", null, null, null, null, null, null);
162 Cursor c = mDatabase.query("test", null, null, null, null, null, null);
185 Cursor c = mDatabase.query("test", null, null, null, null, null, "ROWID");
207 Cursor c = mDatabase.query("test", null, null, null, null, null, null);
232 Cursor c = mDatabase.query("test", null, null, null, null, null, "ROWID");
267 Cursor c = mDatabase.query("test", null, null, null, null, null, "ROWID");
316 Cursor c = mDatabase.query("test", null, null, null, null, null, null);
  /cts/tests/tests/provider/src/android/provider/cts/
UserDictionary_WordsTest.java 73 Cursor cursor = mContentResolver.query(UserDictionary.Words.CONTENT_URI, WORDS_PROJECTION,
91 Cursor cursor = mContentResolver.query(UserDictionary.Words.CONTENT_URI, WORDS_PROJECTION,
  /cts/tests/tests/shortcutmanager/src/android/content/pm/cts/shortcutmanager/
ShortcutManagerRequestPinTest.java 100 final ShortcutQuery query = new ShortcutQuery()
107 final List<ShortcutInfo> shortcuts = getLauncherApps().getShortcuts(query,
164 final ShortcutQuery query = new ShortcutQuery()
171 final List<ShortcutInfo> shortcuts = getLauncherApps().getShortcuts(query,
226 final ShortcutQuery query = new ShortcutQuery()
233 final List<ShortcutInfo> shortcuts = getLauncherApps().getShortcuts(query,
276 final ShortcutQuery query = new ShortcutQuery()
283 final List<ShortcutInfo> shortcuts = getLauncherApps().getShortcuts(query,
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarUsage.java 84 newText = newText.isEmpty() ? "" : "Query so far: " + newText;
89 public boolean onQueryTextSubmit(String query) {
90 Toast.makeText(this, "Searching for: " + query + "...", Toast.LENGTH_SHORT).show();
  /device/google/cuttlefish_common/guest/hals/audio/
vsoc_audio_output_stream.cpp 161 /*const */ str_parms* query, str_parms* reply, const char* key, int value) {
162 if (str_parms_get_str(query, key, NULL, 0) >= 0) {
172 StrParmsPtr query(str_parms_create_str(keys));
175 AddIntIfKeyPresent(query.get(), reply.get(),
178 AddIntIfKeyPresent(query.get(), reply.get(),
181 AddIntIfKeyPresent(query.get(), reply.get(),
184 AddIntIfKeyPresent(query.get(), reply.get(),
187 AddIntIfKeyPresent(query.get(), reply.get(),
  /external/autotest/site_utils/tester_feedback/
feedback_delegate.py 25 """Returns the query dictionary for a client.
29 @return: A dictionary mapping registered query numbers to query delegate
40 """Returns a query delegate class for a given query type.
42 @param query_id: The query type for which a delegate is needed.
44 @return: A query delegate class.
46 @raise xmlrpclib.Fault: Query type is invalid or unsupported.
51 raise xmlrpclib.Fault('Unknown query type (%s)' % query_id)
53 raise xmlrpclib.Fault('Unsupported query type (%s)' % query_id
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/
XMLSupport.java 35 * Test utility to parse, validate and query XML documents.
85 public String findStr(final Document doc, final String query)
87 return (String) getXPath().evaluate(query, doc, XPathConstants.STRING);
  /external/syslinux/gpxe/src/core/
uri.c 57 if ( uri->query )
58 DBG ( " query \"%s\"", uri->query );
125 /* Chop off the query, if it exists */
128 uri->query = tmp;
219 /* path */ 0, /* query */ '?',
380 tmp_uri.query = relative_uri->query;
382 } else if ( relative_uri->query ) {
383 tmp_uri.query = relative_uri->query
    [all...]

Completed in 821 milliseconds

<<11121314151617181920>>