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

<<11121314151617181920>>

  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDebug.java 84 cursor = mContentResolver.query(CalendarContract.Calendars.CONTENT_URI,
100 Cursor eventCursor = mContentResolver.query(
112 Cursor dirtyCursor = mContentResolver.query(
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ProfileProvider.java 76 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:ProfileProvider
78 return query(uri, projection, selection, selectionArgs, sortOrder, null);
82 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:ProfileProvider
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DirectoryTest.java 85 Cursor cursor = mResolver.query(contentUri,
111 Cursor cursor = mResolver.query(contentUri,
121 cursor = mResolver.query(contentUri,
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
OpenHelper.java 69 final Cursor cursor = downManager.query(new DownloadManager.Query().setFilterById(id));
112 .query(headersUri, null, null, null, null);
128 final Cursor cursor = context.getContentResolver().query(uri, new String[]{Constants.UID},
  /packages/services/Telephony/src/com/android/phone/
ADNList.java 91 query(); method
111 private void query() { method in class:ADNList
113 if (DBG) log("query: starting an async query");
120 query(); method
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
simple_server.py 78 path,query = self.path.split('?',1)
80 path,query = self.path,''
83 env['QUERY_STRING'] = query
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
simple_server.py 78 path,query = self.path.split('?',1)
80 path,query = self.path,''
83 env['QUERY_STRING'] = query
  /bionic/libc/dns/resolv/
res_cache.c 57 * - it takes raw DNS query packet data as input, and returns raw DNS
69 * - the implementation is just a (query-data) => (answer-data) hash table
81 * - the client calls _resolv_cache_lookup() before performing a query
130 * * 1) we've added IPv6 support so each dns query results in 2 responses
152 /* set to 1 to debug query data */
332 /* dump the content of a query of packet to the log */
367 * ID : 16 : 16-bit unique query identification field
391 * QNAME : variable : Query DNS NAME
392 * TYPE : 16 : type of query (A=1, PTR=12, MX=15, AAAA=28, ALL=255)
393 * CLASS : 16 : class of query (IN=1
993 const uint8_t* query; member in struct:Entry
    [all...]
  /external/chromium_org/chrome/browser/chromeos/geolocation/
simple_geolocation_request.cc 130 std::string query(url.query());
131 if (!query.empty())
132 query += "&";
133 query += "key=" + net::EscapeQueryParamValue(api_key, true);
135 replacements.SetQueryStr(query);
  /external/chromium_org/chrome/browser/resources/gaia_auth/
util.js 15 * Extract query params from given search string of an URL.
57 * Creates a new URL by striping all query parameters.
59 * @return {string} The new URL with all query parameters stripped.
  /frameworks/base/core/java/android/net/
UrlQuerySanitizer.java 28 * Sanitizes the Query portion of a URL. Simple example:
101 * A functor used to sanitize a single query value.
591 * Parse the query parameters out of an encoded URL.
592 * Works by extracting the query portion from the URL and then
593 * calling parseQuery(). If there is no query portion it is
594 * treated as if the query portion is an empty string.
599 String query; local
601 query = url.substring(queryIndex + 1);
604 query = "";
606 parseQuery(query);
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
Thumbnail.java 198 Uri query = baseUri.buildUpon().appendQueryParameter("limit", "1").build(); local
207 cursor = resolver.query(query, projection, selection, null, order);
224 Uri query = baseUri.buildUpon().appendQueryParameter("limit", "1").build(); local
232 cursor = resolver.query(query, projection, selection, null, order);
  /cts/tests/tests/provider/src/android/provider/cts/
UserDictionary_WordsTest.java 69 Cursor cursor = mContentResolver.query(UserDictionary.Words.CONTENT_URI, WORDS_PROJECTION,
93 Cursor cursor = mContentResolver.query(UserDictionary.Words.CONTENT_URI, WORDS_PROJECTION,
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactUtil.java 52 Cursor cursor = resolver.query(uri, projection, null, null, null);
65 Cursor cursor = resolver.query(uri, projection, null, null, null);
RawContactUtil.java 67 Cursor cursor = resolver.query(uri, projection, null, null, null);
79 Cursor cursor = resolver.query(uri, projection, null, null, null);
  /developers/build/prebuilts/gradle/BasicContactables/Application/src/main/java/com/example/android/basiccontactables/
ContactablesLoaderCallbacks.java 38 public static final String QUERY_KEY = "query";
49 // not just data dumps from Contacts db. One search term is used to query
50 // display name, email address and phone number. In this case, the query was extracted
55 String query = args.getString(QUERY_KEY); local
57 CommonDataKinds.Contactables.CONTENT_FILTER_URI, query);
62 // Easy way to limit the query to contacts with phone numbers.
90 // Reset text in case of a previous query
131 // Look at DDMS to see all the columns returned by a query to Contactables.
  /developers/samples/android/content/contacts/BasicContactables/Application/src/main/java/com/example/android/basiccontactables/
ContactablesLoaderCallbacks.java 38 public static final String QUERY_KEY = "query";
49 // not just data dumps from Contacts db. One search term is used to query
50 // display name, email address and phone number. In this case, the query was extracted
55 String query = args.getString(QUERY_KEY); local
57 CommonDataKinds.Contactables.CONTENT_FILTER_URI, query);
62 // Easy way to limit the query to contacts with phone numbers.
90 // Reset text in case of a previous query
131 // Look at DDMS to see all the columns returned by a query to Contactables.
  /development/samples/ApiDemos/src/com/example/android/apis/view/
AutoComplete4.java 44 Cursor cursor = content.query(Contacts.CONTENT_URI,
91 return mContent.query(uri, CONTACT_PROJECTION, null, null, null);
SearchViewActionBar.java 98 mStatusView.setText("Query = " + newText);
102 public boolean onQueryTextSubmit(String query) {
103 mStatusView.setText("Query = " + query + " : submitted");
WindowFocusObserver.java 88 public boolean onQueryTextSubmit(String query) {
89 Toast.makeText(this, "Searching for: " + query + "...", Toast.LENGTH_SHORT).show();
  /development/samples/browseable/BasicContactables/src/com.example.android.basiccontactables/
ContactablesLoaderCallbacks.java 38 public static final String QUERY_KEY = "query";
49 // not just data dumps from Contacts db. One search term is used to query
50 // display name, email address and phone number. In this case, the query was extracted
55 String query = args.getString(QUERY_KEY); local
57 CommonDataKinds.Contactables.CONTENT_FILTER_URI, query);
62 // Easy way to limit the query to contacts with phone numbers.
90 // Reset text in case of a previous query
131 // Look at DDMS to see all the columns returned by a query to Contactables.
  /development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/
NotesDbAdapter.java 146 return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_TITLE,
161 mDb.query(true, DATABASE_TABLE, new String[] {KEY_ROWID,
  /development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
NotesDbAdapter.java 146 return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_TITLE,
161 mDb.query(true, DATABASE_TABLE, new String[] {KEY_ROWID,
  /development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
NotesDbAdapter.java 146 return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_TITLE,
161 mDb.query(true, DATABASE_TABLE, new String[] {KEY_ROWID,
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
NotesDbAdapter.java 146 return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_TITLE,
161 mDb.query(true, DATABASE_TABLE, new String[] {KEY_ROWID,

Completed in 1345 milliseconds

<<11121314151617181920>>