Searched refs:output (Results 1 - 25 of 68) sorted by relevance

123

/ndk/tests/device/test-gnustl-full/unit/
H A Dneq_test.cpp35 int output[3]; local
36 transform((int*)input, (int*)input + 3, (int*)output, negate<int>());
38 CPPUNIT_ASSERT(output[0]==-1);
39 CPPUNIT_ASSERT(output[1]==-2);
40 CPPUNIT_ASSERT(output[2]==-3);
47 int output [4]; local
48 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, not_equal_to<int>());
50 CPPUNIT_ASSERT(output[0]==0);
51 CPPUNIT_ASSERT(output[1]==1);
52 CPPUNIT_ASSERT(output[
[all...]
H A Dlogic_test.cpp38 bool output [4]; local
39 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_and<bool>());
41 CPPUNIT_ASSERT(output[0]==false);
42 CPPUNIT_ASSERT(output[1]==true);
43 CPPUNIT_ASSERT(output[2]==false);
44 CPPUNIT_ASSERT(output[3]==false);
58 bool output [4]; local
59 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_or<bool>());
61 CPPUNIT_ASSERT(output[0]==true);
62 CPPUNIT_ASSERT(output[
[all...]
H A Dmodulus_test.cpp33 int output [4]; local
35 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, modulus<int>());
36 CPPUNIT_ASSERT(output[0]==2);
37 CPPUNIT_ASSERT(output[1]==0);
38 CPPUNIT_ASSERT(output[2]==10);
39 CPPUNIT_ASSERT(output[3]==2);
H A Dplusminus_test.cpp45 int output [4]; local
47 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, minus<int>());
48 CPPUNIT_ASSERT(output[0]==0);
49 CPPUNIT_ASSERT(output[1]==1);
50 CPPUNIT_ASSERT(output[2]==-1);
51 CPPUNIT_ASSERT(output[3]==5);
H A Dptr2_test.cpp48 int output [4]; local
49 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, pointer_to_binary_function<int, int, int>(sum));
51 CPPUNIT_ASSERT(output[0]==8);
52 CPPUNIT_ASSERT(output[1]==7);
53 CPPUNIT_ASSERT(output[2]==8);
54 CPPUNIT_ASSERT(output[3]==13);
61 int output [4]; local
62 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, ptr_fun(sum));
64 CPPUNIT_ASSERT(output[0]==8);
65 CPPUNIT_ASSERT(output[
[all...]
H A Dunary_test.cpp78 double output[3]; local
79 transform((int*)input, (int*)input + 3, output, unary_compose<square_root, negate<int> >(square_root(), negate<int>()));
81 CPPUNIT_ASSERT(output[0]==1);
82 CPPUNIT_ASSERT(output[1]==2);
83 CPPUNIT_ASSERT(output[2]==4);
91 double output [3]; local
92 transform((int*)input, (int*)input + 3, output, compose1(square_root(), negate<int>()));
94 CPPUNIT_ASSERT(output[0]==1);
95 CPPUNIT_ASSERT(output[1]==2);
96 CPPUNIT_ASSERT(output[
[all...]
/ndk/tests/device/test-stlport/unit/
H A Dneq_test.cpp35 int output[3]; local
36 transform((int*)input, (int*)input + 3, (int*)output, negate<int>());
38 CPPUNIT_ASSERT(output[0]==-1);
39 CPPUNIT_ASSERT(output[1]==-2);
40 CPPUNIT_ASSERT(output[2]==-3);
47 int output [4]; local
48 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, not_equal_to<int>());
50 CPPUNIT_ASSERT(output[0]==0);
51 CPPUNIT_ASSERT(output[1]==1);
52 CPPUNIT_ASSERT(output[
[all...]
H A Dlogic_test.cpp38 bool output [4]; local
39 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_and<bool>());
41 CPPUNIT_ASSERT(output[0]==false);
42 CPPUNIT_ASSERT(output[1]==true);
43 CPPUNIT_ASSERT(output[2]==false);
44 CPPUNIT_ASSERT(output[3]==false);
58 bool output [4]; local
59 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_or<bool>());
61 CPPUNIT_ASSERT(output[0]==true);
62 CPPUNIT_ASSERT(output[
[all...]
H A Dmodulus_test.cpp33 int output [4]; local
35 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, modulus<int>());
36 CPPUNIT_ASSERT(output[0]==2);
37 CPPUNIT_ASSERT(output[1]==0);
38 CPPUNIT_ASSERT(output[2]==10);
39 CPPUNIT_ASSERT(output[3]==2);
H A Dplusminus_test.cpp45 int output [4]; local
47 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, minus<int>());
48 CPPUNIT_ASSERT(output[0]==0);
49 CPPUNIT_ASSERT(output[1]==1);
50 CPPUNIT_ASSERT(output[2]==-1);
51 CPPUNIT_ASSERT(output[3]==5);
H A Dptr2_test.cpp48 int output [4]; local
49 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, pointer_to_binary_function<int, int, int>(sum));
51 CPPUNIT_ASSERT(output[0]==8);
52 CPPUNIT_ASSERT(output[1]==7);
53 CPPUNIT_ASSERT(output[2]==8);
54 CPPUNIT_ASSERT(output[3]==13);
61 int output [4]; local
62 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, ptr_fun(sum));
64 CPPUNIT_ASSERT(output[0]==8);
65 CPPUNIT_ASSERT(output[
[all...]
H A Dunary_test.cpp78 double output[3]; local
79 transform((int*)input, (int*)input + 3, output, unary_compose<square_root, negate<int> >(square_root(), negate<int>()));
81 CPPUNIT_ASSERT(output[0]==1);
82 CPPUNIT_ASSERT(output[1]==2);
83 CPPUNIT_ASSERT(output[2]==4);
91 double output [3]; local
92 transform((int*)input, (int*)input + 3, output, compose1(square_root(), negate<int>()));
94 CPPUNIT_ASSERT(output[0]==1);
95 CPPUNIT_ASSERT(output[1]==2);
96 CPPUNIT_ASSERT(output[
[all...]
/ndk/tests/build/ndk-out/
H A Dbuild.sh2 rm -rf obj output-dir
3 export NDK_OUT=output-dir
9 if [ ! -d output-dir ]; then
10 echo "FAILURE: 'output-dir' should have been created by ndk-build!"
13 rm -rf output-dir
/ndk/sources/third_party/googletest/googletest/test/
H A Dgtest_output_test.py32 """Tests the text output of Google C++ Testing Framework.
89 """Removes all file location info from a Google Test program's output.
92 test_output: the output of a Google Test program.
95 output with all file location info (in the form of
104 def RemoveStackTraceDetails(output):
105 """Removes all stack traces from a Google Test program's output."""
109 'Stack trace: (omitted)\n\n', output)
112 def RemoveStackTraces(output):
113 """Removes all traces of stack traces from a Google Test program's output."""
116 return re.sub(r'Stack trace:(.|\n)*?\n\n', '', output)
[all...]
H A Dgtest_help_test.py62 [PROGRAM_PATH, LIST_TESTS_FLAG]).output
74 FLAG_PREFIX + r'output=.*' +
85 the exit code and the text output as a tuple.
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, outpu
[all...]
H A Dgtest_list_tests_unittest.py54 # The expected output when running gtest_list_tests_unittest_ with
98 # The expected output when running gtest_list_tests_unittest_ with
121 capture_stderr=False).output
137 output after running command;
158 output = Run(args)
162 expected_output_re.match(output),
163 ('when %s is %s, the output of "%s" is "%s",\n'
165 (LIST_TESTS_FLAG, flag_expression, ' '.join(args), output,
169 not EXPECTED_OUTPUT_NO_FILTER_RE.match(output),
170 ('when %s is %s, the output o
[all...]
H A Dgtest-options_test.cc70 GTEST_FLAG(output) = "";
75 GTEST_FLAG(output) = "xml:filename";
80 GTEST_FLAG(output) = "";
86 GTEST_FLAG(output) = "xml:filename.abc";
92 GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_;
145 GTEST_FLAG(output) = "";
152 GTEST_FLAG(output) = "xml";
159 GTEST_FLAG(output) = "xml:filename.abc";
166 GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_;
183 GTEST_FLAG(output)
[all...]
H A Dgtest_catch_exceptions_test.py35 Google Test) and verifies their output.
60 TEST_LIST = gtest_test_utils.Subprocess([EXE_PATH, LIST_TESTS_FLAG]).output
65 BINARY_OUTPUT = gtest_test_utils.Subprocess([EXE_PATH]).output
67 EX_BINARY_OUTPUT = gtest_test_utils.Subprocess([EX_EXE_PATH]).output
215 FITLER_OUT_SEH_TESTS_FLAG]).output
H A Dgtest_uninitialized_test.py55 """Runs the given command and verifies its exit code and output."""
61 Assert('InitGoogleTest' in p.output)
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/
H A Dxsgetn.pass.cpp38 char output[sizeof(input)] = {0}; local
39 assert(t.sgetn(output, 10) == 7);
40 assert(strcmp(input, output) == 0);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.sort/partial.sort.copy/
H A Dpartial_sort_copy.pass.cpp30 int* output = new int[M]; local
34 int* r = std::partial_sort_copy(Iter(input), Iter(input+N), output, output+M);
35 int* e = output + std::min(N, M);
38 for (int* x = output; x < e; ++x, ++i)
40 delete [] output;
H A Dpartial_sort_copy_comp.pass.cpp33 int* output = new int[M]; local
37 int* r = std::partial_sort_copy(Iter(input), Iter(input+N), output, output+M,
39 int* e = output + std::min(N, M);
42 for (int* x = output; x < e; ++x, ++i)
44 delete [] output;
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/
H A Dnumeric_cast_traits.hpp26 #pragma wave option(preserve: 2, line: 0, output: "preprocessed/numeric_cast_traits_common.hpp")
67 #pragma wave option(output: null)
76 #pragma wave option(preserve: 2, line: 0, output: "preprocessed/numeric_cast_traits_long_long.hpp")
102 #pragma wave option(output: null)
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/output/
H A Dplain_report_formatter.hpp30 namespace output { namespace in namespace:boost::unit_test
52 } // namespace output
H A Dxml_report_formatter.hpp30 namespace output { namespace in namespace:boost::unit_test
48 } // namespace output

Completed in 224 milliseconds

123