HomeSort by relevance Sort by last modified time
    Searched refs:exception (Results 426 - 450 of 2577) sorted by null

<<11121314151617181920>>

  /packages/services/Telephony/src/com/android/phone/
CallWaitingCheckBoxPreference.java 90 if (ar.exception != null) {
92 Log.d(LOG_TAG, "handleGetCallWaitingResponse: ar.exception=" + ar.exception);
96 (CommandException)ar.exception);
122 if (ar.exception != null) {
124 Log.d(LOG_TAG, "handleSetCallWaitingResponse: ar.exception=" + ar.exception);
131 MESSAGE_SET_CALL_WAITING, MESSAGE_SET_CALL_WAITING, ar.exception));
  /external/chromium_org/chrome/browser/ui/webui/options/
content_settings_exception_area_browsertest.js 6 * TestFixture for content settings exception area WebUI testing.
26 // Test opening the content settings exception area has correct location.
33 * A class to asynchronously test the content settings exception area dialog.
49 // Adds and removes a location content setting exception.
64 // The first item is now the exception (edit items are always last).
85 // Add an item to the location exception area to start the test.
  /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/deqp/framework/platform/android/
tcuAndroidJNI.cpp 63 static void logException (const std::exception& e)
87 catch (const std::exception& e)
107 catch (const std::exception& e)
  /external/doclava/src/com/google/doclava/
ThrowsTagInfo.java 45 public ThrowsTagInfo(String name, String kind, String text, ClassInfo exception,
48 mException = exception;
52 public ClassInfo exception() { method in class:ThrowsTagInfo
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3cyclicdfa.c 57 // we want the exception to be raised.
66 rec->state->exception->type = ANTLR3_NO_VIABLE_ALT_EXCEPTION;
67 rec->state->exception->message = cdfa->description;
68 rec->state->exception->decisionNum = cdfa->decisionNumber;
69 rec->state->exception->state = s;
76 * an exception upon error.
105 // If the predicate/rule raised an exception then we leave it
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
ExtCertPathValidatorException.java 1 package org.bouncycastle.jce.exception;
  /external/chromium_org/sync/android/java/src/org/chromium/sync/signin/
ChromeSigninController.java 128 } catch (IllegalStateException exception) {
130 + "sync notifications will not work", exception);
131 } catch (UnsupportedOperationException exception) {
133 exception);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptDebugListener.h 76 virtual SkipPauseRequest didPause(ScriptState*, const ScriptValue& callFrames, const ScriptValue& exception, const Vector<String>& hitBreakpoints) = 0;
  /external/chromium_org/tools/telemetry/telemetry/util/
exception_formatter.py 16 def PrintFormattedException(exception_class=None, exception=None, tb=None,
18 if not (bool(exception_class) == bool(exception) == bool(tb)):
20 'exception_class, exception, and tb')
23 exception_class, exception, tb = sys.exc_info()
35 exception_list = traceback.format_exception_only(exception_class, exception)
50 """Prints an Exception in a more useful format than the default.
54 - Add a debug flag to automatically start pdb upon exception.
68 # Format the exception.
  /external/clang/test/Analysis/inlining/
stl.cpp 20 void testException(std::exception e) {
  /external/deqp/framework/delibs/decpp/
deThread.cpp 27 #include <exception>
  /external/deqp/framework/platform/
tcuMain.cpp 59 catch (const std::exception& e)
  /external/droiddriver/src/com/google/android/droiddriver/instrumentation/
InstrumentationDriver.java 63 Throwable exception; field in class:InstrumentationDriver.FindRootViewRunnable
81 exception = e;
91 if (findRootViewRunnable.exception != null) {
92 throw new DroidDriverException(findRootViewRunnable.exception);
  /external/emma/core/java12/com/vladium/emma/
EMMAException.java 11 import com.vladium.util.exception.AbstractException;
23 * Constructs an exception with null message and null cause.
30 * Constructs an exception with given error message/code and null cause.
40 * Constructs an exception with given error message/code and null cause.
53 * Constructs an exception with null error message/code and given cause.
55 * @param cause the cause [nested exception] [can be null]
63 * Constructs an exception with given error message/code and given cause.
66 * @param cause the cause [nested exception] [can be null]
74 * Constructs an exception with given error message/code and given cause.
78 * @param cause the cause [nested exception] [can be null
    [all...]
EMMARuntimeException.java 11 import com.vladium.util.exception.AbstractRuntimeException;
23 * Constructs an exception with null message and null cause.
30 * Constructs an exception with given error message/code and null cause.
40 * Constructs an exception with given error message/code and null cause.
53 * Constructs an exception with null error message/code and given cause.
55 * @param cause the cause [nested exception] [can be null]
63 * Constructs an exception with given error message/code and given cause.
66 * @param cause the cause [nested exception] [can be null]
74 * Constructs an exception with given error message/code and given cause.
78 * @param cause the cause [nested exception] [can be null
    [all...]
  /external/libcxx/test/containers/sequences/forwardlist/forwardlist.modifiers/
push_front_exception_safety.pass.cpp 17 // Flag that makes the copy constructor for CMyClass throw an exception
47 // If requested, throw an exception _before_ setting fMagicValue to kFinishedConstructionMagicValue
49 throw std::exception();
  /external/libcxx/test/containers/sequences/list/
db_back.pass.cpp 21 #include <exception>
db_front.pass.cpp 21 #include <exception>
db_iterators_6.pass.cpp 21 #include <exception>
db_iterators_7.pass.cpp 21 #include <exception>
db_iterators_8.pass.cpp 21 #include <exception>
  /external/libcxx/test/containers/sequences/list/list.modifiers/
erase_iter_db1.pass.cpp 21 #include <exception>
erase_iter_iter_db4.pass.cpp 20 #include <exception>
push_back_exception_safety.pass.cpp 17 // Flag that makes the copy constructor for CMyClass throw an exception
47 // If requested, throw an exception _before_ setting fMagicValue to kFinishedConstructionMagicValue
49 throw std::exception();

Completed in 845 milliseconds

<<11121314151617181920>>