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

/frameworks/base/test-runner/src/android/test/mock/
H A DMockResources.java167 public InputStream openRawResource(int id) throws NotFoundException { method in class:MockResources
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DResources_Delegate.java923 static InputStream openRawResource(Resources resources, int id) throws NotFoundException { method in class:Resources_Delegate
958 static InputStream openRawResource(Resources resources, int id, TypedValue value) throws method in class:Resources_Delegate
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DResourcesWrapper.java191 public InputStream openRawResource(int id) throws NotFoundException { method in class:ResourcesWrapper
192 return mResources.openRawResource(id);
196 public InputStream openRawResource(int id, TypedValue value) throws NotFoundException { method in class:ResourcesWrapper
197 return mResources.openRawResource(id, value);
/frameworks/base/core/java/android/content/res/
H A DResources.java897 final InputStream is = openRawResource(id);
1207 public InputStream openRawResource(@RawRes int id) throws NotFoundException { method in class:Resources
1210 return openRawResource(id, value);
1263 public InputStream openRawResource(@RawRes int id, TypedValue value) method in class:Resources
1265 return mResourcesImpl.openRawResource(id, value);
H A DResourcesImpl.java302 InputStream openRawResource(@RawRes int id, TypedValue value) throws NotFoundException { method in class:ResourcesImpl

Completed in 3697 milliseconds