HomeSort by relevance Sort by last modified time
    Searched defs:exception (Results 26 - 50 of 282) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/google-tv-pairing-protocol/java/src/com/google/polo/exception/
BadSecretException.java 17 package com.google.polo.exception;
20 * Exception thrown when the secret given is incorrect.
NoConfigurationException.java 17 package com.google.polo.exception;
20 * Exception thrown when a session configuration could not be negotiated.
PoloException.java 17 package com.google.polo.exception;
20 * Generic exception thrown by the Polo library.
22 public class PoloException extends Exception {
ProtocolErrorException.java 17 package com.google.polo.exception;
20 * Exception thrown when the protocol has ceased due to error.
  /art/test/081-hot-exceptions/src/
Main.java 29 int exception = 0; local
36 exception++;
40 System.out.println("exception = " + exception);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSyntaxMessage.java 41 public RecognitionException exception; field in class:GrammarSyntaxMessage
46 RecognitionException exception)
48 this(msgID,grammar,offendingToken,null,exception);
55 RecognitionException exception)
59 this.exception = exception;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
ExtCertPathBuilderException.java 1 package org.bouncycastle.jce.exception;
ExtCertPathValidatorException.java 1 package org.bouncycastle.jce.exception;
  /external/chromium_org/tools/grit/grit/node/
mapping.py 11 from grit import exception namespace
59 raise exception.UnknownElement()
  /external/chromium_org/v8/test/mjsunit/
debug-evaluate-locals-optimized-double.js 35 var exception = false; variable
171 exception = e.toString() + e.stack;
235 assertFalse(exception, "exception in listener " + exception)
debug-evaluate-locals-optimized.js 35 var exception = false; variable
162 exception = e.toString() + e.stack;
216 assertFalse(exception, "exception in listener " + exception)
  /external/clang/test/CodeGenCXX/
2006-03-06-C++RecurseCrash.cpp 3 class exception { }; class in namespace:std
18 class recursive_init: public std::exception {
  /external/objenesis/tck/src/org/objenesis/tck/
Reporter.java 27 * startTests(startObjenesis(result | exception) * endObjenesis) * endTests
67 * @param exception Exception thrown by instantiator.
69 void exception(Exception exception); method in interface:Reporter
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Failure.java 23 private final Throwable exception; field in class:Failure
27 this.exception = builder.exception;
34 public Throwable exception() { method in class:Failure
35 return exception;
40 private Throwable exception; field in class:Failure.Builder
47 public Builder exception(Throwable exception) { method in class:Failure.Builder
48 this.exception = exception;
    [all...]
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/ui/
DialogHelperImpl.java 46 * mDialogHelper.showErrorMessageDialog("An exception occurred!", e);
72 private static final String KEY_EXCEPTION = "exception";
82 public void showErrorMessageDialog(int titleId, Exception exception) {
83 showErrorMessageDialog(mActivity.getString(titleId), exception); local
87 public void showErrorMessageDialog(String title, Exception exception) {
90 bundle.putSerializable(KEY_EXCEPTION, exception);
99 Exception exception = (Exception) args.getSerializable(KEY_EXCEPTION) local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
SyntaxTreeBuilder.java 115 } catch (IOException exception) {
116 throw new JSilverIOException(exception);
117 } catch (ParserException exception) {
118 throw new JSilverBadSyntaxException(exception.getMessage(), exception.getToken().getText(),
119 templateName, exception.getToken().getLine(), exception.getToken().getPos(), exception); local
120 } catch (LexerException exception) {
121 throw new JSilverBadSyntaxException(exception.getMessage(), null, templateName
123 exception); local
    [all...]
  /art/runtime/entrypoints/portable/
portable_throw_entrypoints.cc 51 extern "C" void art_portable_throw_exception_from_code(mirror::Throwable* exception)
55 if (exception == NULL) {
56 ThrowNullPointerException(NULL, "throw with null exception");
58 self->SetException(throw_location, exception);
66 mirror::Throwable* exception = self->GetException(NULL); local
68 return exception;
76 mirror::Throwable* exception = self->GetException(&throw_location); local
77 // Check for special deoptimization exception.
78 if (UNLIKELY(reinterpret_cast<intptr_t>(exception) == -1)) {
81 mirror::Class* exception_type = exception->GetClass()
    [all...]
  /cts/tests/tests/content/src/android/content/pm/cts/
PackageManager_NameNotFoundExceptionTest.java 27 PackageManager.NameNotFoundException exception = new PackageManager.NameNotFoundException(); local
29 throw exception;
35 exception = new PackageManager.NameNotFoundException(message);
37 throw exception;
  /external/chromium_org/content/renderer/pepper/
pepper_try_catch.h 34 // exception if there is an error in the conversion.
49 // kDisallowObjectVars, an exception should be set if they are encountered
54 // Catches var exceptions and emits a v8 exception.
64 PP_Var* exception() { return &exception_; } function in class:content::PepperTryCatchV8
77 // Catches v8 exceptions and emits a var exception.
80 // The PP_Var exception will be placed in |exception|. The user of this class
81 // is responsible for managing the lifetime of the exception. It is valid to
82 // pass NULL for |exception| in which case no exception will be set
    [all...]
  /external/chromium_org/net/tools/tld_cleanup/
tld_cleanup_util.h 19 bool exception; member in struct:net::tld_cleanup::Rule
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
networktransaction_unittest.py 37 exception = Exception("Test exception") variable in class:NetworkTransactionTest
44 raise self.exception
53 except Exception, e:
55 self.assertEqual(e, self.exception)
  /external/chromium_org/tools/grit/grit/format/
rc_header.py 9 from grit import exception namespace
193 raise exception.IdRangeOverlap('ID %d was assigned to both %s and %s.'
rc_header_unittest.py 19 from grit import exception namespace
112 self.assertRaises(exception.IdRangeOverlap, self.FormatAll, grd)
131 self.assertRaises(exception.IdRangeOverlap, self.FormatAll, grd)
  /external/chromium_org/tools/grit/grit/gather/
admin_template.py 12 from grit import exception namespace
16 class MalformedAdminTemplateException(exception.Base):
  /external/chromium_org/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 39 var exception; variable
54 exception = e;
67 exception = null;
75 assertNull(exception, test_name);

Completed in 1402 milliseconds

12 3 4 5 6 7 8 91011>>