HomeSort by relevance Sort by last modified time
    Searched refs:resourceUri (Results 1 - 11 of 11) sorted by null

  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
XmlDocumentProvider.java 185 Uri resourceUri = Uri.parse(ContentResolver.SCHEME_ANDROID_RESOURCE + "://" +
187 parser = getResourceXmlPullParser(resourceUri);
255 * @param resourceUri A fully qualified resource name referencing a local XML resource.
258 protected XmlPullParser getResourceXmlPullParser(Uri resourceUri) {
261 String authority = resourceUri.getAuthority();
264 throw new FileNotFoundException("No authority: " + resourceUri);
269 throw new FileNotFoundException("No package found for authority: " + resourceUri);
272 List<String> path = resourceUri.getPathSegments();
274 throw new FileNotFoundException("No path: " + resourceUri);
282 throw new FileNotFoundException("Single path segment is not a resource ID: " + resourceUri);
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
CachingIconLoader.java 94 private synchronized void storeInIconCache(String resourceUri, Entry drawable) {
96 mIconCache.put(resourceUri, drawable);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
BitmapWorkerOptions.java 100 throw new RuntimeException("Both Icon and ResourceUri are null");
117 public Builder resource(Uri resourceUri) {
118 mResourceUri = resourceUri;
DrawableLoader.java 293 Uri resourceUri = options.getResourceUri();
294 if (resourceUri != null) {
297 options.getContext().getContentResolver().openInputStream(resourceUri);
308 + resourceUri.toString());
312 Log.w(TAG, "Get null resourceUri from BitmapWorkerOptions.");
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
UriUtils.java 203 public static boolean isWebUri(Uri resourceUri) {
204 String scheme = resourceUri.getScheme() == null ? null
205 : resourceUri.getScheme().toLowerCase();
  /frameworks/base/core/java/android/widget/
SuggestionsAdapter.java 599 private Drawable checkIconCache(String resourceUri) {
600 Drawable.ConstantState cached = mOutsideDrawablesCache.get(resourceUri);
604 if (DBG) Log.d(LOG_TAG, "Found icon in cache: " + resourceUri);
608 private void storeInIconCache(String resourceUri, Drawable drawable) {
610 mOutsideDrawablesCache.put(resourceUri, drawable.getConstantState());
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
SuggestionsAdapter.java 558 private Drawable checkIconCache(String resourceUri) {
559 Drawable.ConstantState cached = mOutsideDrawablesCache.get(resourceUri);
563 if (DBG) Log.d(LOG_TAG, "Found icon in cache: " + resourceUri);
567 private void storeInIconCache(String resourceUri, Drawable drawable) {
569 mOutsideDrawablesCache.put(resourceUri, drawable.getConstantState());
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 
  /prebuilts/tools/common/google-api-java-client/1.8.0-rc/
google-api-java-client-min-repackaged.jar 
  /prebuilts/tools/common/m2/repository/biz/aQute/bndlib/1.50.0/
bndlib-1.50.0.jar 
  /prebuilts/tools/common/m2/repository/biz/aQute/bnd/1.50.0/
bnd-1.50.0.jar 

Completed in 2637 milliseconds