/external/clang/test/SemaCXX/ |
out-of-line-def-mismatch.cpp | 6 namespace N1 { 10 void func(S1*); // expected-note {{type of 1st parameter of member declaration does not match definition ('N2::S1 *' vs 'N2::N1::S1 *')}} 11 void func(C1&, unsigned, const S1*); // expected-note {{type of 3rd parameter of member declaration does not match definition ('const N2::S1 *' vs 'const N2::N1::S1 *')}} 12 void func(const S1*, unsigned); //expected-note {{type of 1st parameter of member declaration does not match definition ('const N2::S1 *' vs 'N2::N1::S1')}} 20 void N2::N1::S2::func(S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}} 21 void N2::N1::S2::func(C1&, unsigned, const S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}} 22 void N2::N1::S2::func(S1*, double) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'} [all...] |
/external/libcxx/test/numerics/numarray/template.valarray/valarray.members/ |
size.pass.cpp | 24 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 25 std::valarray<T> v1(a1, N1); 26 assert(v1.size() == N1); 31 const unsigned N1 = 0; 32 std::valarray<T> v1(a1, N1); 33 assert(v1.size() == N1); 37 const unsigned N1 = 0; 39 assert(v1.size() == N1);
|
cshift.pass.cpp | 25 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 26 std::valarray<T> v1(a1, N1); 28 assert(v2.size() == N1); 29 for (unsigned i = 0; i < N1; ++i) 36 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 37 std::valarray<T> v1(a1, N1); 39 assert(v2.size() == N1); 40 for (unsigned i = 0; i < N1; ++i) 47 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 48 std::valarray<T> v1(a1, N1); [all...] |
shift.pass.cpp | 25 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 26 std::valarray<T> v1(a1, N1); 28 assert(v2.size() == N1); 29 for (unsigned i = 0; i < N1; ++i) 36 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 37 std::valarray<T> v1(a1, N1); 39 assert(v2.size() == N1); 40 for (unsigned i = 0; i < N1; ++i) 47 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 48 std::valarray<T> v1(a1, N1); [all...] |
sum.pass.cpp | 24 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 25 std::valarray<T> v1(a1, N1);
|
max.pass.cpp | 24 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 25 std::valarray<T> v1(a1, N1); 36 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 37 std::valarray<T> v1(a1, N1);
|
min.pass.cpp | 24 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 25 std::valarray<T> v1(a1, N1); 36 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 37 std::valarray<T> v1(a1, N1);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.valarray/valarray.members/ |
size.pass.cpp | 24 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 25 std::valarray<T> v1(a1, N1); 26 assert(v1.size() == N1); 31 const unsigned N1 = 0; 32 std::valarray<T> v1(a1, N1); 33 assert(v1.size() == N1); 37 const unsigned N1 = 0; 39 assert(v1.size() == N1);
|
cshift.pass.cpp | 25 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 26 std::valarray<T> v1(a1, N1); 28 assert(v2.size() == N1); 29 for (unsigned i = 0; i < N1; ++i) 36 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 37 std::valarray<T> v1(a1, N1); 39 assert(v2.size() == N1); 40 for (unsigned i = 0; i < N1; ++i) 47 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 48 std::valarray<T> v1(a1, N1); [all...] |
shift.pass.cpp | 25 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 26 std::valarray<T> v1(a1, N1); 28 assert(v2.size() == N1); 29 for (unsigned i = 0; i < N1; ++i) 36 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 37 std::valarray<T> v1(a1, N1); 39 assert(v2.size() == N1); 40 for (unsigned i = 0; i < N1; ++i) 47 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 48 std::valarray<T> v1(a1, N1); [all...] |
sum.pass.cpp | 24 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 25 std::valarray<T> v1(a1, N1);
|
max.pass.cpp | 24 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 25 std::valarray<T> v1(a1, N1); 36 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 37 std::valarray<T> v1(a1, N1);
|
min.pass.cpp | 24 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 25 std::valarray<T> v1(a1, N1); 36 const unsigned N1 = sizeof(a1)/sizeof(a1[0]); 37 std::valarray<T> v1(a1, N1);
|
/external/clang/test/ASTMerge/Inputs/ |
namespace1.cpp | 2 namespace N1 {
|
namespace2.cpp | 2 namespace N1 {
|
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/ |
p2-template-id.cpp | 4 namespace N1 { 15 int &ir = f((N2::Y<N1::X>*)0); 20 long g(N1::X); 22 namespace N1 {
|
/external/libcxx/test/numerics/numarray/template.valarray/valarray.assign/ |
mask_array_assign.pass.cpp | 22 const std::size_t N1 = sizeof(a1)/sizeof(a1[0]); 23 bool b[N1] = {true, false, false, true, true, false, 25 std::valarray<int> v1(a1, N1); 26 std::valarray<bool> vb(b, N1);
|
/external/libcxx/test/numerics/numarray/template.valarray/valarray.cons/ |
mask_array.pass.cpp | 22 const std::size_t N1 = sizeof(a1)/sizeof(a1[0]); 23 bool b[N1] = {true, false, false, true, true, false, 25 std::valarray<int> v1(a1, N1); 26 std::valarray<bool> vb(b, N1);
|
/external/libcxx/test/numerics/numarray/template.valarray/valarray.sub/ |
valarray_bool_const.pass.cpp | 22 const std::size_t N1 = sizeof(a1)/sizeof(a1[0]); 23 bool b[N1] = {true, false, false, true, true, false, 25 std::valarray<int> v1(a1, N1); 26 std::valarray<bool> vb(b, N1);
|
valarray_bool_non_const.pass.cpp | 22 const std::size_t N1 = sizeof(a1)/sizeof(a1[0]); 23 bool b[N1] = {true, false, false, true, true, false, 25 std::valarray<int> v1(a1, N1); 26 std::valarray<bool> vb(b, N1);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.valarray/valarray.assign/ |
mask_array_assign.pass.cpp | 22 const std::size_t N1 = sizeof(a1)/sizeof(a1[0]); 23 bool b[N1] = {true, false, false, true, true, false, 25 std::valarray<int> v1(a1, N1); 26 std::valarray<bool> vb(b, N1);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.valarray/valarray.cons/ |
mask_array.pass.cpp | 22 const std::size_t N1 = sizeof(a1)/sizeof(a1[0]); 23 bool b[N1] = {true, false, false, true, true, false, 25 std::valarray<int> v1(a1, N1); 26 std::valarray<bool> vb(b, N1);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.valarray/valarray.sub/ |
valarray_bool_const.pass.cpp | 22 const std::size_t N1 = sizeof(a1)/sizeof(a1[0]); 23 bool b[N1] = {true, false, false, true, true, false, 25 std::valarray<int> v1(a1, N1); 26 std::valarray<bool> vb(b, N1);
|
valarray_bool_non_const.pass.cpp | 22 const std::size_t N1 = sizeof(a1)/sizeof(a1[0]); 23 bool b[N1] = {true, false, false, true, true, false, 25 std::valarray<int> v1(a1, N1); 26 std::valarray<bool> vb(b, N1);
|
/external/clang/test/SemaTemplate/ |
temp_explicit_cxx0x.cpp | 2 namespace N1 { 16 template struct ::N1::Inner::X1<float>; 19 using namespace N1; 21 template struct X0<double>; // expected-error{{must occur in namespace 'N1'}}
|