Searched defs:openRawResource (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/test-mock/src/android/test/mock/
H A DMockResources.java167 public InputStream openRawResource(int id) throws NotFoundException { method in class:MockResources
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DResourcesWrapper.java192 public InputStream openRawResource(int id) throws NotFoundException { method in class:ResourcesWrapper
193 return mResources.openRawResource(id);
197 public InputStream openRawResource(int id, TypedValue value) throws NotFoundException { method in class:ResourcesWrapper
198 return mResources.openRawResource(id, value);
/frameworks/layoutlib/bridge/src/android/content/res/
H A DResources_Delegate.java950 static InputStream openRawResource(Resources resources, int id) throws NotFoundException { method in class:Resources_Delegate
985 static InputStream openRawResource(Resources resources, int id, TypedValue value) throws method in class:Resources_Delegate
/frameworks/base/core/java/android/content/res/
H A DResources.java909 final InputStream is = openRawResource(id);
1222 public InputStream openRawResource(@RawRes int id) throws NotFoundException { method in class:Resources
1225 return openRawResource(id, value);
1279 public InputStream openRawResource(@RawRes int id, TypedValue value) method in class:Resources
1281 return mResourcesImpl.openRawResource(id, value);
H A DResourcesImpl.java323 InputStream openRawResource(@RawRes int id, TypedValue value) throws NotFoundException { method in class:ResourcesImpl

Completed in 28 milliseconds