| /external/v8/test/mjsunit/es6/ |
| typedarray-reduce.js | 184 var exception = false; 188 exception = true; 194 assertTrue(exception); 196 exception = false; 200 exception = true; 206 assertTrue(exception); 208 exception = false; 212 exception = true; 218 assertTrue(exception); 220 exception = false [all...] |
| /external/v8/test/mjsunit/harmony/ |
| debug-async-break-on-stack.js | 38 var exception = null; variable 48 exception = e; 76 assertEqualsAsync(null, async () => exception);
|
| debug-async-break.js | 38 var exception = null; variable 47 exception = e; 74 assertEqualsAsync(null, async () => exception);
|
| /external/v8/test/mjsunit/regress/ |
| regress-1327557.js | 31 var exception = false; variable 35 exception = true; 38 assertTrue(exception);
|
| regress-crbug-100859.js | 32 var exception = false; variable 37 exception = true; 39 assertTrue(exception);
|
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
| AdnRecordCache.java | 124 Exception e = new RuntimeException(errString); 125 AsyncResult.forMessage(response).exception = e; 138 * response.exception hold the exception in error 176 * response.exception hold the exception in error 247 * Responds with exception (in response) if efid is not a known ADN-like 295 AsyncResult.forMessage(response).exception 320 AsyncResult.forMessage(waiter, ar.result, ar.exception); 343 if (ar.exception == null) [all...] |
| UiccCardApplication.java | 227 if (ar.exception != null) { 228 if (DBG) log("Error in querying facility lock:" + ar.exception); 254 if (ar.exception == null) { 260 loge("Error change facility fdn with exception " + ar.exception); 264 AsyncResult.forMessage(response).exception = ar.exception; 282 if(ar.exception != null) { 283 if (DBG) log("Error in querying facility lock:" + ar.exception); 334 if (ar.exception == null) [all...] |
| /prebuilts/misc/common/android-support-test/rules/ |
| rules-0.5-release-no-dep.jar | |
| /external/ImageMagick/coders/ |
| json.c | 52 #include "MagickCore/exception.h" 53 #include "MagickCore/exception-private.h" 165 % Image *image,ExceptionInfo *exception) 173 % o exception: return any errors or warnings in this structure. 275 const StatisticType type,ExceptionInfo *exception) 321 p=GetVirtualPixels(image,0,y,image->columns,1,exception); 508 *exception; 530 exception=AcquireExceptionInfo(); 541 p=GetVirtualPixels(image,0,y,image->columns,1,exception); 668 ExceptionInfo *exception) 503 *exception; local [all...] |
| xwd.c | 52 #include "MagickCore/exception.h" 53 #include "MagickCore/exception-private.h" 144 % Image *ReadXWDImage(const ImageInfo *image_info,ExceptionInfo *exception) 150 % o exception: return any errors or warnings in this structure. 154 static Image *ReadXWDImage(const ImageInfo *image_info,ExceptionInfo *exception) 216 assert(exception != (ExceptionInfo *) NULL); 217 assert(exception->signature == MagickCoreSignature); 218 image=AcquireImage(image_info,exception); 219 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception); 269 (void) SetImageProperty(image,"comment",comment,exception); [all...] |
| fpx.c | 55 #include "MagickCore/exception.h" 56 #include "MagickCore/exception-private.h" 109 % Image *ReadFPXImage(const ImageInfo *image_info,ExceptionInfo *exception) 115 % o exception: return any errors or warnings in this structure. 118 static Image *ReadFPXImage(const ImageInfo *image_info,ExceptionInfo *exception) 192 assert(exception != (ExceptionInfo *) NULL); 193 assert(exception->signature == MagickCoreSignature); 194 image=AcquireImage(image_info,exception); 195 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception); 238 ThrowFileException(exception,FileOpenError,"UnableToOpenFile" [all...] |
| pcx.c | 53 #include "MagickCore/exception.h" 54 #include "MagickCore/exception-private.h" 200 % Image *ReadPCXImage(const ImageInfo *image_info,ExceptionInfo *exception) 206 % o exception: return any errors or warnings in this structure. 209 static Image *ReadPCXImage(const ImageInfo *image_info,ExceptionInfo *exception) 274 assert(exception != (ExceptionInfo *) NULL); 275 assert(exception->signature == MagickCoreSignature); 276 image=AcquireImage(image_info,exception); 277 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception); 369 if (AcquireImageColormap(image,image->colors,exception) == MagickFalse [all...] |
| tga.c | 54 #include "MagickCore/exception.h" 55 #include "MagickCore/exception-private.h" 139 % Image *ReadTGAImage(const ImageInfo *image_info,ExceptionInfo *exception) 145 % o exception: return any errors or warnings in this structure. 149 ExceptionInfo *exception) 201 assert(exception != (ExceptionInfo *) NULL); 202 assert(exception->signature == MagickCoreSignature); 203 image=AcquireImage(image_info,exception); 204 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception); 281 if (AcquireImageColormap(image,image->colors,exception) == MagickFalse [all...] |
| /external/antlr/antlr-3.4/runtime/C/src/ |
| antlr3baserecognizer.c | 214 // Free any exception space we have left around 216 thisE = recognizer->state->exception; 246 * Creates a new Mismatched Token Exception and inserts in the recognizer 247 * exception stack. 256 /* Create a basic recognition exception structure 260 /* Now update it to indicate this is a Mismatched token exception 262 recognizer->state->exception->name = ANTLR3_MISMATCHED_EX_NAME; 263 recognizer->state->exception->type = ANTLR3_MISMATCHED_TOKEN_EXCEPTION; 323 /* Create a basic exception structure 397 ex->nextException = recognizer->state->exception; /* So we don't leak the memory * [all...] |
| /external/opencv3/modules/java/src/ |
| imgproc.cpp | 22 /// throw java exception 23 static void throwJavaException(JNIEnv *env, const std::exception *e, const char *method) { 24 std::string what = "unknown exception"; 28 std::string exception_type = "std::exception"; 30 if(dynamic_cast<const cv::Exception*>(e)) { 31 exception_type = "cv::Exception"; 38 if(!je) je = env->FindClass("java/lang/Exception"); 69 } catch(const std::exception &e) { 92 } catch(const std::exception &e) { 119 } catch(const std::exception &e) [all...] |
| /external/ImageMagick/www/api/ |
| fx.php | 65 const double attenuate,ExceptionInfo *exception) 91 <dt>exception</dt> 104 ExceptionInfo *exception) 122 <dt>exception</dt> 135 const double sigma,ExceptionInfo *exception) 157 <dt>exception</dt> 170 const PixelInfo *colorize,ExceptionInfo *exception) 192 <dt>exception</dt> 205 const KernelInfo *color_matrix,ExceptionInfo *exception) 223 <dt>exception</dt [all...] |
| color.php | 65 ExceptionInfo *exception) 79 <dt>exception</dt> 92 size_t *number_colors,ExceptionInfo *exception) 110 <dt>exception</dt> 123 ExceptionInfo *exception) 141 <dt>exception</dt> 153 MagickBooleanType ListColorInfo(FILE *file,ExceptionInfo *exception) 161 <dt>exception</dt> 175 ExceptionInfo *exception) 192 <dt>exception</dt [all...] |
| module.php | 100 ModuleInfo *GetModuleInfo(const char *tag,ExceptionInfo *exception) 114 <dt>exception</dt> 127 size_t *number_modules,ExceptionInfo *exception) 145 <dt>exception</dt> 158 size_t *number_modules,ExceptionInfo *exception) 180 <dt>exception</dt> 193 MagickModuleType module_type,char *path,ExceptionInfo *exception) 215 <dt>exception</dt> 227 IsModuleTreeInstantiated(Exceptioninfo *exception) 232 <dt>exception</dt [all...] |
| display.php | 59 <p>DisplayImages() displays an image sequence to any X window screen. It returns a value other than 0 if successful. Check the exception member of image to determine the reason for any failure.</p> 65 Image *images,ExceptionInfo *exception) 83 <dt>exception</dt> 96 const char *window,const char *filename,ExceptionInfo *exception) 118 <dt>exception</dt> 131 XResourceInfo *resource_info,Image *image,ExceptionInfo *exception) 153 <dt>exception</dt>
|
| /external/ImageMagick/MagickCore/ |
| composite.c | 103 % const ssize_t y_offset,ExceptionInfo *exception) 131 % o exception: return any errors or warnings in this structure. 291 const ssize_t x_offset,const ssize_t y_offset,ExceptionInfo *exception) 321 source_view=AcquireVirtualCacheView(source_image,exception); 322 image_view=AcquireAuthenticCacheView(image,exception); 361 source_image->columns,1,exception); 371 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception); 418 source,exception); 496 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse) 520 const ssize_t y_offset,ExceptionInfo *exception) 925 (double) y_offset+y,&pixel,exception); local [all...] |
| opencl.c | 55 #include "MagickCore/exception.h" 56 #include "MagickCore/exception-private.h" 707 % void AcquireOpenCLKernel(MagickCLEnv clEnv,ExceptionInfo *exception) 713 % o exception: return any errors or warnings in this structure. 890 ExceptionInfo *exception) 923 options=GetConfigureOptions(filename,exception); 935 static void AutoSelectOpenCLDevices(MagickCLEnv clEnv,ExceptionInfo *exception) 964 if (LoadOpenCLBenchmarks(clEnv,exception) == MagickFalse) 1012 % void BenchmarkOpenCLDevices(MagickCLEnv clEnv,ExceptionInfo *exception) 1018 % o exception: return any errors or warning 1026 *exception; local 1273 *exception; local [all...] |
| /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/ |
| query.py | 27 import dns.exception namespace 34 class UnexpectedSource(dns.exception.DNSException): 38 class BadResponse(dns.exception.FormError): 56 raise dns.exception.Timeout 67 raise dns.exception.Timeout 157 A Timeout exception will be raised if the operation is not completed 172 A Timeout exception will be raised if the operation is not completed 387 raise dns.exception.FormError 390 raise dns.exception.FormError("first RRset is not an SOA") 407 raise dns.exception.FormError("answers after final SOA" [all...] |
| /prebuilts/tools/common/m2/repository/com/google/auth/google-auth-library-oauth2-http/0.3.0/ |
| google-auth-library-oauth2-http-0.3.0.jar | |
| /external/opencv3/3rdparty/openexr/IlmImf/ |
| ImfScanLineInputFile.cpp | 141 string exception; member in struct:Imf::__anon20508::LineBuffer 163 exception (), 572 catch (std::exception &e) 576 _lineBuffer->exception = e.what(); 584 _lineBuffer->exception = "unrecognized exception"; 626 catch (std::exception &e) 630 lineBuffer->exception = e.what(); 640 // Reading from the file caused an exception. 642 // re-throw the exception 960 const string *exception = 0; local [all...] |
| /external/v8/test/mjsunit/ |
| debug-evaluate-recursive.js | 33 exception = false; 100 exception = e 127 exception = e 149 assertFalse(exception, "exception in listener") 164 assertFalse(exception, "exception in listener")
|