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.java792 Uri.Builder uriBuilder = new Uri.Builder() in getSuggestions() local
801 uriBuilder.appendEncodedPath(contentPath); in getSuggestions()
805 uriBuilder.appendPath(SearchManager.SUGGEST_URI_PATH_QUERY); in getSuggestions()
814 uriBuilder.appendPath(query); in getSuggestions()
818 uriBuilder.appendQueryParameter(SUGGEST_PARAMETER_LIMIT, String.valueOf(limit)); in getSuggestions()
821 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.java1599 Uri.Builder uriBuilder = THREAD_ID_CONTENT_URI.buildUpon(); in getOrCreateThreadId() local
1606 uriBuilder.appendQueryParameter("recipient", recipient); in getOrCreateThreadId()
1609 Uri uri = uriBuilder.build(); in getOrCreateThreadId()
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
DPduPersister.java1546 Uri.Builder uriBuilder = PendingMessages.CONTENT_URI.buildUpon(); in getPendingMessages() local
1547 uriBuilder.appendQueryParameter("protocol", "mms"); in getPendingMessages()
1558 uriBuilder.build(), null, selection, selectionArgs, in getPendingMessages()