Home
last modified time | relevance | path

Searched refs:uriBuilder (Results 1 – 5 of 5) sorted by relevance

/frameworks/ex/common/java/com/android/common/
DSearch.java88 Uri.Builder uriBuilder = new Uri.Builder() in getSuggestions() local
97 uriBuilder.appendEncodedPath(contentPath); in getSuggestions()
101 uriBuilder.appendPath(SearchManager.SUGGEST_URI_PATH_QUERY); in getSuggestions()
110 uriBuilder.appendPath(query); in getSuggestions()
114 uriBuilder.appendQueryParameter(SearchManager.SUGGEST_PARAMETER_LIMIT, in getSuggestions()
118 Uri uri = uriBuilder.build(); in getSuggestions()
/frameworks/base/core/java/android/app/
DSearchManager.java901 Uri.Builder uriBuilder = new Uri.Builder() in getSuggestions() local
910 uriBuilder.appendEncodedPath(contentPath); in getSuggestions()
914 uriBuilder.appendPath(SearchManager.SUGGEST_URI_PATH_QUERY); in getSuggestions()
923 uriBuilder.appendPath(query); in getSuggestions()
927 uriBuilder.appendQueryParameter(SUGGEST_PARAMETER_LIMIT, String.valueOf(limit)); in getSuggestions()
930 Uri uri = uriBuilder.build(); in getSuggestions()
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DSuggestionsAdapter.java716 Uri.Builder uriBuilder = new Uri.Builder() in getSearchManagerSuggestions() local
725 uriBuilder.appendEncodedPath(contentPath); in getSearchManagerSuggestions()
729 uriBuilder.appendPath(SearchManager.SUGGEST_URI_PATH_QUERY); in getSearchManagerSuggestions()
738 uriBuilder.appendPath(query); in getSearchManagerSuggestions()
742 uriBuilder.appendQueryParameter("limit", String.valueOf(limit)); in getSearchManagerSuggestions()
745 Uri uri = uriBuilder.build(); in getSearchManagerSuggestions()
/frameworks/opt/telephony/src/java/android/provider/
DTelephony.java1856 Uri.Builder uriBuilder = THREAD_ID_CONTENT_URI.buildUpon(); in getOrCreateThreadId() local
1863 uriBuilder.appendQueryParameter("recipient", recipient); in getOrCreateThreadId()
1866 Uri uri = uriBuilder.build(); in getOrCreateThreadId()
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
DPduPersister.java1566 Uri.Builder uriBuilder = PendingMessages.CONTENT_URI.buildUpon(); in getPendingMessages() local
1567 uriBuilder.appendQueryParameter("protocol", "mms"); in getPendingMessages()
1578 uriBuilder.build(), null, selection, selectionArgs, in getPendingMessages()