HomeSort by relevance Sort by last modified time
    Searched full:exceptions (Results 151 - 175 of 8688) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/clang/test/CodeGenCXX/
pr18661.cpp 1 // RUN: %clang_cc1 %s -triple %itanium_abi_triple -fcxx-exceptions -fms-extensions -emit-llvm -o - | FileCheck %s
try-catch.cpp 1 // RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - -fcxx-exceptions -fexceptions | FileCheck %s
  /external/clang/test/CodeGenObjC/
blocks-4.m 1 // RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -fobjc-exceptions -fblocks -o %t %s
catch-lexical-block.m 1 // RUN: %clang_cc1 -debug-info-kind=limited -fobjc-exceptions -emit-llvm %s -o - | FileCheck %s
  /external/clang/test/Modules/
update-exception-spec.cpp 2 // RUN: %clang_cc1 -fexceptions -fcxx-exceptions -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -I%S/Inputs/update-exception-spec -emit-llvm-only %s
  /external/clang/test/Parser/
cxx-throw.cpp 1 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -fsyntax-only -verify %s
  /external/clang/test/SemaObjC/
rdar6248119.m 1 // RUN: %clang_cc1 -fsyntax-only %s -verify -fobjc-exceptions
  /external/clang/test/SemaObjCXX/
exceptions-fragile.mm 1 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -fobjc-runtime=macosx-fragile-10.5 -fsyntax-only -verify %s
  /external/clang/test/SemaTemplate/
crash-unparsed-exception.cpp 1 // RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify -fcxx-exceptions -fexceptions %s
  /external/guava/guava-testlib/src/com/google/common/testing/
TearDownStack.java 62 List<Throwable> exceptions = new ArrayList<Throwable>(); local
70 exceptions.add(t);
75 if ((!suppressThrows) && (exceptions.size() > 0)) {
76 throw ClusterException.create(exceptions);
  /external/mockito/src/org/mockito/exceptions/
PrintableInvocation.java 6 package org.mockito.exceptions;
  /external/testng/src/main/java/org/testng/
TestNGException.java 5 * The base class for all exceptions thrown by TestNG.
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParserFactory.java 140 ArrayList<Exception> exceptions = null; local
143 exceptions = new ArrayList<Exception>();
151 exceptions.add(e);
153 exceptions.add(e);
155 exceptions.add(e);
160 throw newInstantiationException("Invalid parser class list", exceptions);
164 ArrayList<Exception> exceptions = null; local
167 exceptions = new ArrayList<Exception>();
175 exceptions.add(e);
177 exceptions.add(e)
    [all...]
  /ndk/sources/cxx-stl/gabi++/
Android.mk 17 LOCAL_CPP_FEATURES := rtti exceptions
31 LOCAL_CPP_FEATURES := rtti exceptions
47 LOCAL_CPP_FEATURES := rtti exceptions
58 LOCAL_CPP_FEATURES := rtti exceptions
  /ndk/sources/cxx-stl/gnu-libstdc++/
README 9 This implementation fully supports C++ exceptions and RTTI.
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_cray.h 31 // Uncomment this if your compiler does not support exceptions
32 // Cray C++ supports exceptions when '-h exceptions' option is user;
33 // therefore '-D_STLP_HAS_NO_EXCEPTIONS' must be used when '-h exceptions'
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/
README 10 This implementation fully supports C++ exceptions and RTTI.
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/config/
_cray.h 31 // Uncomment this if your compiler does not support exceptions
32 // Cray C++ supports exceptions when '-h exceptions' option is user;
33 // therefore '-D_STLP_HAS_NO_EXCEPTIONS' must be used when '-h exceptions'
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
inspector_memory.py 6 from telemetry.core import exceptions namespace
9 class InspectorMemoryException(exceptions.Error):
37 exceptions.WebSocketDisconnected
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/ses/
test_connection.py 4 from boto.ses import exceptions namespace
27 with self.assertRaises(exceptions.SESIdentityNotVerifiedError):
33 with self.assertRaises(exceptions.SESDomainNotConfirmedError):
  /external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
cg.cpp 2 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -triple x86_64-apple-darwin10 -S -emit-llvm -std=c++11 -include %S/ser.h %s -o - | FileCheck %s
3 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -triple x86_64-apple-darwin10 -emit-pch -o %t-ser.pch -std=c++11 -x c++ %S/ser.h
4 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -triple x86_64-apple-darwin10 -S -emit-llvm -std=c++11 -include-pch %t-ser.pch %s -o - | FileCheck %s
  /external/clang/test/PCH/
cxx-mangling.cpp 2 // RUN: %clang_cc1 -std=c++11 -triple %itanium_abi_triple -fcxx-exceptions -fexceptions -include %s %s -emit-llvm -o - | FileCheck %s
5 // RUN: %clang_cc1 -std=c++11 -triple %itanium_abi_triple -fcxx-exceptions -fexceptions -x c++-header %s -emit-pch -o %t
6 // RUN: %clang_cc1 -std=c++11 -triple %itanium_abi_triple -fcxx-exceptions -fexceptions -include-pch %t %s -emit-llvm -o - | FileCheck %s
cxx_exprs.cpp 2 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -include %S/cxx_exprs.h -std=c++11 -fsyntax-only -verify %s -ast-dump
5 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -x c++-header -std=c++11 -emit-pch -o %t %S/cxx_exprs.h
6 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-dump
  /external/compiler-rt/test/asan/TestCases/Windows/
bind_io_completion_callback.cc 1 // Make sure we can throw exceptions from work items executed via
4 // Clang doesn't support exceptions on Windows yet, so for the time being we
5 // build this program in two parts: the code with exceptions is built with CL,
queue_user_work_item.cc 1 // Make sure we can throw exceptions from work items executed via
4 // Clang doesn't support exceptions on Windows yet, so for the time being we
5 // build this program in two parts: the code with exceptions is built with CL,

Completed in 1452 milliseconds

1 2 3 4 5 67 8 91011>>