/prebuilts/sdk/28/optional/ |
android.test.mock.jar | |
/prebuilts/sdk/current/optional/ |
android.test.mock.jar | |
/prebuilts/sdk/system_current/optional/ |
android.test.mock.jar | |
/external/javassist/src/main/javassist/ |
ClassPoolTail.java | 78 JarDirClassPath(String dirName) throws NotFoundException { 93 public InputStream openClassfile(String classname) throws NotFoundException { 126 JarClassPath(String pathname) throws NotFoundException { 134 throw new NotFoundException(pathname); 138 throws NotFoundException 149 throw new NotFoundException("broken jar file?: " 242 throws NotFoundException 248 throws NotFoundException 254 throws NotFoundException 283 throws NotFoundException, IOException, CannotCompileExceptio [all...] |
ClassPool.java | 386 throws NotFoundException 390 throw new NotFoundException(orgName); 431 public CtClass get(String classname) throws NotFoundException { 439 throw new NotFoundException(classname); 472 catch (NotFoundException e){} 500 public CtClass getCtClass(String classname) throws NotFoundException { 513 throws NotFoundException 597 catch (NotFoundException e) {} 622 catch (NotFoundException e) {} 630 InputStream openClassfile(String classname) throws NotFoundException { [all...] |
/frameworks/support/graphics/drawable/animated/src/main/java/androidx/vectordrawable/graphics/drawable/ |
AnimationUtilsCompat.java | 23 import android.content.res.Resources.NotFoundException; 65 throws NotFoundException { 85 NotFoundException rnf = new NotFoundException("Can't load animation resource ID #0x" 90 NotFoundException rnf = new NotFoundException("Can't load animation resource ID #0x"
|
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/ |
A2dpCodecConfig.java | 23 import android.content.res.Resources.NotFoundException; 105 } catch (NotFoundException e) { 115 } catch (NotFoundException e) { 125 } catch (NotFoundException e) { 135 } catch (NotFoundException e) { 145 } catch (NotFoundException e) {
|
/frameworks/base/tests/testables/tests/src/android/testing/ |
TestableResourcesTest.java | 54 fail("Should throw NotFoundException"); 55 } catch (Resources.NotFoundException e) { 71 fail("Should throw NotFoundException"); 72 } catch (Resources.NotFoundException e) { 86 @Test(expected = Resources.NotFoundException.class)
|
/frameworks/layoutlib/bridge/src/android/content/res/ |
Resources_Delegate.java | 46 import android.content.res.Resources.NotFoundException; 208 // id was not found or not resolved. Throw a NotFoundException. 221 static int getColor(Resources resources, int id, Theme theme) throws NotFoundException { 251 static ColorStateList getColorStateList(Resources resources, int id) throws NotFoundException { 257 throws NotFoundException { 269 // id was not found or not resolved. Throw a NotFoundException. 296 static CharSequence getText(Resources resources, int id) throws NotFoundException { 311 // id was not found or not resolved. Throw a NotFoundException. 319 static CharSequence[] getTextArray(Resources resources, int id) throws NotFoundException { 333 static String[] getStringArray(Resources resources, int id) throws NotFoundException { [all...] |
/external/javassist/sample/ |
Test.java | 33 catch (NotFoundException e) {
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/ |
JavassistHelper.java | 31 import javassist.NotFoundException; 50 * @throws NotFoundException 52 public static String returnValue(CtBehavior method) throws NotFoundException { 67 * @throws NotFoundException 69 private static boolean methodReturnsValue(CtBehavior method) throws NotFoundException { 91 * @throws NotFoundException 93 public static String getSignature(CtBehavior method) throws NotFoundException {
|
/frameworks/base/core/java/android/content/res/ |
ResourcesImpl.java | 32 import android.content.res.Resources.NotFoundException; 211 throws NotFoundException { 216 throw new NotFoundException("Resource ID #0x" + Integer.toHexString(id)); 220 boolean resolveRefs) throws NotFoundException { 225 throw new NotFoundException("Resource ID #0x" + Integer.toHexString(id)); 229 throws NotFoundException { 235 throw new NotFoundException("String resource name " + name); 251 String getResourceName(@AnyRes int resid) throws NotFoundException { 254 throw new NotFoundException("Unable to find resource ID #0x" 259 String getResourcePackageName(@AnyRes int resid) throws NotFoundException { [all...] |
/external/javassist/src/main/javassist/tools/reflect/ |
Reflection.java | 103 public void start(ClassPool pool) throws NotFoundException { 116 catch (NotFoundException e) { 126 throws CannotCompileException, NotFoundException 147 throws CannotCompileException, NotFoundException 173 throws CannotCompileException, NotFoundException 200 NotFoundException 239 throws CannotCompileException, NotFoundException 276 throws CannotCompileException, NotFoundException 289 throws CannotCompileException, NotFoundException 336 throws NotFoundException [all...] |
/external/javassist/src/main/javassist/tools/rmi/ |
StubGenerator.java | 70 public void start(ClassPool pool) throws NotFoundException { 113 throws CannotCompileException, NotFoundException 128 throws CannotCompileException, NotFoundException 168 private CtClass toCtClass(Class rtclass) throws NotFoundException { 185 private CtClass[] toCtClass(Class[] rtclasses) throws NotFoundException { 198 throws CannotCompileException, NotFoundException 236 throws CannotCompileException, NotFoundException 248 catch (NotFoundException e) {
|
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/ |
AndroidPackageInfoFetcher.java | 24 import android.content.res.Resources.NotFoundException; 89 } catch (NotFoundException e) {
|
/frameworks/base/tests/testables/src/android/testing/ |
TestableResources.java | 63 * @param value The value of the resource, null to cause a {@link Resources.NotFoundException} 74 * cause a {@link Resources.NotFoundException} whereas removing the override will actually 89 if (value == null) throw new Resources.NotFoundException(); 92 } catch (Resources.NotFoundException e) { 93 // Let through NotFoundException.
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
AbstractHtmlTemplates.java | 65 protected String readTemplate(int id) throws Resources.NotFoundException { 87 throw new Resources.NotFoundException("Unable to open template id="
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
ShadowResources.java | 104 public String getQuantityString(int id, int quantity, Object... formatArgs) throws Resources.NotFoundException { 110 public String getQuantityString(int resId, int quantity) throws Resources.NotFoundException { 132 public InputStream openRawResource(int id) throws Resources.NotFoundException { 145 * be returned if the resource is found. If the resource cannot be found, {@link Resources.NotFoundException} will 149 public AssetFileDescriptor openRawResourceFd(int id) throws Resources.NotFoundException { 164 private Resources.NotFoundException newNotFoundException(int id) { 168 return new Resources.NotFoundException("resource ID #0x" + Integer.toHexString(id)); 170 return new Resources.NotFoundException(resName.getFullyQualifiedName()); 175 public TypedArray obtainTypedArray(int id) throws Resources.NotFoundException { 211 public XmlResourceParser loadXmlResourceParser(int resId, String type) throws Resources.NotFoundException { [all...] |
ShadowResourcesImpl.java | 77 public String getQuantityString(int id, int quantity, Object... formatArgs) throws Resources.NotFoundException { 83 public String getQuantityString(int resId, int quantity) throws Resources.NotFoundException { 104 public InputStream openRawResource(int id) throws Resources.NotFoundException { 117 * be returned if the resource is found. If the resource cannot be found, {@link Resources.NotFoundException} will 121 public AssetFileDescriptor openRawResourceFd(int id) throws Resources.NotFoundException { 136 private Resources.NotFoundException newNotFoundException(int id) { 140 return new Resources.NotFoundException("resource ID #0x" + Integer.toHexString(id)); 142 return new Resources.NotFoundException(resName.getFullyQualifiedName()); 148 public XmlResourceParser loadXmlResourceParser(int resId, String type) throws Resources.NotFoundException { 154 public XmlResourceParser loadXmlResourceParser(String file, int id, int assetCookie, String type) throws Resources.NotFoundException { [all...] |
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/ |
AndroidTranslator.java | 59 public void start(ClassPool classPool) throws NotFoundException, CannotCompileException { 63 private void injectClassHandlerToInstrumentedClasses(ClassPool classPool) throws NotFoundException, CannotCompileException { 79 public void onLoad(ClassPool classPool, String className) throws NotFoundException, CannotCompileException { 92 } catch (NotFoundException e) { 139 private void replaceClassWithFromAndroidEquivalent(ClassPool classPool, String className) throws NotFoundException { 193 } catch (NotFoundException e) { 203 private void fixConstructors(CtClass ctClass) throws CannotCompileException, NotFoundException { 230 private boolean fixConstructor(CtClass ctClass, boolean needsDefault, CtConstructor ctConstructor) throws NotFoundException, CannotCompileException { 236 private String generateConstructorBody(CtClass ctClass, CtClass[] parameterTypes) throws NotFoundException { 245 private void fixMethods(CtClass ctClass) throws NotFoundException, CannotCompileException [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
ClassPathResolver.java | 128 } catch (NotFoundException ex2) { 134 } catch (NotFoundException ex) { 141 } catch (NotFoundException ex2) { 189 throws IOException, NoDexException, NotFoundException { 216 throw new NotFoundException("Could not find classpath entry %s", entry); 249 } catch (NotFoundException ex) { 264 throws IOException, NoDexException, NotFoundException { 270 throw new NotFoundException("Cannot find dependency %s in %s", oatDependencyName, directory); 288 private static class NotFoundException extends Exception { 289 public NotFoundException(String message, Object... formatArgs) [all...] |
/frameworks/support/compat/src/main/java/androidx/core/content/res/ |
ResourcesCompat.java | 26 import android.content.res.Resources.NotFoundException; 74 * @throws NotFoundException Throws NotFoundException if the given ID does 80 @Nullable Theme theme) throws NotFoundException { 107 * @throws NotFoundException Throws NotFoundException if the given ID does 113 int density, @Nullable Theme theme) throws NotFoundException { 137 * @throws NotFoundException Throws NotFoundException if the given ID does 143 throws NotFoundException { [all...] |
/external/javassist/sample/evolve/ |
Evolution.java | 37 public void start(ClassPool _pool) throws NotFoundException {
46 throws NotFoundException, CannotCompileException {
60 private void onLoadUpdatable(String classname) throws NotFoundException,
78 throw new NotFoundException(classname, e);
88 public void makeUpdatable(String classname) throws NotFoundException,
103 throws CannotCompileException, NotFoundException {
170 int version) throws CannotCompileException, NotFoundException {
|
/frameworks/base/core/java/android/app/ |
WallpaperInfo.java | 27 import android.content.res.Resources.NotFoundException; 233 public CharSequence loadAuthor(PackageManager pm) throws NotFoundException { 234 if (mAuthorResource <= 0) throw new NotFoundException(); 247 public CharSequence loadDescription(PackageManager pm) throws NotFoundException { 259 if (mDescriptionResource <= 0) throw new NotFoundException(); 270 public Uri loadContextUri(PackageManager pm) throws NotFoundException { 271 if (mContextUriResource <= 0) throw new NotFoundException(); 292 public CharSequence loadContextDescription(PackageManager pm) throws NotFoundException { 293 if (mContextDescriptionResource <= 0) throw new NotFoundException();
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/ |
JavassistTypeDeclarationAdapter.java | 20 import javassist.NotFoundException; 62 } catch (NotFoundException e) { 89 } catch (NotFoundException e) {
|