/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/ |
D | compiler_log_formatter.ipp | 19 #include <boost/test/output/compiler_log_formatter.hpp> 39 namespace output { 60 compiler_log_formatter::log_start( std::ostream& output, counter_t test_cases_amount ) 63 output << "Running " << test_cases_amount << " test " 78 compiler_log_formatter::log_build_info( std::ostream& output ) 80 output << "Platform: " << BOOST_PLATFORM << '\n' 91 compiler_log_formatter::test_unit_start( std::ostream& output, test_unit const& tu ) 93 output << "Entering test " << tu.p_type_name << " \"" << tu.p_name << "\"" << std::endl; 99 compiler_log_formatter::test_unit_finish( std::ostream& output, test_unit const& tu, unsigned long … 101 output << "Leaving test " << tu.p_type_name << " \"" << tu.p_name << "\""; [all …]
|
/ndk/sources/third_party/googletest/googletest/test/ |
D | gtest_output_test.py | 104 def RemoveStackTraceDetails(output): argument 109 'Stack trace: (omitted)\n\n', output) 112 def RemoveStackTraces(output): argument 116 return re.sub(r'Stack trace:(.|\n)*?\n\n', '', output) 119 def RemoveTime(output): argument 122 return re.sub(r'\(\d+ ms', '(? ms', output) 153 def RemoveTestCounts(output): argument 156 output = re.sub(r'\d+ tests?, listed below', 157 '? tests, listed below', output) 158 output = re.sub(r'\d+ FAILED TESTS', [all …]
|
D | gtest_help_test.py | 62 [PROGRAM_PATH, LIST_TESTS_FLAG]).output 95 return child.exit_code, child.output 111 exit_code, output = RunWithFlag(flag) 113 self.assert_(HELP_REGEX.search(output), output) 116 self.assert_(STREAM_RESULT_TO_FLAG in output, output) 118 self.assert_(STREAM_RESULT_TO_FLAG not in output, output) 121 self.assert_(DEATH_TEST_STYLE_FLAG in output, output) 123 self.assert_(DEATH_TEST_STYLE_FLAG not in output, output) 135 exit_code, output = RunWithFlag(flag) 137 self.assert_(not HELP_REGEX.search(output), output)
|
D | gtest-options_test.cc | 70 GTEST_FLAG(output) = ""; in TEST() 75 GTEST_FLAG(output) = "xml:filename"; in TEST() 80 GTEST_FLAG(output) = ""; in TEST() 86 GTEST_FLAG(output) = "xml:filename.abc"; in TEST() 92 GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_; in TEST() 145 GTEST_FLAG(output) = ""; in TEST_F() 152 GTEST_FLAG(output) = "xml"; in TEST_F() 159 GTEST_FLAG(output) = "xml:filename.abc"; in TEST_F() 166 GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_; in TEST_F() 183 GTEST_FLAG(output) = "xml:c:\\tmp\\filename.abc"; in TEST_F() [all …]
|
D | gtest_list_tests_unittest.py | 121 capture_stderr=False).output 158 output = Run(args) 162 expected_output_re.match(output), 165 (LIST_TESTS_FLAG, flag_expression, ' '.join(args), output, 169 not EXPECTED_OUTPUT_NO_FILTER_RE.match(output), 171 (LIST_TESTS_FLAG, flag_expression, ' '.join(args), output)))
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | neq_test.cpp | 35 int output[3]; in negate0() local 36 transform((int*)input, (int*)input + 3, (int*)output, negate<int>()); in negate0() 38 CPPUNIT_ASSERT(output[0]==-1); in negate0() 39 CPPUNIT_ASSERT(output[1]==-2); in negate0() 40 CPPUNIT_ASSERT(output[2]==-3); in negate0() 47 int output [4]; in nequal0() local 48 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, not_equal_to<int>()); in nequal0() 50 CPPUNIT_ASSERT(output[0]==0); in nequal0() 51 CPPUNIT_ASSERT(output[1]==1); in nequal0() 52 CPPUNIT_ASSERT(output[2]==0); in nequal0() [all …]
|
D | logic_test.cpp | 38 bool output [4]; in logicand() local 39 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_and<bool>()); in logicand() 41 CPPUNIT_ASSERT(output[0]==false); in logicand() 42 CPPUNIT_ASSERT(output[1]==true); in logicand() 43 CPPUNIT_ASSERT(output[2]==false); in logicand() 44 CPPUNIT_ASSERT(output[3]==false); in logicand() 58 bool output [4]; in logicor() local 59 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_or<bool>()); in logicor() 61 CPPUNIT_ASSERT(output[0]==true); in logicor() 62 CPPUNIT_ASSERT(output[1]==true); in logicor() [all …]
|
D | ptr2_test.cpp | 48 int output [4]; in ptrbin1() local 49 …transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, pointer_to_binary_function<i… in ptrbin1() 51 CPPUNIT_ASSERT(output[0]==8); in ptrbin1() 52 CPPUNIT_ASSERT(output[1]==7); in ptrbin1() 53 CPPUNIT_ASSERT(output[2]==8); in ptrbin1() 54 CPPUNIT_ASSERT(output[3]==13); in ptrbin1() 61 int output [4]; in ptrbin2() local 62 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, ptr_fun(sum)); in ptrbin2() 64 CPPUNIT_ASSERT(output[0]==8); in ptrbin2() 65 CPPUNIT_ASSERT(output[1]==7); in ptrbin2() [all …]
|
D | unary_test.cpp | 78 double output[3]; in ucompos1() local 79 …transform((int*)input, (int*)input + 3, output, unary_compose<square_root, negate<int> >(square_ro… in ucompos1() 81 CPPUNIT_ASSERT(output[0]==1); in ucompos1() 82 CPPUNIT_ASSERT(output[1]==2); in ucompos1() 83 CPPUNIT_ASSERT(output[2]==4); in ucompos1() 91 double output [3]; in ucompos2() local 92 transform((int*)input, (int*)input + 3, output, compose1(square_root(), negate<int>())); in ucompos2() 94 CPPUNIT_ASSERT(output[0]==1); in ucompos2() 95 CPPUNIT_ASSERT(output[1]==2); in ucompos2() 96 CPPUNIT_ASSERT(output[2]==4); in ucompos2()
|
D | modulus_test.cpp | 33 int output [4]; in modulus0() local 35 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, modulus<int>()); in modulus0() 36 CPPUNIT_ASSERT(output[0]==2); in modulus0() 37 CPPUNIT_ASSERT(output[1]==0); in modulus0() 38 CPPUNIT_ASSERT(output[2]==10); in modulus0() 39 CPPUNIT_ASSERT(output[3]==2); in modulus0()
|
D | plusminus_test.cpp | 45 int output [4]; in minus0() local 47 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, minus<int>()); in minus0() 48 CPPUNIT_ASSERT(output[0]==0); in minus0() 49 CPPUNIT_ASSERT(output[1]==1); in minus0() 50 CPPUNIT_ASSERT(output[2]==-1); in minus0() 51 CPPUNIT_ASSERT(output[3]==5); in minus0()
|
/ndk/tests/device/test-stlport/unit/ |
D | neq_test.cpp | 35 int output[3]; in negate0() local 36 transform((int*)input, (int*)input + 3, (int*)output, negate<int>()); in negate0() 38 CPPUNIT_ASSERT(output[0]==-1); in negate0() 39 CPPUNIT_ASSERT(output[1]==-2); in negate0() 40 CPPUNIT_ASSERT(output[2]==-3); in negate0() 47 int output [4]; in nequal0() local 48 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, not_equal_to<int>()); in nequal0() 50 CPPUNIT_ASSERT(output[0]==0); in nequal0() 51 CPPUNIT_ASSERT(output[1]==1); in nequal0() 52 CPPUNIT_ASSERT(output[2]==0); in nequal0() [all …]
|
D | logic_test.cpp | 38 bool output [4]; in logicand() local 39 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_and<bool>()); in logicand() 41 CPPUNIT_ASSERT(output[0]==false); in logicand() 42 CPPUNIT_ASSERT(output[1]==true); in logicand() 43 CPPUNIT_ASSERT(output[2]==false); in logicand() 44 CPPUNIT_ASSERT(output[3]==false); in logicand() 58 bool output [4]; in logicor() local 59 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_or<bool>()); in logicor() 61 CPPUNIT_ASSERT(output[0]==true); in logicor() 62 CPPUNIT_ASSERT(output[1]==true); in logicor() [all …]
|
D | ptr2_test.cpp | 48 int output [4]; in ptrbin1() local 49 …transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, pointer_to_binary_function<i… in ptrbin1() 51 CPPUNIT_ASSERT(output[0]==8); in ptrbin1() 52 CPPUNIT_ASSERT(output[1]==7); in ptrbin1() 53 CPPUNIT_ASSERT(output[2]==8); in ptrbin1() 54 CPPUNIT_ASSERT(output[3]==13); in ptrbin1() 61 int output [4]; in ptrbin2() local 62 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, ptr_fun(sum)); in ptrbin2() 64 CPPUNIT_ASSERT(output[0]==8); in ptrbin2() 65 CPPUNIT_ASSERT(output[1]==7); in ptrbin2() [all …]
|
D | unary_test.cpp | 78 double output[3]; in ucompos1() local 79 …transform((int*)input, (int*)input + 3, output, unary_compose<square_root, negate<int> >(square_ro… in ucompos1() 81 CPPUNIT_ASSERT(output[0]==1); in ucompos1() 82 CPPUNIT_ASSERT(output[1]==2); in ucompos1() 83 CPPUNIT_ASSERT(output[2]==4); in ucompos1() 91 double output [3]; in ucompos2() local 92 transform((int*)input, (int*)input + 3, output, compose1(square_root(), negate<int>())); in ucompos2() 94 CPPUNIT_ASSERT(output[0]==1); in ucompos2() 95 CPPUNIT_ASSERT(output[1]==2); in ucompos2() 96 CPPUNIT_ASSERT(output[2]==4); in ucompos2()
|
D | modulus_test.cpp | 33 int output [4]; in modulus0() local 35 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, modulus<int>()); in modulus0() 36 CPPUNIT_ASSERT(output[0]==2); in modulus0() 37 CPPUNIT_ASSERT(output[1]==0); in modulus0() 38 CPPUNIT_ASSERT(output[2]==10); in modulus0() 39 CPPUNIT_ASSERT(output[3]==2); in modulus0()
|
D | plusminus_test.cpp | 45 int output [4]; in minus0() local 47 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, minus<int>()); in minus0() 48 CPPUNIT_ASSERT(output[0]==0); in minus0() 49 CPPUNIT_ASSERT(output[1]==1); in minus0() 50 CPPUNIT_ASSERT(output[2]==-1); in minus0() 51 CPPUNIT_ASSERT(output[3]==5); in minus0()
|
/ndk/tests/build/ndk-out/ |
D | build.sh | 2 rm -rf obj output-dir 3 export NDK_OUT=output-dir 9 if [ ! -d output-dir ]; then 13 rm -rf output-dir
|
/ndk/tests/device/test-libc++-static-full/ |
D | DATA | 5 …___ifstream.cons___move sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 6 …___ifstream.cons___pointer sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 7 …___ifstream.cons___string sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 9 …lebuf.virtuals___pbackfail sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 10 …lebuf.virtuals___underflow sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 12 …eam.members___close sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 13 …eam.members___open_pointer sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 14 …eam.members___open_string sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 15 …eam.members___rdbuf sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 17 …am.assign___member_swap sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… [all …]
|
/ndk/tests/device/test-libc++-shared-full/ |
D | DATA | 5 …___ifstream.cons___move sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 6 …___ifstream.cons___pointer sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 7 …___ifstream.cons___string sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 9 …lebuf.virtuals___pbackfail sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 10 …lebuf.virtuals___underflow sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 12 …eam.members___close sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 13 …eam.members___open_pointer sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 14 …eam.members___open_string sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 15 …eam.members___rdbuf sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… 17 …am.assign___member_swap sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstre… [all …]
|
/ndk/tests/abcc/jni/host/ |
D | main.cpp | 24 … std::string &input, std::string &output, std::string &platform, bool &savetemps) { in parseArguments() argument 47 output = argv[idx++]; in parseArguments() 80 std::string output; in main() local 87 abi, ndk_dir, sysroot, input, output, platform, savetemps) != 0) in main() 95 if (output[0] != '/') in main() 96 output = cwd + "/" + output; in main() 103 if (abi.empty() || input.empty() || output.empty() || toolchain_bin.empty() || platform.empty()) { in main() 122 input, output, in main() 126 input, output, in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.sort/partial.sort.copy/ |
D | partial_sort_copy.pass.cpp | 30 int* output = new int[M]; in test_larger_sorts() local 34 int* r = std::partial_sort_copy(Iter(input), Iter(input+N), output, output+M); in test_larger_sorts() 35 int* e = output + std::min(N, M); in test_larger_sorts() 38 for (int* x = output; x < e; ++x, ++i) in test_larger_sorts() 40 delete [] output; in test_larger_sorts()
|
D | partial_sort_copy_comp.pass.cpp | 33 int* output = new int[M]; in test_larger_sorts() local 37 int* r = std::partial_sort_copy(Iter(input), Iter(input+N), output, output+M, in test_larger_sorts() 39 int* e = output + std::min(N, M); in test_larger_sorts() 42 for (int* x = output; x < e; ++x, ++i) in test_larger_sorts() 44 delete [] output; in test_larger_sorts()
|
/ndk/sources/host-tools/make-3.81/tests/scripts/options/ |
D | dash-f | 8 ."rules in one call to make and checks that the output\n" 19 print MAKEFILE "\t\@echo This is the output from the original makefile\n"; 28 print MAKEFILE "\t\@echo This is the output from makefile 2\n"; 34 print MAKEFILE "\t\@echo This is the output from makefile 3\n"; 39 $answer = "This is the output from the original makefile\n"; 48 $answer = "This is the output from makefile 2\n"; 57 $answer = "This is the output from makefile 3\n"; 68 $answer = "This is the output from makefile 2\n"; 69 $answer .= "This is the output from the original makefile\n"; 70 $answer .= "This is the output from makefile 3\n";
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
D | lexical_cast.hpp | 1610 bool shr_unsigned(Type& output) in shr_unsigned() argument 1627 bool const succeed = lcast_ret_unsigned<Traits>(output, start, finish); in shr_unsigned() 1635 if (has_minus) output = static_cast<Type>(-output); in shr_unsigned() 1645 bool shr_signed(Type& output) in shr_signed() argument 1675 output = -out_tmp; in shr_signed() 1684 output = out_tmp; in shr_signed() 1690 bool shr_using_base_class(InputStreamable& output) in shr_using_base_class() argument 1721 return stream >> output && in shr_using_base_class() 1735 inline bool shr_xchar(T& output) in shr_xchar() argument 1744 output = static_cast<T>(out); in shr_xchar() [all …]
|