/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.badcall/func.wrap.badcall.const/ |
bad_function_call_ctor.pass.cpp | 19 std::bad_function_call ex; local
|
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3exception.c | 37 static void antlr3ExceptionPrint(pANTLR3_EXCEPTION ex); 38 static void antlr3ExceptionFree (pANTLR3_EXCEPTION ex); 74 pANTLR3_EXCEPTION ex; local 78 ex = (pANTLR3_EXCEPTION) ANTLR3_CALLOC(1, sizeof(ANTLR3_EXCEPTION)); 82 if (ex == NULL) 87 ex->name = name; /* Install exception name */ 88 ex->type = exception; /* Install the exception number */ 89 ex->message = message; /* Install message string */ 93 ex->freeMessage = freeMessage; 97 ex->print = antlr3ExceptionPrint [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/acl/ |
AclNotFoundExceptionTest.java | 39 AclNotFoundException ex = new AclNotFoundException(); local 40 assertNull(ex.getMessage()); 41 assertNull(ex.getCause());
|
LastOwnerExceptionTest.java | 35 LastOwnerException ex = new LastOwnerException(); local 36 assertNull(ex.getMessage()); 37 assertNull(ex.getCause());
|
NotOwnerExceptionTest.java | 35 NotOwnerException ex = new NotOwnerException(); local 36 assertNull(ex.getMessage()); 37 assertNull(ex.getCause());
|
/device/asus/flo/camera/hdr/include/ |
morpho_rect_int.h | 21 int ex; /**< right */
member in struct:__anon1929 29 (rect)->ex=(r);\
|
/device/lge/mako/camera/hdr/include/ |
morpho_rect_int.h | 21 int ex; /**< right */
member in struct:__anon2310 29 (rect)->ex=(r);\
|
/frameworks/ex/camera2/public/src/com/android/ex/camera2/exceptions/ |
TimeoutRuntimeException.java | 16 package com.android.ex.camera2.exceptions;
|
/frameworks/ex/chips/src/com/android/ex/chips/ |
AccountSpecifier.java | 17 package com.android.ex.chips;
|
ChipsUtil.java | 17 package com.android.ex.chips;
|
/frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/ |
DynamicProxy.java | 17 package com.android.ex.variablespeed;
|
/hardware/qcom/camera/hdr/include/ |
morpho_rect_int.h | 21 int ex; /**< right */
member in struct:__anon34273 29 (rect)->ex=(r);\
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/ |
IllegalCharsetNameExceptionTest.java | 33 IllegalCharsetNameException ex = new IllegalCharsetNameException( local 35 assertTrue(ex instanceof IllegalArgumentException); 36 assertNull(ex.getCause()); 37 assertEquals(ex.getCharsetName(), "impossible"); 38 assertTrue(ex.getMessage().indexOf("impossible") != -1); 40 ex = new IllegalCharsetNameException("ascii"); 41 assertNull(ex.getCause()); 42 assertEquals(ex.getCharsetName(), "ascii"); 43 assertTrue(ex.getMessage().indexOf("ascii") != -1); 45 ex = new IllegalCharsetNameException("") [all...] |
UnsupportedCharsetExceptionTest.java | 33 UnsupportedCharsetException ex = new UnsupportedCharsetException( local 35 assertTrue(ex instanceof IllegalArgumentException); 36 assertNull(ex.getCause()); 37 assertEquals(ex.getCharsetName(), "impossible"); 38 assertTrue(ex.getMessage().indexOf("impossible") != -1); 40 ex = new UnsupportedCharsetException("ascii"); 41 assertNull(ex.getCause()); 42 assertEquals(ex.getCharsetName(), "ascii"); 43 assertTrue(ex.getMessage().indexOf("ascii") != -1); 45 ex = new UnsupportedCharsetException("") [all...] |
CharacterCodingExceptionTest.java | 32 CharacterCodingException ex = new CharacterCodingException(); local 33 assertTrue(ex instanceof IOException); 34 assertNull(ex.getCause()); 35 assertNull(ex.getMessage());
|
MalformedInputExceptionTest.java | 34 MalformedInputException ex = new MalformedInputException(3); local 35 assertTrue(ex instanceof CharacterCodingException); 36 assertNull(ex.getCause()); 37 assertEquals(ex.getInputLength(), 3); 38 assertTrue(ex.getMessage().indexOf("3") != -1); 40 ex = new MalformedInputException(-3); 41 assertNull(ex.getCause()); 42 assertEquals(ex.getInputLength(), -3); 43 assertTrue(ex.getMessage().indexOf("-3") != -1); 45 ex = new MalformedInputException(0) [all...] |
UnmappableCharacterExceptionTest.java | 34 UnmappableCharacterException ex = new UnmappableCharacterException(3); local 35 assertTrue(ex instanceof CharacterCodingException); 36 assertNull(ex.getCause()); 37 assertEquals(ex.getInputLength(), 3); 38 assertTrue(ex.getMessage().indexOf("3") != -1); 40 ex = new UnmappableCharacterException(-3); 41 assertNull(ex.getCause()); 42 assertEquals(ex.getInputLength(), -3); 43 assertTrue(ex.getMessage().indexOf("-3") != -1); 45 ex = new UnmappableCharacterException(0) [all...] |
/libcore/luni/src/main/java/javax/sql/ |
ConnectionEvent.java | 33 private SQLException ex; field in class:ConnectionEvent 61 ex = theException; 72 return ex;
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
eh3_2.cpp | 20 e ex; local 21 throw ex;
|
ref9.cpp | 3 struct ex; 6 ex eval() const; 10 struct ex { struct 12 ex() : bp(0) { } function in struct:ex 13 ex(const basic &); 14 virtual ~ex(); 18 ex basic::eval() const { 22 inline ex::ex(const basic &b) { construct_from_basic (b); } function in class:ex 23 inline ex::~ex() { if (--bp->refcount == 0) delete bp; [all...] |
/ndk/tests/device/test-stlport_static-exception/jni/ |
eh3_2.cpp | 20 e ex; local 21 throw ex;
|
ref9.cpp | 3 struct ex; 6 ex eval() const; 10 struct ex { struct 12 ex() : bp(0) { } function in struct:ex 13 ex(const basic &); 14 virtual ~ex(); 18 ex basic::eval() const { 22 inline ex::ex(const basic &b) { construct_from_basic (b); } function in class:ex 23 inline ex::~ex() { if (--bp->refcount == 0) delete bp; [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
AccessControlExceptionTest.java | 57 AccessControlException ex = new AccessControlException("001", perm); local 58 assertSame(ex.getPermission(), perm);
|
/external/jmonkeyengine/engine/src/tools/jme3tools/savegame/ |
SaveGame.java | 38 BinaryExporter ex = BinaryExporter.getInstance(); local 54 ex.save(data, os); 103 } catch (IOException ex) { 104 Logger.getLogger(SaveGame.class.getName()).log(Level.SEVERE, "Error loading data: {0}", ex); 105 ex.printStackTrace(); 110 } catch (IOException ex) { 111 Logger.getLogger(SaveGame.class.getName()).log(Level.SEVERE, "Error loading data: {0}", ex); 112 ex.printStackTrace();
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_rintl.c | 59 int ex, sign; local 63 ex = expsign & 0x7fff; 65 if (ex >= BIAS + LDBL_MANT_DIG - 1) { 66 if (ex == BIAS + LDBL_MAX_EXP) 86 if (ex < BIAS && x == 0.0L)
|