HomeSort by relevance Sort by last modified time
    Searched refs:exception (Results 1426 - 1450 of 2577) sorted by null

<<51525354555657585960>>

  /external/doclava/src/com/google/doclava/
MethodInfo.java 374 ClassInfo ex = list[i].exception();
720 public boolean throwsException(ClassInfo exception) {
722 if (e.qualifiedName().equals(exception.qualifiedName())) {
806 for (ClassInfo exception : thrownExceptions()) {
807 if (!mInfo.throwsException(exception)) {
811 + " no longer throws exception " + exception.qualifiedName());
822 + " added thrown exception " + exec.qualifiedName());
  /external/linux-tools-perf/perf-3.12.0/arch/x86/include/asm/
kvm_host.h 266 struct x86_exception *exception);
404 } exception; member in struct:kvm_vcpu_arch
912 struct x86_exception *exception);
914 struct x86_exception *exception);
916 struct x86_exception *exception);
918 struct x86_exception *exception);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java 494 if (ar.exception == null) {
496 } else if (isCommandExceptionRadioNotAvailable(ar.exception)) {
    [all...]
CdmaServiceStateTracker.java 362 if (ar.exception == null) {
417 if (ar.exception == null) {
486 if (ar.exception == null) {
499 if (ar.exception == null) {
512 if (ar.exception == null) {
788 if (ar.exception != null) {
791 if (ar.exception instanceof CommandException) {
792 err = ((CommandException)(ar.exception)).getCommandError();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
PostCompilerBuilder.java     [all...]
  /external/chromium_org/v8/tools/
grokdump.py 56 Shows the processor state at the point of exception including the
222 ("exception", MINIDUMP_EXCEPTION.ctype),
533 self.exception = None
558 self.exception = MINIDUMP_EXCEPTION_STREAM.Read(
560 DebugPrint(self.exception)
563 self.minidump, self.exception.thread_context.rva)
566 self.minidump, self.exception.thread_context.rva)
569 self.minidump, self.exception.thread_context.rva)
842 except Exception as e:
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java 347 if (ar.exception == null) {
421 if (ar.exception == null) {
436 AsyncResult.forMessage(((Message) ar.userObj)).exception
437 = ar.exception;
445 if (ar.exception == null) {
667 if (ar.exception != null) {
670 if (ar.exception instanceof CommandException) {
671 err = ((CommandException)(ar.exception)).getCommandError();
688 ar.exception);
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.preferences_3.5.100.v20130422-1538.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.preferences_3.5.100.v20130422-1538.jar 
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneBase.java 471 if (ar.exception == null) {
504 if ((ar.exception == null) && (ar.result != null)) {
517 if (ar.exception == null) {
520 Rlog.e(LOG_TAG, "Srvcc exception: " + ar.exception);
526 if (ar.exception == null) {
532 Rlog.e(LOG_TAG, "OEM hook raw exception: " + ar.exception);
856 AsyncResult.forMessage(nsm.message, ar.result, ar.exception);
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 171 // TODO: use a app coded exception
728 final Exception_info exception = exceptions.get (e); local
729 leaders.add (exception.m_handler_pc);
1211 final Exception_info exception = exceptionTable.get (e); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
CertPathValidatorUtilities.java 67 import org.bouncycastle.jce.exception.ExtCertPathValidatorException;
134 * on the given certificate has thrown an exception.
156 * on the given certificate has thrown an exception.
166 Exception invalidKeyEx = null;
226 catch (Exception ex)
343 catch (Exception e)
345 throw new AnnotatedException("exception processing extension " + oid, e);
366 catch (Exception e)
563 catch (Exception e)
576 catch (Exception ex
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParserImpl_V21.java 22 import com.android.vcard.exception.VCardAgentNotSupportedException;
23 import com.android.vcard.exception.VCardException;
24 import com.android.vcard.exception.VCardInvalidCommentLineException;
25 import com.android.vcard.exception.VCardInvalidLineException;
26 import com.android.vcard.exception.VCardVersionException;
    [all...]
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 202 if (ar.exception == null) {
216 if (ar.exception != null) {
223 if (ar.exception == null) {
231 if (ar.exception != null) {
240 if (ar.exception != null) {
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
BaseRecognizer.pm 372 exception => $e,
410 my $exception = $arg_ref->{exception};
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
test.py 50 self.exception = False
115 tests.add('failures/expected/exception.html', exception=True)
330 Bug(test) failures/expected/exception.html [ WontFix ]
615 if test.exception:
616 raise ValueError('exception from ' + test_name)
  /external/stlport/stlport/stl/
_cmath.h 32 # if defined (_STLP_HAS_NO_NAMESPACES) && !defined (exception)
33 # define exception __math_exception macro
41 # undef exception macro
  /frameworks/base/tools/aidl/
AST.cpp 591 exception(e)
603 if (this->exception != NULL) {
605 this->exception->WriteDeclaration(to);
  /frameworks/base/tools/layoutlib/bridge/src/android/content/res/
BridgeResources.java 437 // return exception below
661 NotFoundException exception = new NotFoundException(); local
662 exception.initCause(e);
663 throw exception;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
UiccCard.java 376 if (ar.exception != null) {
378 log("Error in SIM access with exception" + ar.exception);
380 AsyncResult.forMessage((Message)ar.userObj, ar.result, ar.exception);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 32 # if defined (_STLP_HAS_NO_NAMESPACES) && !defined (exception)
33 # define exception __math_exception macro
41 # undef exception macro
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
wagon-provider-api-2.6.jar 
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 32 # if defined (_STLP_HAS_NO_NAMESPACES) && !defined (exception)
33 # define exception __math_exception macro
41 # undef exception macro
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 32 # if defined (_STLP_HAS_NO_NAMESPACES) && !defined (exception)
33 # define exception __math_exception macro
41 # undef exception macro
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 32 # if defined (_STLP_HAS_NO_NAMESPACES) && !defined (exception)
33 # define exception __math_exception macro
41 # undef exception macro

Completed in 2115 milliseconds

<<51525354555657585960>>