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

<<61626364656667686970>>

  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.common_3.6.200.v20130402-1505.jar 
org.eclipse.ecf_3.2.0.v20130604-1622.jar 
  /external/chromium_org/gpu/config/
gpu_control_list.cc 794 ScopedGpuControlListEntry exception(GetEntryFromValue(
796 if (exception.get() == NULL) {
800 // Exception should inherit vendor_id from parent, otherwise if only
801 // device_ids are specified in Exception, the info will be incomplete.
802 if (exception->vendor_id_ == 0 && entry->vendor_id_ != 0)
803 exception->vendor_id_ = entry->vendor_id_;
804 entry->AddException(exception);
    [all...]
  /external/chromium_org/third_party/icu/source/tools/tzcode/
tz2icu.cpp 626 } catch (const exception& e) {
677 } catch (const exception& e) {
690 } catch (const exception& e) {
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-scopes.js 38 var exception; variable
53 exception = e;
66 exception = null;
74 assertNull(exception, test_name + " / " + exception);
864 throw 'Exception';
875 CheckScopeContent({e:'Exception'}, 0, exec_state);
884 throw 'Exception';
899 CheckScopeContent({e:'Exception'}, 1, exec_state);
911 throw 'Exception';
    [all...]
  /external/chromium_org/v8/test/webkit/resources/
JSON-stringify.js 122 return jsonObject.stringify({toJSON: Date.prototype.toJSON, toISOString: function(){ throw "An exception"; }});
417 try { jsonObject.stringify(cyclicObject); } catch(e) { cycleTracker += " -> exception" }
420 result[result.length - 1].expected = "(string):[object Object]preSelf1,preSelf2,self(string):[object Object] -> exception"
432 try { jsonObject.stringify(cyclicArray); } catch(e) { cycleTracker += " -> exception" }
435 result[result.length - 1].expected = "0(number):[object Object]first, -> exception";
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_socket.py 155 except Exception, strerror:
271 "Error raising socket exception.")
273 "Error raising socket exception.")
275 "Error raising socket exception.")
288 self.assertIn('not complex', str(cm.exception))
291 self.assertIn('not NoneType', str(cm.exception))
297 self.assertIn('not complex', str(cm.exception))
300 self.assertIn('not NoneType', str(cm.exception))
303 self.assertIn('an integer is required', str(cm.exception))
306 self.assertIn('an integer is required', str(cm.exception))
    [all...]
test_subprocess.py 61 class PopenTestException(Exception):
70 raise PopenTestException("Forced Exception for Test")
92 self.assertEqual(c.exception.returncode, 47)
105 self.assertEqual(c.exception.returncode, 5)
121 self.assertIn('stdout', c.exception.args[0])
629 if c.exception.errno not in (errno.ENOENT, errno.EACCES):
630 raise c.exception
686 # during an exception. Code inspection has confirmed that.
758 self.assertIn("os.chdir", c.exception.child_traceback)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_socket.py 155 except Exception, strerror:
271 "Error raising socket exception.")
273 "Error raising socket exception.")
275 "Error raising socket exception.")
288 self.assertIn('not complex', str(cm.exception))
291 self.assertIn('not NoneType', str(cm.exception))
297 self.assertIn('not complex', str(cm.exception))
300 self.assertIn('not NoneType', str(cm.exception))
303 self.assertIn('an integer is required', str(cm.exception))
306 self.assertIn('an integer is required', str(cm.exception))
    [all...]
test_subprocess.py 61 class PopenTestException(Exception):
70 raise PopenTestException("Forced Exception for Test")
92 self.assertEqual(c.exception.returncode, 47)
105 self.assertEqual(c.exception.returncode, 5)
121 self.assertIn('stdout', c.exception.args[0])
629 if c.exception.errno not in (errno.ENOENT, errno.EACCES):
630 raise c.exception
686 # during an exception. Code inspection has confirmed that.
758 self.assertIn("os.chdir", c.exception.child_traceback)
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 66 protected void setUp() throws Exception {
106 protected void tearDown() throws Exception {
137 public void brokenTestGeneral() throws Exception {
761 public void testOutgoingCallFailImmediately() throws Exception {
    [all...]
  /prebuilts/tools/common/m2/repository/commons-lang/commons-lang/2.4/
commons-lang-2.4.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf_3.1.0.v20100529-0735.jar 
org.eclipse.equinox.preferences_3.3.0.v20100503.jar 
org.eclipse.core.filesystem_1.3.1.R36x_v20100727-0745.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.ecf_3.2.0.v20130604-1622.jar 
  /prebuilts/tools/common/m2/repository/jdom/jdom/1.0/
jdom-1.0.jar 
  /external/zlib/src/contrib/delphi/
ZLib.pas 62 stream will raise an exception. Using Seek to move the stream pointer
63 will raise an exception.
106 the stream will raise an exception.
158 EZlibError = class(Exception);
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadPoolExecutorSubclassTest.java 28 Exception exception; field in class:ThreadPoolExecutorSubclassTest.CustomTask
36 public V call() throws Exception { r.run(); return res; }};
67 Exception e = null;
71 catch (Exception ex) {
77 exception = e;
89 if (exception != null)
90 throw new ExecutionException(exception);
106 if (exception != null)
107 throw new ExecutionException(exception);
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-core-3.2.1.jar 
  /art/compiler/driver/
compiler_driver.cc 722 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
724 // Do this here so that exception classes appear to have been specified image classes.
1483 mirror::Throwable* exception = self->GetException(nullptr); local
1628 mirror::Throwable* exception = soa.Self()->GetException(nullptr); local
1842 mirror::Throwable* exception = soa.Self()->GetException(&throw_location); local
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/extensions/searchvox/
util.js 144 } catch (exception) {
  /external/chromium_org/content/test/data/media/
webrtc_test_utilities.js 37 // Immediately fails the test on the C++ side and throw an exception to
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
base_unittest.py 91 port = self.make_port(executive=executive_mock.MockExecutive2(exception=OSError))
104 port = self.make_port(executive=executive_mock.MockExecutive2(exception=ScriptError))
  /external/chromium_org/third_party/devscripts/
licensecheck.pl.vanilla 425 $extrainfo = " (with Qt exception)$extrainfo"

Completed in 1131 milliseconds

<<61626364656667686970>>