HomeSort by relevance Sort by last modified time
    Searched defs:NotFoundException (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/javassist/src/main/javassist/
NotFoundException.java 21 public class NotFoundException extends Exception {
22 public NotFoundException(String msg) {
26 public NotFoundException(String msg, Exception e) {
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/kms/
test_kms.py 24 from boto.kms.exceptions import NotFoundException
37 with self.assertRaises(NotFoundException):
  /frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
TestResources.java 23 public String getString(int id) throws NotFoundException {
32 throw new NotFoundException();
36 public String getString(int id, Object... formatArgs) throws NotFoundException {
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/kms/
exceptions.py 71 class NotFoundException(BotoServerError):
  /frameworks/base/rs/java/android/renderscript/
ScriptC.java 113 throw new Resources.NotFoundException();
Program.java 274 throw new Resources.NotFoundException();
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptC.java 114 throw new Resources.NotFoundException();
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
stat.py 24 from gslib.cloud_api import NotFoundException
146 except NotFoundException:
ls.py 22 from gslib.cloud_api import NotFoundException
479 raise NotFoundException('One or more bucket URLs matched no buckets.')
rm.py 21 from gslib.cloud_api import NotFoundException
158 'No URLs matched' in e.message) or isinstance(e, NotFoundException):
rsync.py 35 from gslib.cloud_api import NotFoundException
    [all...]
perfdiag.py 43 from gslib.cloud_api import NotFoundException
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
wildcard_iterator.py 31 from gslib.cloud_api import NotFoundException
171 except (NotFoundException, AccessDeniedException):
cloud_api.py 606 class NotFoundException(ServiceException):
610 class BucketNotFoundException(NotFoundException):
translation_helper.py 40 from gslib.cloud_api import NotFoundException
327 """Creates a NotFoundException for an object upload or copy.
341 NotFoundException with appropriate message.
349 return NotFoundException(
353 return NotFoundException(
369 return NotFoundException('%s does not exist.' % uri_string, status=code)
    [all...]
boto_translation.py 56 from gslib.cloud_api import NotFoundException
336 raise NotFoundException('Bucket %s does not exist.' % bucket_name)
    [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 {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowResources.java 67 public int getColor(int id) throws Resources.NotFoundException {
84 public String getString(int id) throws Resources.NotFoundException {
89 public String getString(int id, Object... formatArgs) throws Resources.NotFoundException {
95 public String getQuantityString(int id, int quantity, Object... formatArgs) throws Resources.NotFoundException {
101 public String getQuantityString(int id, int quantity) throws Resources.NotFoundException {
106 public InputStream openRawResource(int id) throws Resources.NotFoundException {
111 public String[] getStringArray(int id) throws Resources.NotFoundException {
114 throw new Resources.NotFoundException();
120 public CharSequence[] getTextArray(int id) throws Resources.NotFoundException {
125 public CharSequence getText(int id) throws Resources.NotFoundException {
    [all...]
  /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();
  /frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/
PartnerTest.java 149 public int getInteger(int id) throws NotFoundException {
153 throw new NotFoundException();
158 public int getColor(int id) throws NotFoundException {
162 throw new NotFoundException();
  /frameworks/base/core/java/android/app/admin/
DeviceAdminInfo.java 34 import android.content.res.Resources.NotFoundException;
399 public CharSequence loadDescription(PackageManager pm) throws NotFoundException {
404 throw new NotFoundException();
  /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...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_naming.py 39 from gslib.cloud_api import NotFoundException
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizeTabHost.java 107 if (tabs == null || mAppsCustomizePane == null) throw new Resources.NotFoundException();
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperPreview.java 30 import android.content.res.Resources.NotFoundException;
204 throw new NotFoundException();
207 } catch (NotFoundException e) {
214 throw new NotFoundException();
217 } catch (NotFoundException e) {
225 throw new NotFoundException();
237 } catch (NotFoundException e) {

Completed in 424 milliseconds

1 2 3