HomeSort by relevance Sort by last modified time
    Searched defs:test (Results 326 - 350 of 4552) sorted by null

<<11121314151617181920>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.construct/
ptr.pass.cpp 21 test(const CharT* p, unsigned mc) function
30 test("\\(a\\)", 0);
31 test("\\(a[bc]\\)", 0);
32 test("\\(a\\([bc]\\)\\)", 0);
33 test("(a([bc]))", 2);
ptr_flg.pass.cpp 21 test(const CharT* p, std::regex_constants::syntax_option_type f, unsigned mc) function
30 test("\\(a\\)", std::regex_constants::basic, 1);
31 test("\\(a[bc]\\)", std::regex_constants::basic, 1);
32 test("\\(a\\([bc]\\)\\)", std::regex_constants::basic, 2);
33 test("(a([bc]))", std::regex_constants::basic, 0);
35 test("\\(a\\)", std::regex_constants::extended, 0);
36 test("\\(a[bc]\\)", std::regex_constants::extended, 0);
37 test("\\(a\\([bc]\\)\\)", std::regex_constants::extended, 0);
38 test("(a([bc]))", std::regex_constants::extended, 2);
40 test("\\(a\\)", std::regex_constants::ECMAScript, 0)
    [all...]
ptr_size_flg.pass.cpp 21 test(const CharT* p, std::size_t len, std::regex_constants::syntax_option_type f, function
31 test("\\(a\\)", 5, std::regex_constants::basic, 1);
32 test("\\(a[bc]\\)", 9, std::regex_constants::basic, 1);
33 test("\\(a\\([bc]\\)\\)", 13, std::regex_constants::basic, 2);
34 test("(a([bc]))", 9, std::regex_constants::basic, 0);
36 test("\\(a\\)", 5, std::regex_constants::extended, 0);
37 test("\\(a[bc]\\)", 9, std::regex_constants::extended, 0);
38 test("\\(a\\([bc]\\)\\)", 13, std::regex_constants::extended, 0);
39 test("(a([bc]))", 9, std::regex_constants::extended, 2);
41 test("\\(a\\)", 5, std::regex_constants::ECMAScript, 0)
    [all...]
string.pass.cpp 22 test(const String& p, unsigned mc) function
31 test(std::string("\\(a\\)"), 0);
32 test(std::string("\\(a[bc]\\)"), 0);
33 test(std::string("\\(a\\([bc]\\)\\)"), 0);
34 test(std::string("(a([bc]))"), 2);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.all/
get_allocator.pass.cpp 23 test(const Allocator& a) function
33 test<char>(test_allocator<std::sub_match<const char*> >(3));
34 test<wchar_t>(test_allocator<std::sub_match<const wchar_t*> >(3));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.const/
allocator.pass.cpp 23 test(const Allocator& a) function
33 test<char>(test_allocator<std::sub_match<const char*> >(3));
34 test<wchar_t>(test_allocator<std::sub_match<const wchar_t*> >(3));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_insert/
iter_char.pass.cpp 26 test(S& s, typename S::const_iterator p, typename S::value_type c, S expected) function
44 test(s, s.begin(), '1', S("1"));
45 test(s, s.begin(), 'a', S("a1"));
46 test(s, s.end(), 'b', S("a1b"));
47 test(s, s.end()-1, 'c', S("a1cb"));
48 test(s, s.end()-2, 'd', S("a1dcb"));
49 test(s, s.end()-3, '2', S("a12dcb"));
50 test(s, s.end()-4, '3', S("a132dcb"));
51 test(s, s.end()-5, '4', S("a1432dcb"));
52 test(s, s.begin()+1, '5', S("a51432dcb"))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.tag/
allocator_arg.pass.cpp 17 void test(std::allocator_arg_t) {} function
21 test(std::allocator_arg);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.inplace/
in_place_t.pass.cpp 26 test(const in_place_t&) function
40 static_assert(test(in_place) == 3, "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.nullopt/
nullopt_t.pass.cpp 26 test(const nullopt_t&) function
41 static_assert(test(nullopt) == 3, "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.object/
types.pass.cpp 28 test() function
38 test<optional<int>, int>();
39 test<optional<const int>, const int>();
40 test<optional<double>, double>();
41 test<optional<const double>, const double>();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/ratio/ratio.ratio/
ratio.pass.cpp 10 // test ratio: The static data members num and den shall have thcommon
16 void test() function
24 test<1, 1, 1, 1>();
25 test<1, 10, 1, 10>();
26 test<10, 10, 1, 1>();
27 test<10, 1, 10, 1>();
28 test<12, 4, 3, 1>();
29 test<12, -4, -3, 1>();
30 test<-12, 4, -3, 1>();
31 test<-12, -4, 3, 1>()
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.cons/
rep.pass.cpp 24 test(R r) function
36 test<std::chrono::duration<int> >(5);
37 test<std::chrono::duration<int, std::ratio<3, 2> > >(5);
38 test<std::chrono::duration<Rep, std::ratio<3, 2> > >(Rep(3));
39 test<std::chrono::duration<double, std::ratio<2, 3> > >(5.5);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.helper/
tuple_element.pass.cpp 25 void test() function
41 test<std::tuple<int>, 0, int>();
42 test<std::tuple<char, int>, 0, char>();
43 test<std::tuple<char, int>, 1, int>();
44 test<std::tuple<int*, char, int>, 0, int*>();
45 test<std::tuple<int*, char, int>, 1, char>();
46 test<std::tuple<int*, char, int>, 2, int>();
tuple_size.pass.cpp 22 void test() function
36 test<std::tuple<>, 0>();
37 test<std::tuple<int>, 1>();
38 test<std::tuple<char, int>, 2>();
39 test<std::tuple<char, char*, int>, 3>();
  /ndk/tests/device/test-gnustl-full/unit/
_template.cpp 13 class Test : public CPPUNIT_NS::TestCase
15 CPPUNIT_TEST_SUITE(Test);
16 CPPUNIT_TEST(test);
20 void test();
23 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
28 void Test::test() function in class:Test
  /ndk/tests/device/test-stlport/unit/
_template.cpp 13 class Test : public CPPUNIT_NS::TestCase
15 CPPUNIT_TEST_SUITE(Test);
16 CPPUNIT_TEST(test);
20 void test();
23 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
28 void Test::test() function in class:Test
  /external/v8/test/mjsunit/regress/
regress-crbug-134609.js 43 function test() { function
52 assertEquals("good", test());
53 assertEquals("good", test());
54 %OptimizeFunctionOnNextCall(test);
55 assertEquals("good", test());
57 // At this point, foo should have been inlined into test. Let's deopt...
59 assertEquals("good", test());
  /external/v8/test/mjsunit/compiler/
escape-analysis-representation.js 49 function test(value_track, value_break) { function
71 test(values[i], values[j])
math-floor-local.js 30 // Test inlining of Math.floor when assigned to a local.
34 var test = new Function('n',
37 assertEquals(expect, test(input));
38 assertEquals(expect, test(input));
39 assertEquals(expect, test(input));
40 %OptimizeFunctionOnNextCall(test);
41 assertEquals(expect, test(input));
49 function test() { function
142 // Test in a loop to cover the custom IC and GC-related issues.
144 test();
    [all...]
  /external/v8/test/mjsunit/
math-floor-part1.js 33 var test = new Function('n',
35 assertEquals(expect, test(input));
36 assertEquals(expect, test(input));
37 assertEquals(expect, test(input));
38 %OptimizeFunctionOnNextCall(test);
39 assertEquals(expect, test(input));
56 function test() { function
98 // Test in a loop to cover the custom IC and GC-related issues.
100 test();
  /art/test/005-annotations/src/android/test/
AnnoSimplePackage1.java 1 package android.test;
  /art/test/005-annotations/src/android/test/anno/
AnnoArrayField.java 1 package android.test.anno;
AnnoFancyField.java 1 package android.test.anno;
AnnoSimpleConstructor.java 1 package android.test.anno;

Completed in 655 milliseconds

<<11121314151617181920>>