HomeSort by relevance Sort by last modified time
    Searched refs:exception (Results 126 - 150 of 4445) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/ImageMagick/coders/
mask.c 49 #include "MagickCore/exception.h"
50 #include "MagickCore/exception-private.h"
86 % ExceptionInfo *exception)
92 % o exception: return any errors or warnings in this structure.
96 ExceptionInfo *exception)
112 assert(exception != (ExceptionInfo *) NULL);
113 assert(exception->signature == MagickCoreSignature);
117 image=ReadImage(read_info,exception);
124 status=GrayscaleImage(image,image->intensity,exception);
209 % Image *image,ExceptionInfo *exception)
    [all...]
  /art/test/412-new-array/src/
Main.java 24 public static void main(String[] args) throws Exception {
148 public static void testSmaliFilledNewArray() throws Exception {
208 public static void testSmaliVerifyError() throws Exception {
220 public static void testSmaliFillArrayData() throws Exception {
238 Throwable exception = null; local
242 exception = e.getCause();
243 assertTrue(exception instanceof IndexOutOfBoundsException);
245 assertNotNull(exception);
246 exception = null;
255 exception = e.getCause()
277 Throwable exception = null; local
316 Throwable exception = null; local
355 Throwable exception = null; local
394 Throwable exception = null; local
431 Throwable exception = null; local
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
SimpleOutputStream.java 25 private IOException exception = null; field in class:SimpleOutputStream
52 if (exception != null)
53 throw exception;
75 exception = e;
94 if (exception != null)
95 throw exception;
100 exception = e;
119 exception = e;
129 // writePending() saves the possible exception so we can
139 // If there is an earlier exception, the exceptio
    [all...]
  /ndk/tests/device/issue20176-__gnu_Unwind_Find_exidx/jni/
issue20176-__gnu_Unwind_Find_exidx.cpp 2 #include <exception>
25 throw std::exception();
26 } catch (const std::exception &e)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
XmlErrorHandler.java 74 * @param exception the parsing exception
78 public void error(SAXParseException exception) throws SAXException {
79 handleError(exception, exception.getLineNumber());
84 * @param exception the parsing exception
88 public void fatalError(SAXParseException exception) throws SAXException {
89 handleError(exception, exception.getLineNumber())
    [all...]
  /art/runtime/interpreter/mterp/arm/
op_throw.S 2 * Throw an exception object in the current thread.
7 GET_VREG r1, r2 @ r1<- vAA (exception object)
10 str r1, [rSELF, #THREAD_EXCEPTION_OFFSET] @ thread->exception<- obj
  /external/ImageMagick/MagickCore/
draw-private.h 30 const ssize_t y,PixelInfo *fill,ExceptionInfo *exception)
43 pattern->tile_offset.x,y+pattern->tile_offset.y,fill,exception);
48 const ssize_t y,PixelInfo *stroke,ExceptionInfo *exception)
61 pattern->tile_offset.x,y+pattern->tile_offset.y,stroke,exception);
  /external/antlr/antlr-3.4/runtime/Perl5/examples/zero-one/
t-error.pl 18 my $exception = $EVAL_ERROR;
19 print $exception;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/util/
Localizable.java 17 package org.apache.commons.math.exception.util;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
SingularMatrixException.java 20 import org.apache.commons.math.exception.util.LocalizedFormats;
34 * Construct an exception with a default message.
  /external/apache-http/src/org/apache/http/client/
HttpRequestRetryHandler.java 40 * recoverable exception during execution.
61 * @param exception the exception that occurred
69 boolean retryRequest(IOException exception, int executionCount, HttpContext context);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudhsm/
exceptions.py 23 from boto.exception import BotoServerError
  /external/clang/test/CodeGenCXX/
weak-external.cpp 37 class _LIBCPP_EXCEPTION_ABI exception class in namespace:std
40 _LIBCPP_INLINE_VISIBILITY exception() _NOEXCEPT {}
41 virtual ~exception() _NOEXCEPT;
46 : public exception
  /external/clang/test/SemaTemplate/
instantiate-try-catch.cpp 19 struct Exception {
21 Exception(const Exception&); // expected-note{{declared private here}}
23 void exception() { function in class:PR10232::Templated
25 } catch(Exception e) { // expected-error{{calling a private constructor of class 'PR10232::Templated<int>::Exception'}}
30 template class Templated<int>; // expected-note{{in instantiation of member function 'PR10232::Templated<int>::exception' requested here}}
  /external/emma/core/java12/com/vladium/util/exception/
IThrowableWrapper.java 9 package com.vladium.util.exception;
18 * Any exception that wraps around another exception and wishes to be fully
39 * Every exception hierarchy implementing this interface must ensure that
48 * Every exception hierarchy implementing this interface must ensure that
  /external/libcxx/test/std/language.support/support.exception/exception.terminate/set.terminate/
get_terminate.pass.cpp 12 #include <exception>
  /external/libcxx/test/std/language.support/support.exception/exception.terminate/terminate.handler/
terminate_handler.pass.cpp 12 #include <exception>
  /external/libcxxabi/src/
cxa_handlers.hpp 16 #include <exception>
  /external/libcxxabi/test/
catch_in_noexcept.pass.cpp 10 #include <exception>
  /external/vogar/src/vogar/
Log.java 25 void info(String s, Throwable exception);
  /ndk/sources/cxx-stl/gabi++/tests/
unexpected_02.cpp 3 #include <exception>
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.exception/exception.terminate/set.terminate/
get_terminate.pass.cpp 12 #include <exception>
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_handlers.hpp 16 #include <exception>
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
catch_in_noexcept.pass.cpp 10 #include <exception>
  /ndk/tests/device/test-gnustl-1/jni/
hello.cpp 25 std::printf("KO: Exception was not thrown!\n");
28 catch (std::exception &ex)

Completed in 1976 milliseconds

1 2 3 4 56 7 8 91011>>