/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
examples.mk | 212 UTIL_SRCS = $(foreach ex,$(UTILS),$($(ex:.c=).SRCS)) 213 ALL_SRCS = $(foreach ex,$(ALL_EXAMPLES),$($(notdir $(ex:.c=)).SRCS)) 220 $(foreach ex,$(ALL_EXAMPLES),$(eval $(notdir $(ex:.c=)).SRCS += $(ex) examples.mk)) 317 @$(foreach ex,$(sort $(notdir $(EXAMPLES:.c=))),\ 318 echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@; [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
DefaultSoftKeyboard.java | 389 } catch (Exception ex) { 408 } catch (Exception ex) { 427 } catch (Exception ex) { 446 } catch (Exception ex) { 734 } catch (Exception ex) { 748 } catch (Exception ex) { 759 } catch (Exception ex) { 830 try { mVibrator.vibrate(5); } catch (Exception ex) { } 833 try { mSound.seekTo(0); mSound.start(); } catch (Exception ex) { } [all...] |
/dalvik/dx/src/com/android/dx/command/dexer/ |
Main.java | 513 } catch (StopProcessing ex) { 526 } catch (InterruptedException ex) { 606 public void onException(Exception ex) { 607 if (ex instanceof StopProcessing) { 608 throw (StopProcessing) ex; 609 } else if (ex instanceof SimException) { 611 DxConsole.err.println(ex.getMessage() + "\n"); 612 DxConsole.err.println(((SimException) ex).getContext()); 615 ex.printStackTrace(DxConsole.err); 736 } catch (ParseException ex) { [all...] |
/cts/tests/tests/database/src/android/database/sqlite/cts/ |
SQLiteQueryBuilderTest.java | 304 } catch (OperationCanceledException ex) { 324 } catch (OperationCanceledException ex) { 353 } catch (InterruptedException ex) { 377 } catch (OperationCanceledException ex) { 418 } catch (InterruptedException ex) { 439 } catch (OperationCanceledException ex) {
|
/dalvik/dx/src/com/android/dx/dex/cf/ |
CfTranslator.java | 94 } catch (RuntimeException ex) { 96 throw ExceptionWithContext.withContext(ex, msg); 196 } catch (RuntimeException ex) { 199 throw ExceptionWithContext.withContext(ex, msg); 366 } catch (RuntimeException ex) { 369 throw ExceptionWithContext.withContext(ex, msg);
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
IncrementalSAXSource_Filter.java | 637 catch(IOException ex) 639 arg=ex; 641 catch(StopException ex) 646 catch (SAXException ex) 648 Exception inner=ex.getException(); 661 arg=ex;
|
/external/proguard/src/proguard/retrace/ |
ReTrace.java | 331 catch (IOException ex) 333 throw new IOException("Can't read stack trace (" + ex.getMessage() + ")"); 343 catch (IOException ex) 731 catch (IOException ex) 736 ex.printStackTrace(); 741 System.err.println("Error: "+ex.getMessage());
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/ |
InstructionMethodItem.java | 107 } catch (InvalidItemIndex ex) { 109 writer.write(ex.getMessage()); 115 ex.getInvalidIndex()); 116 } catch (ReferenceType.InvalidReferenceTypeException ex) { 118 writer.printSignedIntAsDec(ex.getReferenceType()); 144 } catch (InvalidSwitchPayload ex) {
|
/external/valgrind/main/exp-sgcheck/tests/ |
bad_percentify.c | 582 UInt ex; local 584 case 1: ex = 10; break; 585 case 2: ex = 100; break; 586 case 3: ex = 1000; break; 590 p2 = ((100*n*ex) / m) % ex;
|
/frameworks/base/core/java/android/os/storage/ |
StorageManager.java | 390 } catch (Exception ex) { 391 Log.e(TAG, "Failed to enable UMS", ex); 403 } catch (Exception ex) { 404 Log.e(TAG, "Failed to disable UMS", ex); 417 } catch (Exception ex) { 418 Log.e(TAG, "Failed to get UMS connection state", ex);
|
/frameworks/base/media/java/android/media/browse/ |
MediaBrowser.java | 147 } catch (Exception ex) { 186 } catch (RemoteException ex) { 328 } catch (RemoteException ex) { 359 } catch (RemoteException ex) { 417 } catch (RemoteException ex) { 724 } catch (RemoteException ex) {
|
/frameworks/base/services/core/java/com/android/server/power/ |
Notifier.java | 135 } catch (RemoteException ex) { } 164 } catch (RemoteException ex) { 192 } catch (RemoteException ex) { 224 } catch (RemoteException ex) { 347 } catch (RemoteException ex) { } 361 } catch (RemoteException ex) {
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/ |
TrustManagerFactory1Test.java | 383 } catch (Exception ex) { 384 fail("Unexpected exception " + ex.toString()); 399 } catch (Exception ex) { 400 fail(ex + " unexpected exception was thrown for null parameter"); 457 } catch (Exception ex) { 458 fail(ex + " was thrown for init(ManagerFactoryParameters spec)");
|
/packages/apps/Email/src/com/android/email/activity/setup/ |
AccountCheckSettingsFragment.java | 218 private void reportProgress(int newState, MessagingException ex) { 220 mProgressException = ex; 233 String hostName = ex.getMessage(); 243 CheckSettingsErrorDialogFragment.getReasonFromException(ex); 245 CheckSettingsErrorDialogFragment.getErrorString(getActivity(), ex); 249 final HostAuth autoDiscoverResult = ((AutoDiscoverResults) ex).mHostAuth;
|
/packages/apps/Camera2/src/com/android/camera/util/ |
CameraUtil.java | 58 import com.android.ex.camera2.portability.CameraCapabilities; 59 import com.android.ex.camera2.portability.CameraSettings; 182 } catch (OutOfMemoryError ex) { 266 } catch (OutOfMemoryError ex) { 267 Log.e(TAG, "Got oom exception ", ex); 502 public static com.android.ex.camera2.portability.Size getOptimalPreviewSize(Context context, 503 List<com.android.ex.camera2.portability.Size> sizes, double targetRatio) { 587 public static com.android.ex.camera2.portability.Size getOptimalVideoSnapshotPictureSize( 588 List<com.android.ex.camera2.portability.Size> sizes, int targetWidth, 597 com.android.ex.camera2.portability.Size optimalSize = null 936 float ex = (float) Math.exp(-(i - mid) * (i - mid) \/ (mid * mid)) local [all...] |
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3lexer.c | 430 pANTLR3_EXCEPTION ex; local 434 ex = lexer->rec->state->exception; 438 if (ex->name == NULL) 444 ftext = ex->streamName->to8(ex->streamName); 450 ex->type, 451 (pANTLR3_UINT8) (ex->message), 452 ex->charPositionInLine+1 457 width = ANTLR3_UINT32_CAST(( (pANTLR3_UINT8)(lexer->input->data) + (lexer->input->size(lexer->input) )) - (pANTLR3_UINT8)(ex->index)); 461 if (isprint(ex->c) [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
SmsMessage.java | 103 } catch (RuntimeException ex) { 104 Rlog.e(LOG_TAG, "SMS PDU parsing failed: ", ex); 134 } catch (RuntimeException ex) { 135 Rlog.e(LOG_TAG, "SMS PDU parsing failed: ", ex); 146 } catch (RuntimeException ex) { 147 Rlog.e(LOG_TAG, "CDS SMS PDU parsing failed: ", ex); 187 } catch (RuntimeException ex) { 188 Rlog.e(LOG_TAG, "SMS PDU parsing failed: ", ex); 297 } catch (EncodeException ex) { 744 } catch (UnsupportedEncodingException ex) { [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/ |
CharBufferTest.java | 890 } catch (BufferOverflowException ex) { 896 } catch (BufferOverflowException ex) { 902 } catch (BufferOverflowException ex) { 913 } catch (ReadOnlyBufferException ex) { 919 } catch (ReadOnlyBufferException ex) { 925 } catch (ReadOnlyBufferException ex) { 964 } catch (IndexOutOfBoundsException ex) { 970 } catch (IndexOutOfBoundsException ex) { 976 } catch (IndexOutOfBoundsException ex) { 982 } catch (IndexOutOfBoundsException ex) { [all...] |
/prebuilts/eclipse/maven/apache-maven-3.2.1/lib/ |
maven-model-3.2.1.jar | |
/art/test/etc/ |
push-and-run-prebuilt-test-jar | 110 SECONDARY_DEX=":$DEX_LOCATION/$TEST_NAME-ex.jar" 153 adb push $TEST_NAME-ex.jar $DEX_LOCATION 158 adb push $TEST_NAME-ex.jar $DEX_LOCATION >/dev/null 2>&1
|
/bionic/libm/arm64/ |
fenv.c | 94 fexcept_t ex = excepts; local 96 fesetexceptflag(&ex, excepts);
|
/dalvik/dx/src/com/android/dx/command/dump/ |
BaseDumper.java | 293 } catch (IOException ex) { 294 throw new RuntimeException(ex);
|
/device/sample/frameworks/PlatformLibrary/jni/ |
PlatformLibrary.cpp | 50 static void throwException(JNIEnv* env, const char* ex, const char* fmt, 53 if (jclass cls = env->FindClass(ex)) {
|
/external/apache-http/src/org/apache/http/client/protocol/ |
RequestAddCookies.java | 133 } catch (URISyntaxException ex) { 135 request.getRequestLine().getUri(), ex);
|
/external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
AbstractConnPool.java | 326 } catch (IOException ex) { 327 log.debug("I/O error closing connection", ex);
|