HomeSort by relevance Sort by last modified time
    Searched defs:loadXmlResourceParser (Results 1 - 3 of 3) sorted by null

  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowLegacyResourcesImpl.java 127 public XmlResourceParser loadXmlResourceParser(int resId, String type) throws Resources.NotFoundException {
129 return shadowAssetManager.loadXmlResourceParser(resId, type);
133 public XmlResourceParser loadXmlResourceParser(String file, int id, int assetCookie, String type) throws Resources.NotFoundException {
134 return loadXmlResourceParser(id, type);
ShadowResources.java 201 protected XmlResourceParser loadXmlResourceParser(int resId, String type)
205 return shadowAssetManager.loadXmlResourceParser(resId, type);
207 return directlyOn(realResources, Resources.class, "loadXmlResourceParser",
215 protected XmlResourceParser loadXmlResourceParser(
218 return loadXmlResourceParser(id, type);
220 return directlyOn(realResources, Resources.class, "loadXmlResourceParser",
ShadowLegacyAssetManager.java 592 protected XmlResourceParser loadXmlResourceParser(int resId, String type) throws Resources.NotFoundException {
    [all...]

Completed in 206 milliseconds