HomeSort by relevance Sort by last modified time
    Searched refs:std (Results 1 - 25 of 52170) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Index/
complete-preamble.h 1 namespace std { namespace
5 namespace std { namespace
complete-preamble.cpp 3 std::
load-namespaces.cpp 3 namespace std { namespace
9 namespace std { namespace
13 namespace std98 = std;
18 namespace std { namespace
22 using std::g;
24 void std::g() {
27 namespace my_rel_ops = std::rel_ops;
30 // CHECK: load-namespaces.cpp:3:11: Namespace=std:3:11 (Definition) Extent=[3:1 - 7:2]
33 // CHECK: load-namespaces.cpp:9:11: Namespace=std:9:11 (Definition) Extent=[9:1 - 11:2]
36 // CHECK: load-namespaces.cpp:13:19: NamespaceRef=std:3:11 Extent=[13:19 - 13:22
    [all...]
  /external/clang/test/CodeGen/
debug-info-imported-entity.cpp 3 namespace std { class A; } namespace
4 using std::A; using ::A;
  /external/clang/test/Modules/Inputs/PR27041/
TGenericClassInfo.h 1 namespace std {} namespace
2 namespace std { enum float_round_style { denorm_present }; } namespace
  /external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.array/
new_size_align_nothrow.fail.cpp 13 // void* operator new[](std::size_t, std::align_val_t, std::nothrow_t &);
24 ::operator new[](4, std::align_val_t{4}, std::nothrow); // expected-error {{ignoring return value of function declared with 'nodiscard' attribute}}
  /external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.single/
new_size_align_nothrow.fail.cpp 13 // void* operator new(std::size_t, std::align_val_t, std::nothrow_t &);
24 ::operator new(4, std::align_val_t{4}, std::nothrow); // expected-error {{ignoring return value of function declared with 'nodiscard' attribute}}
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
type_traits.hpp 21 using std::add_const;
22 using std::enable_if;
23 using std::is_const;
24 using std::is_convertible;
25 using std::is_function;
26 using std::is_same;
27 using std::remove_pointer;
28 using std::remove_reference;
  /frameworks/compile/libbcc/lib/
RSStubsWhiteList.cpp 21 std::vector<std::string> stubList = {
    [all...]
  /external/libcxx/test/std/atomics/atomics.types.generic/
cstdint_typedefs.pass.cpp 45 static_assert((std::is_same<std::atomic< std::int_least8_t>, std::atomic_int_least8_t>::value), "");
46 static_assert((std::is_same<std::atomic< std::uint_least8_t>, std::atomic_uint_least8_t>::value), "");
47 static_assert((std::is_same<std::atomic< std::int_least16_t>, std::atomic_int_least16_t>::value), "")
    [all...]
integral_typedefs.pass.cpp 46 static_assert((std::is_same<std::atomic<char>, std::atomic_char>::value), "");
47 static_assert((std::is_same<std::atomic<signed char>, std::atomic_schar>::value), "");
48 static_assert((std::is_same<std::atomic<unsigned char>, std::atomic_uchar>::value), "");
49 static_assert((std::is_same<std::atomic<short>, std::atomic_short>::value), "")
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/atomics/atomics.types.generic/
cstdint_typedefs.pass.cpp 45 static_assert((std::is_same<std::atomic< std::int_least8_t>, std::atomic_int_least8_t>::value), "");
46 static_assert((std::is_same<std::atomic< std::uint_least8_t>, std::atomic_uint_least8_t>::value), "");
47 static_assert((std::is_same<std::atomic< std::int_least16_t>, std::atomic_int_least16_t>::value), "")
    [all...]
integral_typedefs.pass.cpp 46 static_assert((std::is_same<std::atomic<char>, std::atomic_char>::value), "");
47 static_assert((std::is_same<std::atomic<signed char>, std::atomic_schar>::value), "");
48 static_assert((std::is_same<std::atomic<unsigned char>, std::atomic_uchar>::value), "");
49 static_assert((std::is_same<std::atomic<short>, std::atomic_short>::value), "")
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/
tuple_size_v.fail.cpp 22 (void)std::tuple_size_v<std::tuple<> &>; // expected-note {{requested here}}
23 (void)std::tuple_size_v<int>; // expected-note {{requested here}}
24 (void)std::tuple_size_v<std::tuple<>*>; // expected-note {{requested here}}
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.helper/
tuple_size_v.fail.cpp 22 (void)std::tuple_size_v<std::tuple<> &>; // expected-note {{requested here}}
23 (void)std::tuple_size_v<int>; // expected-note {{requested here}}
24 (void)std::tuple_size_v<std::tuple<>*>; // expected-note {{requested here}}
  /external/libcxx/test/std/utilities/meta/meta.logical/
conjunction.pass.cpp 25 static_assert ( std::conjunction<>::value, "" );
26 static_assert ( std::conjunction<std::true_type >::value, "" );
27 static_assert (!std::conjunction<std::false_type>::value, "" );
29 static_assert ( std::conjunction_v<>, "" );
30 static_assert ( std::conjunction_v<std::true_type >, "" );
31 static_assert (!std::conjunction_v<std::false_type>, "" )
    [all...]
disjunction.pass.cpp 25 static_assert (!std::disjunction<>::value, "" );
26 static_assert ( std::disjunction<std::true_type >::value, "" );
27 static_assert (!std::disjunction<std::false_type>::value, "" );
29 static_assert (!std::disjunction_v<>, "" );
30 static_assert ( std::disjunction_v<std::true_type >, "" );
31 static_assert (!std::disjunction_v<std::false_type>, "" )
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.logical/
conjunction.pass.cpp 25 static_assert ( std::conjunction<>::value, "" );
26 static_assert ( std::conjunction<std::true_type >::value, "" );
27 static_assert (!std::conjunction<std::false_type>::value, "" );
29 static_assert ( std::conjunction_v<>, "" );
30 static_assert ( std::conjunction_v<std::true_type >, "" );
31 static_assert (!std::conjunction_v<std::false_type>, "" )
    [all...]
disjunction.pass.cpp 25 static_assert (!std::disjunction<>::value, "" );
26 static_assert ( std::disjunction<std::true_type >::value, "" );
27 static_assert (!std::disjunction<std::false_type>::value, "" );
29 static_assert (!std::disjunction_v<>, "" );
30 static_assert ( std::disjunction_v<std::true_type >, "" );
31 static_assert (!std::disjunction_v<std::false_type>, "" )
    [all...]
  /external/libcxx/test/std/numerics/complex.number/
cases.h 20 const std::complex<double> testcases[] =
22 std::complex<double>( 1.e-6, 1.e-6),
23 std::complex<double>(-1.e-6, 1.e-6),
24 std::complex<double>(-1.e-6, -1.e-6),
25 std::complex<double>( 1.e-6, -1.e-6),
27 std::complex<double>( 1.e+6, 1.e-6),
28 std::complex<double>(-1.e+6, 1.e-6),
29 std::complex<double>(-1.e+6, -1.e-6),
30 std::complex<double>( 1.e+6, -1.e-6),
32 std::complex<double>( 1.e-6, 1.e+6)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/complex.number/
cases.h 20 const std::complex<double> testcases[] =
22 std::complex<double>( 1.e-6, 1.e-6),
23 std::complex<double>(-1.e-6, 1.e-6),
24 std::complex<double>(-1.e-6, -1.e-6),
25 std::complex<double>( 1.e-6, -1.e-6),
27 std::complex<double>( 1.e+6, 1.e-6),
28 std::complex<double>(-1.e+6, 1.e-6),
29 std::complex<double>(-1.e+6, -1.e-6),
30 std::complex<double>( 1.e+6, -1.e-6),
32 std::complex<double>( 1.e-6, 1.e+6)
    [all...]
  /external/libcxx/test/std/algorithms/alg.sorting/alg.min.max/
minmax_init_list.pass.cpp 25 assert((std::minmax({1, 2, 3}) == std::pair<int, int>(1, 3)));
26 assert((std::minmax({1, 3, 2}) == std::pair<int, int>(1, 3)));
27 assert((std::minmax({2, 1, 3}) == std::pair<int, int>(1, 3)));
28 assert((std::minmax({2, 3, 1}) == std::pair<int, int>(1, 3)));
29 assert((std::minmax({3, 1, 2}) == std::pair<int, int>(1, 3)))
    [all...]
  /external/libcxx/test/std/utilities/intseq/intseq.make/
make_integer_seq.pass.cpp 23 static_assert(std::is_same<std::make_integer_sequence<int, 0>, std::integer_sequence<int>>::value, "");
24 static_assert(std::is_same<std::make_integer_sequence<int, 1>, std::integer_sequence<int, 0>>::value, "");
25 static_assert(std::is_same<std::make_integer_sequence<int, 2>, std::integer_sequence<int, 0, 1>>::value, "");
26 static_assert(std::is_same<std::make_integer_sequence<int, 3>, std::integer_sequence<int, 0, 1, 2>>::value, "")
    [all...]
  /external/tensorflow/tensorflow/core/api_def/
excluded_ops.cc 20 const std::unordered_set<std::string>* GetExcludedOps() {
21 static std::unordered_set<std::string>* excluded_ops =
22 new std::unordered_set<std::string>(
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.sorting/alg.min.max/
minmax_init_list.pass.cpp 25 assert((std::minmax({1, 2, 3}) == std::pair<int, int>(1, 3)));
26 assert((std::minmax({1, 3, 2}) == std::pair<int, int>(1, 3)));
27 assert((std::minmax({2, 1, 3}) == std::pair<int, int>(1, 3)));
28 assert((std::minmax({2, 3, 1}) == std::pair<int, int>(1, 3)));
29 assert((std::minmax({3, 1, 2}) == std::pair<int, int>(1, 3)))
    [all...]

Completed in 1246 milliseconds

1 2 3 4 5 6 7 8 91011>>