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

<<21222324252627282930>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
user.py 19 from . import exception namespace
38 raise exception.InvalidUser("{0} is not a valid user".format(name))
83 except exception.MLSDisabled:
  /external/ImageMagick/MagickCore/
image.c 67 #include "MagickCore/exception.h"
68 #include "MagickCore/exception-private.h"
144 % Image *AcquireImage(const ImageInfo *image_info,ExceptionInfo *exception)
152 % o exception: return any errors or warnings in this structure.
156 ExceptionInfo *exception)
200 exception);
202 &image->background_color,exception);
204 exception);
206 &image->transparent_color,exception);
292 (void) SyncImageSettings(image_info,image,exception);
644 *exception; local
1337 *exception; local
2715 image_info->filename,(int) image_info->scene,component,exception); local
    [all...]
attribute.h 22 #include "MagickCore/exception.h"
42 GetImageBoundingBox(const Image *,ExceptionInfo *exception);
registry.c 45 #include "MagickCore/exception.h"
46 #include "MagickCore/exception-private.h"
99 % const char *option,ExceptionInfo *exception)
107 % o exception: the exception.
111 const char *option,ExceptionInfo *exception)
129 return(SetImageRegistry(type,key,value,exception));
181 % ExceptionInfo *exception)
189 % o exception: the exception
    [all...]
  /art/runtime/native/
java_lang_VMClassLoader.cc 54 mirror::Class* exception = self->GetException()->GetClass(); local
55 if (exception == eiie_class || exception == iae_class || exception == ncdfe_class) {
  /cts/tools/dasm/src/dasm/
DasmCatchBuilder.java 53 * @param exception
54 * exception type
62 UnprocessedCatch(String exception, String from, String to,
66 add(exception, branch);
70 * Adds new exception type and branch label to current "from-to" block
74 * java/lang/Exception from Label1 to Label2 using Label3 .catch
77 * @param exception
78 * exception type
82 void add(String exception, String branch) {
84 if (exception.compareToIgnoreCase("all") == 0
    [all...]
  /external/ImageMagick/Magick++/demo/
flip.cpp 53 catch( exception &error_ )
55 cout << "Caught exception: " << error_.what() << endl;
  /external/ImageMagick/Magick++/tests/
coalesceImages.cpp 43 catch( Exception &error_ )
45 cout << "Caught exception: " << error_.what() << endl;
48 catch( exception &error_ )
50 cout << "Caught exception: " << error_.what() << endl;
  /external/ImageMagick/coders/
clipboard.c 56 #include "MagickCore/exception.h"
57 #include "MagickCore/exception-private.h"
98 % ExceptionInfo exception)
104 % o exception: return any errors or warnings in this structure.
109 ExceptionInfo *exception)
131 assert(exception != (ExceptionInfo *) NULL);
132 assert(exception->signature == MagickCoreSignature);
133 image=AcquireImage(image_info,exception);
175 status=SetImageExtent(image,image->columns,image->rows,exception);
222 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
    [all...]
dib.c 55 #include "MagickCore/exception.h"
56 #include "MagickCore/exception-private.h"
440 % o exception: return any errors or warnings in this structure.
443 static Image *ReadDIBImage(const ImageInfo *image_info,ExceptionInfo *exception)
493 assert(exception != (ExceptionInfo *) NULL);
494 assert(exception->signature == MagickCoreSignature);
495 image=AcquireImage(image_info,exception);
496 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
604 status=SetImageExtent(image,image->columns,image->rows,exception);
619 if (AcquireImageColormap(image,image->colors,exception) == MagickFalse
    [all...]
dps.c 48 #include "MagickCore/exception.h"
49 #include "MagickCore/exception-private.h"
88 % Image *ReadDPSImage(const ImageInfo *image_info,ExceptionInfo *exception)
94 % o exception: return any errors or warnings in this structure.
97 static Image *ReadDPSImage(const ImageInfo *image_info,ExceptionInfo *exception)
164 assert(exception != (ExceptionInfo *) NULL);
165 assert(exception->signature == MagickCoreSignature);
170 Set our forgiving exception handler.
176 image=AcquireImage(image_info,exception);
177 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
    [all...]
uil.c 52 #include "MagickCore/exception.h"
53 #include "MagickCore/exception-private.h"
152 % Image *image,ExceptionInfo *exception)
160 % o exception: return any errors or warnings in this structure.
164 ExceptionInfo *exception)
215 assert(exception != (ExceptionInfo *) NULL);
216 assert(exception->signature == MagickCoreSignature);
217 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
220 (void) TransformImageColorspace(image,sRGBColorspace,exception);
249 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
    [all...]
  /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/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/languages/
en.stg 38 CANNOT_WRITE_FILE(arg,exception,stackTrace) ::= <<
39 cannot write file <arg>: <exception>
42 CANNOT_CLOSE_FILE(arg,exception,stackTrace) ::= "cannot close file <arg>: <exception>"
44 ERROR_READING_TOKENS_FILE(arg,exception,stackTrace) ::= <<
45 problem reading token vocabulary file <arg>: <exception>
48 DIR_NOT_FOUND(arg,exception,stackTrace) ::= "directory not found: <arg>"
49 OUTPUT_DIR_IS_FILE(arg,exception,stackTrace) ::= "output directory is a file: <arg>"
50 CANNOT_OPEN_FILE(arg,exception,stackTrace) ::= "cannot find or open file: <arg><if(exception)>; reason: <exception><endif>
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
MathException.java 24 import org.apache.commons.math.exception.MathThrowable;
25 import org.apache.commons.math.exception.util.DummyLocalizable;
26 import org.apache.commons.math.exception.util.Localizable;
27 import org.apache.commons.math.exception.util.LocalizedFormats;
39 public class MathException extends Exception implements MathThrowable {
93 * @param rootCause the exception or error that caused this exception
106 * @param rootCause the exception or error that caused this exception
122 * @param rootCause the exception or error that caused this exceptio
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
ComplexUtils.java 21 import org.apache.commons.math.exception.util.LocalizedFormats;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
AbstractDistribution.java 23 import org.apache.commons.math.exception.util.LocalizedFormats;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/util/
ArgUtils.java 17 package org.apache.commons.math.exception.util;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
AbstractUnivariateStatistic.java 20 import org.apache.commons.math.exception.DimensionMismatchException;
21 import org.apache.commons.math.exception.NotPositiveException;
22 import org.apache.commons.math.exception.NullArgumentException;
23 import org.apache.commons.math.exception.util.LocalizedFormats;
  /external/autotest/client/cros/cellular/
environment.py 21 class Error(Exception):
41 def __exit__(self, exception, value, traceback):
81 exception=Error('modem not disconnected from base station'))
98 def __exit__(self, exception, value, traceback):
99 return self._nested.__exit__(exception, value, traceback)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
ExtCertPathValidatorException.java 1 package org.bouncycastle.jce.exception;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ses/
exceptions.py 4 from boto.exception import BotoServerError
12 BotoServerError exception.
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sqs/
jsonmessage.py 24 from boto.exception import SQSDecodeError
  /external/clang/test/Analysis/inlining/
stl.cpp 20 void testException(std::exception e) {
  /external/deqp/framework/delibs/decpp/
deThread.cpp 27 #include <exception>

Completed in 1905 milliseconds

<<21222324252627282930>>