/frameworks/base/tools/layoutlib/bridge/src/android/content/res/ |
Resources_Delegate.java | 43 import android.content.res.Resources.NotFoundException; 145 // id was not found or not resolved. Throw a NotFoundException. 158 static int getColor(Resources resources, int id, Theme theme) throws NotFoundException { 188 static ColorStateList getColorStateList(Resources resources, int id) throws NotFoundException { 194 throws NotFoundException { 206 // id was not found or not resolved. Throw a NotFoundException. 233 static CharSequence getText(Resources resources, int id) throws NotFoundException { 248 // id was not found or not resolved. Throw a NotFoundException. 256 static CharSequence[] getTextArray(Resources resources, int id) throws NotFoundException { 270 static String[] getStringArray(Resources resources, int id) throws NotFoundException { [all...] |
/frameworks/base/core/java/android/content/res/ |
ResourcesImpl.java | 33 import android.content.res.Resources.NotFoundException; 185 throws NotFoundException { 190 throw new NotFoundException("Resource ID #0x" + Integer.toHexString(id)); 194 boolean resolveRefs) throws NotFoundException { 199 throw new NotFoundException("Resource ID #0x" + Integer.toHexString(id)); 203 throws NotFoundException { 209 throw new NotFoundException("String resource name " + name); 225 String getResourceName(@AnyRes int resid) throws NotFoundException { 228 throw new NotFoundException("Unable to find resource ID #0x" 233 String getResourcePackageName(@AnyRes int resid) throws NotFoundException { [all...] |
/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...] |
CannotCompileException.java | 92 * <code>NotFoundException</code>. 94 public CannotCompileException(NotFoundException e) {
|
CtClassType.java | 120 catch (NotFoundException e) { 134 catch (NotFoundException e) { 187 throw new NotFoundException(getName()); 199 catch (NotFoundException e) { 266 public URL getURL() throws NotFoundException { 269 throw new NotFoundException(getName()); 297 public boolean subtypeOf(CtClass clazz) throws NotFoundException { 397 public CtClass[] getNestedClasses() throws NotFoundException { 687 public CtClass getSuperclass() throws NotFoundException { 703 public CtClass[] getInterfaces() throws NotFoundException { [all...] |
CtNewClass.java | 67 catch (NotFoundException e) { 82 throws CannotCompileException, NotFoundException
|
/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 {
|
/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) {
|
/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/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/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 | 29 import android.content.res.Resources.NotFoundException; 244 public CharSequence loadAuthor(PackageManager pm) throws NotFoundException { 245 if (mAuthorResource <= 0) throw new NotFoundException(); 258 public CharSequence loadDescription(PackageManager pm) throws NotFoundException { 270 if (mDescriptionResource <= 0) throw new NotFoundException(); 281 public Uri loadContextUri(PackageManager pm) throws NotFoundException { 282 if (mContextUriResource <= 0) throw new NotFoundException(); 303 public CharSequence loadContextDescription(PackageManager pm) throws NotFoundException { 304 if (mContextDescriptionResource <= 0) throw new NotFoundException();
|
/external/javassist/sample/vector/ |
VectorAssistant.java | 70 catch (NotFoundException e) { 85 throws CannotCompileException, NotFoundException, IOException 110 throws CannotCompileException, NotFoundException, IOException
|
/external/javassist/src/main/javassist/convert/ |
TransformCall.java | 22 import javassist.NotFoundException; 95 catch (NotFoundException e) { 100 catch (NotFoundException e) {
|
TransformReadField.java | 22 import javassist.NotFoundException; 52 catch (NotFoundException e) {} 64 catch (NotFoundException e) {}
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
Util.java | 51 } catch (Resources.NotFoundException e) { 64 } catch (Resources.NotFoundException e) { 71 throws Resources.NotFoundException {
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/kms/ |
exceptions.py | 71 class NotFoundException(BotoServerError):
|
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
TintResources.java | 44 public Drawable getDrawable(int id) throws NotFoundException {
|
/packages/apps/Settings/src/com/android/settings/ |
HelpTrampoline.java | 45 } catch (Resources.NotFoundException | ActivityNotFoundException e) {
|
/external/javassist/src/main/javassist/compiler/ |
MemberResolver.java | 151 catch (NotFoundException e) {} 176 catch (NotFoundException e) {} 252 catch (NotFoundException e) { 295 catch (NotFoundException e) { 321 catch (NotFoundException e) {} 411 catch (NotFoundException e) { 430 catch (NotFoundException e) { 440 catch (NotFoundException e2) { 451 throws NotFoundException 458 catch (NotFoundException e) [all...] |
/external/javassist/src/main/javassist/bytecode/analysis/ |
MultiArrayType.java | 19 import javassist.NotFoundException; 49 } catch (NotFoundException e) {
|