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

<<41424344454647484950>>

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UCaseProps.java 69 // read exceptions[]
72 exceptions=ICUBinary.getChars(bytes, count, 0);
149 * @param excWord (in) initial exceptions word
151 * @param excOffset (in) offset into exceptions[] after excWord=exceptions[excOffset++];
159 value=exceptions[excOffset];
162 value=exceptions[excOffset++];
163 value=(value<<16)|exceptions[excOffset];
173 value=exceptions[excOffset];
176 value=exceptions[excOffset++]
1301 private char exceptions[]; field in class:UCaseProps
    [all...]
SimpleFilteredSentenceBreakIterator.java 51 backwardsTrie == null) { // .. no backwards table loaded == no exceptions
200 * filter set to store all exceptions
216 ICUResourceBundle exceptions = rb.findWithFallback("exceptions"); local
217 ICUResourceBundle breaks = exceptions.findWithFallback("SentenceBreak");
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPSerializerRDF.java 238 * @throws IOException Forwarded writer exceptions.
307 * @throws IOException Forwarded writer exceptions
348 * @throws IOException Forwarded writer exceptions
485 * @throws IOException Forwards writer exceptions
585 * @throws IOException Forwards the writer exceptions.
623 * @throws IOException Forwards the writer exceptions.
652 * @throws IOException Forwards the writer exceptions.
741 * @throws IOException Forwards all writer exceptions.
790 * @throws IOException Forwarded writer exceptions
828 * @throws IOException Forwards all writer exceptions
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
RecognitionException.cs 46 * as flexible as possible, these exceptions are not created with strings,
50 * exceptions are built with the expected token type.
58 * ANTLR generates code that throws exceptions upon recognition error and
59 * also generates code to catch these exceptions in each rule. If you
64 * In general, the recognition exceptions can track where in a grammar a
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
RecognitionException.cs 47 * as flexible as possible, these exceptions are not created with strings,
51 * exceptions are built with the expected token type.
59 * ANTLR generates code that throws exceptions upon recognition error and
60 * also generates code to catch these exceptions in each rule. If you
65 * In general, the recognition exceptions can track where in a grammar a
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
app2.py 26 'Show tracebacks on Python exceptions.')
86 self.RunWithArgs, gracefully handling exceptions. If not, we
145 """Hook for subclasses to skip debugging on certain exceptions."""
153 # Don't break into the debugger for expected exceptions.
174 """Run this command, turning exceptions into print statements."""
batch.py 17 from apitools.base.py import exceptions namespace
273 raise exceptions.BatchError(
276 raise exceptions.BatchError(
413 raise exceptions.HttpError.FromResponse(response)
422 raise exceptions.BatchError(
457 exception = exceptions.HttpError.FromResponse(response)
batch_test.py 11 from apitools.base.py import exceptions namespace
134 exceptions.HttpError)
287 self.assertRaises(exceptions.BatchError,
403 exceptions.HttpError, batch_request._Execute, None)
422 exceptions.BatchError, batch_request._Execute, None)
485 self.assertIsInstance(exception, exceptions.HttpError)
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
SimpleFilteredSentenceBreakIterator.java 53 backwardsTrie == null) { // .. no backwards table loaded == no exceptions
202 * filter set to store all exceptions
218 ICUResourceBundle exceptions = rb.findWithFallback("exceptions"); local
219 ICUResourceBundle breaks = exceptions.findWithFallback("SentenceBreak");
  /external/mesa3d/src/mesa/main/
compiler.h 400 /* Hardware default: All exceptions masked, extended double precision,
404 /* All exceptions masked, single precision, round to nearest:
407 /* The fldcw instruction will cause any pending FP exceptions to be
409 * exceptions before exiting the block. Hence, asm code has free
427 /* Restore original FPU mode, and clear any exceptions that may have
  /frameworks/rs/
Android.mk 4 rs_base_CFLAGS := -Werror -Wall -Wextra -Wno-unused-parameter -Wno-unused-variable -fno-exceptions -std=c++11
59 LOCAL_CPPFLAGS += -fno-exceptions
186 LOCAL_CPPFLAGS += -fno-exceptions
251 LOCAL_CPPFLAGS += -fno-exceptions
301 LOCAL_CPPFLAGS += -fno-exceptions
  /libcore/ojluni/src/main/java/java/security/cert/
PKIXRevocationChecker.java 242 * Returns a list containing the exceptions that are ignored by the
250 * adding the ignored exceptions to the list.
252 * @return an unmodifiable list containing the ignored exceptions. The list
253 * is empty if no exceptions have been ignored.
305 * Exceptions that cause the network errors are ignored but can be
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
except.h 47 list is a catch-all handler, and that it will catch *all* exceptions
58 /* MUST_NOT_THROW regions prevent all exceptions from propagating. This
88 bookkeeping specific to exceptions. There must not be normal edges
105 will catch, or NULL if all exceptions are caught. */
176 Each region gets its own psuedos so that if there are nested exceptions
  /external/javassist/src/main/javassist/bytecode/
SignatureAttribute.java 230 ObjectType[] exceptions; field in class:SignatureAttribute.MethodSignature
236 exceptions = ex;
259 * Returns the types of the exceptions that may be thrown.
261 * @return a zero-length array if exceptions are never thrown or
264 public ObjectType[] getExceptionTypes() { return exceptions; }
277 if (exceptions.length > 0) {
279 Type.toString(sbuf, exceptions);
688 ArrayList exceptions = new ArrayList(); local
695 exceptions.add(t);
699 ObjectType[] ex = (ObjectType[])exceptions.toArray(new ObjectType[exceptions.size()])
    [all...]
  /external/chromium-trace/catapult/dependency_manager/dependency_manager/
base_config.py 13 from dependency_manager import exceptions namespace
101 raise exceptions.EmptyConfigError(file_path)
108 raise exceptions.EmptyConfigError(file_path)
125 raise exceptions.ReadWriteError(
155 raise exceptions.ConfigError(
329 raise exceptions.ReadWriteError(
341 raise exceptions.ReadWriteError(
  /libcore/ojluni/src/main/java/java/lang/reflect/
Proxy.java 555 List<Class<?>[]> exceptions = deduplicateAndGetExceptions(methods); local
558 Class<?>[][] exceptionsArray = exceptions.toArray(new Class<?>[exceptions.size()][]);
597 * computes the exceptions of each method; this is the intersection of the
598 * exceptions of equivalent methods.
600 * @param methods the methods to find exceptions for, ordered by name and
604 List<Class<?>[]> exceptions = new ArrayList<Class<?>[]>(methods.size()); local
611 exceptions.set(i - 1, intersectExceptions(exceptions.get(i - 1), exceptionTypes));
614 exceptions.add(exceptionTypes)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/rds2/
layer1.py 27 from boto.rds2 import exceptions namespace
67 "InvalidSubnet": exceptions.InvalidSubnet,
68 "DBParameterGroupQuotaExceeded": exceptions.DBParameterGroupQuotaExceeded,
69 "DBSubnetGroupAlreadyExists": exceptions.DBSubnetGroupAlreadyExists,
70 "DBSubnetGroupQuotaExceeded": exceptions.DBSubnetGroupQuotaExceeded,
71 "InstanceQuotaExceeded": exceptions.InstanceQuotaExceeded,
72 "InvalidRestore": exceptions.InvalidRestore,
73 "InvalidDBParameterGroupState": exceptions.InvalidDBParameterGroupState,
74 "AuthorizationQuotaExceeded": exceptions.AuthorizationQuotaExceeded,
75 "DBSecurityGroupAlreadyExists": exceptions.DBSecurityGroupAlreadyExists
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/logs/
layer1.py 27 from boto.logs import exceptions namespace
87 "LimitExceededException": exceptions.LimitExceededException,
88 "DataAlreadyAcceptedException": exceptions.DataAlreadyAcceptedException,
89 "ResourceInUseException": exceptions.ResourceInUseException,
90 "ServiceUnavailableException": exceptions.ServiceUnavailableException,
91 "InvalidParameterException": exceptions.InvalidParameterException,
92 "ResourceNotFoundException": exceptions.ResourceNotFoundException,
93 "ResourceAlreadyExistsException": exceptions.ResourceAlreadyExistsException,
94 "OperationAbortedException": exceptions.OperationAbortedException,
95 "InvalidSequenceTokenException": exceptions.InvalidSequenceTokenException
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/support/
layer1.py 28 from boto.support import exceptions namespace
98 "CaseCreationLimitExceeded": exceptions.CaseCreationLimitExceeded,
99 "AttachmentLimitExceeded": exceptions.AttachmentLimitExceeded,
100 "CaseIdNotFound": exceptions.CaseIdNotFound,
101 "DescribeAttachmentLimitExceeded": exceptions.DescribeAttachmentLimitExceeded,
102 "AttachmentSetIdNotFound": exceptions.AttachmentSetIdNotFound,
103 "InternalServerError": exceptions.InternalServerError,
104 "AttachmentSetExpired": exceptions.AttachmentSetExpired,
105 "AttachmentIdNotFound": exceptions.AttachmentIdNotFound,
106 "AttachmentSetSizeLimitExceeded": exceptions.AttachmentSetSizeLimitExceeded
    [all...]
  /external/llvm/docs/
ExceptionHandling.rst 41 <http://mentorembedded.github.com/cxx-abi/exceptions.pdf>`_.
52 list. When exceptions are unwinding, the runtime uses this list to identify
63 handling at the expense of slower execution when no exceptions are thrown. As
64 exceptions are, by their nature, intended for uncommon code paths, DWARF
70 LLVM supports handling exceptions produced by the Windows runtime, but it
93 exceptions, the exception handling ABI provides a mechanism for
117 From a C++ developer's perspective, exceptions are defined in terms of the
271 exceptions and throws a third.
308 function catches exceptions of type ``A``, and it's inlined into a function that
309 catches exceptions of type ``B``. The inliner will update the ``landingpad`
    [all...]
  /external/doclava/src/com/google/doclava/
PackageInfo.java 91 enums(), exceptions() };
116 enums(), exceptions() };
215 ClassInfo.makeLinkListHDF(data, base + ".exceptions", exceptions());
255 public ClassInfo[] exceptions() { method in class:PackageInfo
259 Converter.convertClasses(mPackage.exceptions())));
  /external/junit/src/org/junit/runners/
BlockJUnit4ClassRunner.java 206 * throw any exceptions thrown by either operation.
218 * always executed: exceptions thrown by previous steps are combined, if
219 * necessary, with exceptions from After methods into a
223 * or add additional behavior before and after, or modify thrown exceptions.
312 * After methods are always executed: exceptions thrown by previous steps
313 * are combined, if necessary, with exceptions from After methods into a
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
TraceClassVisitor.java 392 final String[] exceptions)
438 if (exceptions != null && exceptions.length > 0) {
440 for (int i = 0; i < exceptions.length; ++i) {
441 appendDescriptor(INTERNAL_NAME, exceptions[i]);
453 tcv.mv = cv.visitMethod(access, name, desc, signature, exceptions);
  /frameworks/base/docs/html/sdk/api_diff/21/changes/
android.media.MediaCodec.html 161 Change in exceptions thrown from no exceptions to <code>java.io.IOException</code>.<br>
171 Change in exceptions thrown from no exceptions to <code>java.io.IOException</code>.<br>
181 Change in exceptions thrown from no exceptions to <code>java.io.IOException</code>.<br>
  /libcore/luni/src/test/java/libcore/java/sql/
OldResultSetMetaDataTest.java 501 * Tests fail: always returns false. Exceptions and tests non Numeric fields
566 * Exceptions fail, failing statements commented out. Feature only
604 * Cannot know from blackbox test if readonly or writable. Exceptions fail,
626 * Tests fail: always returns false. Exceptions fail, Feature only partially
650 * Tests fail: always returns false. Exceptions and tests on non numeric
673 * Analogous to is Readonly. Exceptions and tests on non numeric fields

Completed in 926 milliseconds

<<41424344454647484950>>