HomeSort by relevance Sort by last modified time
    Searched full:exceptions (Results 526 - 550 of 8688) sorted by null

<<21222324252627282930>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_throw.py 7 g.throw("foo"[, V[, T]]) will warn about string exceptions."""
31 self.cannot_convert(node, "Python 3 does not support string exceptions")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_throw.py 7 g.throw("foo"[, V[, T]]) will warn about string exceptions."""
31 self.cannot_convert(node, "Python 3 does not support string exceptions")
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/
ParallelSensorOperation.java 116 ArrayList<Throwable> exceptions = new ArrayList<>(); local
126 exceptions.add(e.getCause());
140 String summary = getSummaryMessage(exceptions, timeoutIndices);
144 if (!exceptions.isEmpty() || !timeoutIndices.isEmpty()) {
177 private String getSummaryMessage(List<Throwable> exceptions, List<Integer> timeoutIndices) {
179 for (Throwable exception : exceptions) {
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ScriptData.java 71 // TODO: Exceptions could be generated algorithmically
95 private ScriptData.TagException exceptions[] = { field in class:ScriptData
103 // TODO: binary search the exceptions list?
106 for(int i = 0; i < exceptions.length; i += 1) {
107 if (exceptions[i].getICUTag().equals(icu)) {
108 return exceptions[i].getOTTag();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
exception 45 * @defgroup exceptions Exceptions
53 * @brief Base class for all library exceptions.
55 * This is the base class for all exceptions thrown by the standard
119 // @} group exceptions
131 * @ingroup exceptions
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
exception 45 * @defgroup exceptions Exceptions
53 * @brief Base class for all library exceptions.
55 * This is the base class for all exceptions thrown by the standard
119 // @} group exceptions
131 * @ingroup exceptions
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
exception 45 * @defgroup exceptions Exceptions
53 * @brief Base class for all library exceptions.
55 * This is the base class for all exceptions thrown by the standard
119 // @} group exceptions
131 * @ingroup exceptions
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/
exception 45 * @defgroup exceptions Exceptions
53 * @brief Base class for all library exceptions.
55 * This is the base class for all exceptions thrown by the standard
129 // @} group exceptions
141 * @ingroup exceptions
  /frameworks/base/docs/html/ndk/guides/
cpp-support.jd 22 <li>C++ exceptions support</li>
54 <td>C++ Exceptions and RTTI</td>
60 <td>C++ Exceptions and RTTI</td>
66 <td> C++ Exceptions and RTTI; Standard Library</td>
72 <td> C++ Exceptions and RTTI; Standard Library</td>
78 <td> C++ Exceptions and RTTI; Standard Library</td>
84 <td> C++ Exceptions and RTTI; Standard Library</td>
90 <td> C++ Exceptions and RTTI; Standard Library</td>
96 <td> C++ Exceptions and RTTI; Standard Library</td>
178 need to explicitly turn on exceptions or RTTI support. For information on how to do this, se
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/24/changes/
java.util.logging.LogManager.html 90 Change in exceptions thrown from no exceptions to <code>java.lang.SecurityException</code>.<br>
100 Change in exceptions thrown from no exceptions to <code>java.lang.SecurityException</code>.<br>
110 Change in exceptions thrown from no exceptions to <code>java.lang.SecurityException</code>.<br>
120 Change in exceptions thrown from no exceptions to <code>java.lang.SecurityException</code>.<br>
130 Change in exceptions thrown from <code>java.io.IOException</code> to (<code>java.io.IOException, java.lang.SecurityException</code>).<br>
140 Change in exceptions thrown from <code>java.io.IOException</code> to (<code>java.io.IOException, java.lang.SecurityExce (…)
    [all...]
java.lang.Class.html 105 Change in exceptions thrown from <code>java.lang.NoSuchMethodException</code> to (<code>java.lang.NoSuchMethodException, java.lang.SecurityException</code>).<br>
115 Change in exceptions thrown from no exceptions to <code>java.lang.SecurityException</code>.<br>
125 Change in exceptions thrown from <code>java.lang.NoSuchMethodException</code> to (<code>java.lang.NoSuchMethodException, java.lang.SecurityException</code>).<br>
135 Change in exceptions thrown from no exceptions to <code>java.lang.SecurityException</code>.<br>
145 Change in exceptions thrown from <code>java.lang.NoSuchMethodException</code> to (<code>java.lang.NoSuchMethodException, java.lang.SecurityException</code>).<br>
155 Change in exceptions thrown from no exceptions to <code>java.lang.SecurityException</code>.<br>
165 Change in exceptions thrown from no exceptions to <code>java.lang.SecurityException</code>.<br
    [all...]
java.nio.charset.CoderResult.html 90 Change in exceptions thrown from <code>java.lang.UnsupportedOperationException</code> to no exceptions.<br>
100 Change in exceptions thrown from <code>java.lang.IllegalArgumentException</code> to no exceptions.<br>
110 Change in exceptions thrown from (<code>java.nio.BufferOverflowException, java.nio.BufferUnderflowException, java.nio.charset.CharacterCodingException, java.nio.charset.MalformedInputException, java.nio.charset.UnmappableCharacterException</code>) to <code>java.nio.charset.CharacterCodingException</code>.<br>
120 Change in exceptions thrown from <code>java.lang.IllegalArgumentException</code> to no exceptions.<br>
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
MethodNode.java 77 public List exceptions; field in class:MethodNode
158 * @param exceptions the internal names of the method's exception classes
167 final String[] exceptions)
174 this.exceptions = new ArrayList(exceptions == null
176 : exceptions.length);
182 if (exceptions != null) {
183 this.exceptions.addAll(Arrays.asList(exceptions));
404 String[] exceptions = new String[this.exceptions.size()];
    [all...]
  /external/autotest/client/cros/cellular/pseudomodem/
client.py 9 import dbus.exceptions namespace
86 except dbus.exceptions.DBusException as e:
125 except dbus.exceptions.DBusException as e:
162 except dbus.exceptions.DBusException as e:
184 except dbus.exceptions.DBusException as e:
207 except dbus.exceptions.DBusException as e:
237 except dbus.exceptions.DBusException as e:
  /external/chromium-trace/catapult/telemetry/docs/pydoc/
telemetry.timeline.model.html 42 <dt><font face="helvetica, arial"><a href="exceptions.html#Exception">exceptions.Exception</a>(<a href="exceptions.html#BaseException">exceptions.BaseException</a>)
60 <font color="#000000" face="helvetica, arial"><a name="MarkerMismatchError">class <strong>MarkerMismatchError</strong></a>(<a href="exceptions.html#Exception">exceptions.Exception</a>)</font></td></tr>
65 <dd><a href="exceptions.html#Exception">exceptions.Exception</a></dd>
66 <dd><a href="exceptions.html#BaseException">exceptions.BaseException</a></dd
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/Paste.egg-info/
SOURCES.txt 56 docs/modules/exceptions.txt
146 paste/exceptions/__init__.py
147 paste/exceptions/collector.py
148 paste/exceptions/errormiddleware.py
149 paste/exceptions/formatter.py
150 paste/exceptions/reporter.py
151 paste/exceptions/serial_number_generator.py
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
TraceSignatureVisitor.java 58 private StringBuffer exceptions; field in class:TraceSignatureVisitor
146 if (exceptions == null) {
147 exceptions = new StringBuffer();
149 exceptions.append(", ");
152 return new TraceSignatureVisitor(exceptions);
274 return exceptions == null ? null : exceptions.toString();
  /external/skia/bench/
check_bench_regressions.py 146 # Tuple of dictionaries recording exceptions that are slower and faster,
149 exceptions = ({}, {})
169 exceptions[SLOWER].setdefault(off_ratio, []).append(exception)
171 exceptions[FASTER].setdefault(off_ratio, []).append(exception)
174 if exceptions[i]:
175 ratios = exceptions[i].keys()
179 li.extend(exceptions[i][ratio])
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
MethodTest.java 26 Class[] exceptions = method.getExceptionTypes(); local
27 assertEquals(1, exceptions.length);
28 assertEquals(IndexOutOfBoundsException.class, exceptions[0]);
30 exceptions[0] = NullPointerException.class;
31 exceptions = method.getExceptionTypes();
32 assertEquals(1, exceptions.length);
33 assertEquals(IndexOutOfBoundsException.class, exceptions[0]);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
CursorBackedSuggestionCursor.java 97 // all operations on cross-process cursors can throw random exceptions
118 // all operations on cross-process cursors can throw random exceptions
133 // all operations on cross-process cursors can throw random exceptions
145 // all operations on cross-process cursors can throw random exceptions
158 // all operations on cross-process cursors can throw random exceptions
251 // all operations on cross-process cursors can throw random exceptions
271 // all operations on cross-process cursors can throw random exceptions
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
basic_ios.h 156 // exceptions().
163 if (this->exceptions() & __state)
209 * @brief Throwing exceptions on errors.
210 * @return The current exceptions mask.
213 * of exceptions(iostate) for the meaning of the return value.
216 exceptions() const function in class:basic_ios
220 * @brief Throwing exceptions on errors.
221 * @param __except The new exceptions mask.
224 * exceptions mask for each stream; if a bit in the mask becomes set
228 * If the error flag is already set when the exceptions mask i
251 exceptions(iostate __except) function in class:basic_ios
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
basic_ios.h 156 // exceptions().
163 if (this->exceptions() & __state)
209 * @brief Throwing exceptions on errors.
210 * @return The current exceptions mask.
213 * of exceptions(iostate) for the meaning of the return value.
216 exceptions() const function in class:basic_ios
220 * @brief Throwing exceptions on errors.
221 * @param __except The new exceptions mask.
224 * exceptions mask for each stream; if a bit in the mask becomes set
228 * If the error flag is already set when the exceptions mask i
251 exceptions(iostate __except) function in class:basic_ios
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
basic_ios.h 156 // exceptions().
163 if (this->exceptions() & __state)
209 * @brief Throwing exceptions on errors.
210 * @return The current exceptions mask.
213 * of exceptions(iostate) for the meaning of the return value.
216 exceptions() const function in class:basic_ios
220 * @brief Throwing exceptions on errors.
221 * @param __except The new exceptions mask.
224 * exceptions mask for each stream; if a bit in the mask becomes set
228 * If the error flag is already set when the exceptions mask i
251 exceptions(iostate __except) function in class:basic_ios
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
basic_ios.h 156 // exceptions().
163 if (this->exceptions() & __state)
209 * @brief Throwing exceptions on errors.
210 * @return The current exceptions mask.
213 * of exceptions(iostate) for the meaning of the return value.
216 exceptions() const function in class:basic_ios
220 * @brief Throwing exceptions on errors.
221 * @param __except The new exceptions mask.
224 * exceptions mask for each stream; if a bit in the mask becomes set
228 * If the error flag is already set when the exceptions mask i
251 exceptions(iostate __except) function in class:basic_ios
    [all...]
  /external/testng/src/test/java/test/mannotation/
MAnnotationSampleTest.java 79 Class[] exceptions = test1.getExpectedExceptions(); local
80 Assert.assertEquals(exceptions.length, 1);
81 Assert.assertEquals(exceptions[0], NullPointerException.class);
103 Class[] exceptions = test1.getExpectedExceptions(); local
104 Assert.assertEquals(exceptions.length, 1);
105 Assert.assertEquals(exceptions[0], NumberFormatException.class);
195 IExpectedExceptionsAnnotation exceptions= local
198 Assert.assertNotNull(exceptions);
199 Assert.assertEquals(exceptions.getValue(), new Class[] { MTest1.class, MTest2.class });

Completed in 1271 milliseconds

<<21222324252627282930>>