HomeSort by relevance Sort by last modified time
    Searched defs:std (Results 101 - 125 of 811) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4479392/include/c++/v1/
cxxabi.h 28 namespace std { namespace
49 __cxa_throw(void *thrown_exception, std::type_info *tinfo,
63 extern _LIBCXXABI_FUNC_VIS std::type_info *__cxa_current_exception_type();
159 // Apple extension to support std::uncaught_exception()
  /prebuilts/clang/host/linux-x86/clang-4479392/include/lld/Core/
LLVM.h 74 namespace std { namespace
  /prebuilts/clang/host/linux-x86/clang-4579689/include/c++/v1/
cxxabi.h 28 namespace std { namespace
49 __cxa_throw(void *thrown_exception, std::type_info *tinfo,
63 extern _LIBCXXABI_FUNC_VIS std::type_info *__cxa_current_exception_type();
159 // Apple extension to support std::uncaught_exception()
  /prebuilts/clang/host/linux-x86/clang-4579689/include/lld/Common/
LLVM.h 74 namespace std { namespace
  /prebuilts/clang/host/linux-x86/clang-4630689/include/c++/v1/
cxxabi.h 28 namespace std { namespace
49 __cxa_throw(void *thrown_exception, std::type_info *tinfo,
63 extern _LIBCXXABI_FUNC_VIS std::type_info *__cxa_current_exception_type();
159 // Apple extension to support std::uncaught_exception()
  /prebuilts/clang/host/linux-x86/clang-4630689/include/lld/Common/
LLVM.h 74 namespace std { namespace
  /prebuilts/clang/host/linux-x86/clang-4639204/include/c++/v1/
cxxabi.h 28 namespace std { namespace
49 __cxa_throw(void *thrown_exception, std::type_info *tinfo,
63 extern _LIBCXXABI_FUNC_VIS std::type_info *__cxa_current_exception_type();
159 // Apple extension to support std::uncaught_exception()
  /prebuilts/clang/host/linux-x86/clang-4639204/include/lld/Common/
LLVM.h 74 namespace std { namespace
  /prebuilts/clang/host/linux-x86/clang-4691093/include/c++/v1/
cxxabi.h 28 namespace std { namespace
49 __cxa_throw(void *thrown_exception, std::type_info *tinfo,
63 extern _LIBCXXABI_FUNC_VIS std::type_info *__cxa_current_exception_type();
159 // Apple extension to support std::uncaught_exception()
  /prebuilts/clang/host/linux-x86/clang-4691093/include/lld/Common/
LLVM.h 74 namespace std { namespace
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/
new.cpp 33 namespace std namespace
54 } // std
65 operator new(std::size_t size) _THROW_BAD_ALLOC
74 std::new_handler nh = std::get_new_handler();
79 throw std::bad_alloc();
89 operator new(size_t size, const std::nothrow_t&) _NOEXCEPT
115 operator new[](size_t size, const std::nothrow_t&) _NOEXCEPT
142 operator delete(void* ptr, const std::nothrow_t&) _NOEXCEPT
163 operator delete[] (void* ptr, const std::nothrow_t&) _NOEXCEP
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/
NotConstructible.h 27 namespace std namespace
32 : public std::unary_function<NotConstructible, std::size_t>
34 std::size_t operator()(const NotConstructible&) const {return 0;}
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/
hash.pass.cpp 20 using std::experimental::propagate_const;
22 namespace std { namespace
33 } // namespace std
41 auto h = std::hash<P>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/include/
cxxabi.h 28 namespace std { namespace
49 __cxa_throw(void *thrown_exception, std::type_info *tinfo,
63 extern _LIBCXXABI_FUNC_VIS std::type_info *__cxa_current_exception_type();
159 // Apple extension to support std::uncaught_exception()
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/src/
cxa_handlers.cpp 22 namespace std namespace
103 // std::atomic<std::new_handler> __cxa_new_handler(0);
125 } // std
  /test/vts-testcase/hal/treble/vintf/
utils.h 55 using std::cout;
56 using std::endl;
57 using std::map;
58 using std::set;
59 using std::string;
61 using std::vector;
63 using HalVerifyFn = std::function<void(const FQName& fq_name,
66 using HalManifestPtr = std::shared_ptr<const HalManifest>;
105 void PrintTo(const sp<T>& v, std::ostream* os) {
110 void PrintTo(const T* v, std::ostream* os)
118 namespace std { namespace
    [all...]
  /device/generic/goldfish/dhcp/server/
lease.h 45 std::hash<T> hasher;
49 namespace std { namespace
  /external/clang/test/Analysis/
NewDelete-variadic.cpp 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,cplusplus.NewDelete,cplusplus.NewDeleteLeaks,unix.Malloc -std=c++11 -fblocks -verify %s
4 namespace std { namespace
10 void *operator new(std::size_t, X, ...);
11 void *operator new[](std::size_t, X, ...);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p2.cpp 1 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -fsyntax-only -verify %s -std=c++11
22 namespace std { namespace
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p2-generic-lambda-1y.cpp 1 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++1y -DCXX1Y
9 namespace std { namespace
21 const std::type_info &ti1 = typeid([](auto &a) -> P& { static P p; return p; }(i)); // expected-warning {{expression with side effects will be evaluated despite being used as an operand to 'typeid'}}
22 const std::type_info &ti2 = typeid([](auto) -> int { return i; }(i)); // expected-error{{lambda expression in an unevaluated operand}}\
  /external/clang/test/CodeGen/
address-sanitizer-and-array-cookie.cpp 5 namespace std { namespace
7 std::nothrow_t nothrow;
9 void *operator new[](size_t, const std::nothrow_t &) throw();
29 return new (std::nothrow) C[10];
  /external/clang/test/CodeGenCXX/
2006-03-06-C++RecurseCrash.cpp 2 namespace std { namespace
13 class __si_class_type_info : public std::type_info {
18 class recursive_init: public std::exception {
partial-init.cpp 1 // RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm -std=c++11 -fcxx-exceptions -fexceptions -S -emit-llvm -o - %s | FileCheck %s
3 namespace std { namespace
16 std::string c;
  /external/clang/test/SemaCXX/
cxx11-call-to-deleted-constructor.cpp 1 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
4 namespace std { namespace
29 Matrix(const std::initializer_list<value_type>& list) = delete; // expected-note {{'Matrix' has been explicitly marked deleted here}}
lambda-expressions.cpp 1 // RUN: %clang_cc1 -std=c++11 -Wno-unused-value -fsyntax-only -verify -fblocks %s
2 // RUN: %clang_cc1 -std=c++1y -Wno-unused-value -fsyntax-only -verify -fblocks %s
4 namespace std { class type_info; }; namespace

Completed in 798 milliseconds

1 2 3 45 6 7 8 91011>>