Home
last modified time | relevance | path

Searched refs:basic (Results 1 – 25 of 29) sorted by relevance

12

/ndk/tests/device/test-stlport_shared-exception/jni/
Dref9.cpp4 struct basic { struct
7 basic() : refcount(0) {} in basic() argument
11 basic *bp;
13 ex(const basic &);
15 void construct_from_basic(const basic &);
18 ex basic::eval() const { in eval()
22 inline ex::ex(const basic &b) { construct_from_basic (b); } in ex()
24 void ex::construct_from_basic(const basic &b) { in construct_from_basic()
30 ex pow() { return basic(); } in pow()
/ndk/tests/device/test-stlport_static-exception/jni/
Dref9.cpp4 struct basic { struct
7 basic() : refcount(0) {} in basic() argument
11 basic *bp;
13 ex(const basic &);
15 void construct_from_basic(const basic &);
18 ex basic::eval() const { in eval()
22 inline ex::ex(const basic &b) { construct_from_basic (b); } in ex()
24 void ex::construct_from_basic(const basic &b) { in construct_from_basic()
30 ex pow() { return basic(); } in pow()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.match/
Dbasic.pass.cpp35 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::basic))); in main()
51 assert(std::regex_match(s, m, std::regex("ab", std::regex_constants::basic))); in main()
66 assert(!std::regex_match(s, m, std::regex("ba", std::regex_constants::basic))); in main()
73 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::basic))); in main()
79 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::basic), in main()
86 assert(!std::regex_match(s, m, std::regex("bc", std::regex_constants::basic))); in main()
92 assert(std::regex_match(s, m, std::regex("ab*c", std::regex_constants::basic))); in main()
107 assert(std::regex_match(s, m, std::regex("\\(ab\\)*c", std::regex_constants::basic))); in main()
126 std::regex_constants::basic))); in main()
132 assert(std::regex_match(s, m, std::regex("^abc", std::regex_constants::basic))); in main()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.search/
Dbasic.pass.cpp35 assert(std::regex_search(s, m, std::regex("a", std::regex_constants::basic))); in main()
51 assert(std::regex_search(s, m, std::regex("ab", std::regex_constants::basic))); in main()
66 assert(!std::regex_search(s, m, std::regex("ba", std::regex_constants::basic))); in main()
73 assert(std::regex_search(s, m, std::regex("ab", std::regex_constants::basic))); in main()
88 assert(!std::regex_search(s, m, std::regex("ab", std::regex_constants::basic), in main()
95 assert(std::regex_search(s, m, std::regex("bc", std::regex_constants::basic))); in main()
110 assert(std::regex_search(s, m, std::regex("ab*c", std::regex_constants::basic))); in main()
125 assert(std::regex_search(s, m, std::regex("\\(ab\\)*c", std::regex_constants::basic))); in main()
144 std::regex_constants::basic))); in main()
165 assert(std::regex_search(s, m, std::regex("^abc", std::regex_constants::basic))); in main()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.const/re.synopt/
Dsyntax_option_type.pass.cpp42 assert(std::regex_constants::basic != 0); in main()
52 assert((std::regex_constants::icase & std::regex_constants::basic) == 0); in main()
61 assert((std::regex_constants::nosubs & std::regex_constants::basic) == 0); in main()
69 assert((std::regex_constants::optimize & std::regex_constants::basic) == 0); in main()
76 assert((std::regex_constants::collate & std::regex_constants::basic) == 0); in main()
82 assert((std::regex_constants::ECMAScript & std::regex_constants::basic) == 0); in main()
88 assert((std::regex_constants::basic & std::regex_constants::extended) == 0); in main()
89 assert((std::regex_constants::basic & std::regex_constants::awk) == 0); in main()
90 assert((std::regex_constants::basic & std::regex_constants::grep) == 0); in main()
91 assert((std::regex_constants::basic & std::regex_constants::egrep) == 0); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.construct/
Dptr_size_flg.pass.cpp31 test("\\(a\\)", 5, std::regex_constants::basic, 1); in main()
32 test("\\(a[bc]\\)", 9, std::regex_constants::basic, 1); in main()
33 test("\\(a\\([bc]\\)\\)", 13, std::regex_constants::basic, 2); in main()
34 test("(a([bc]))", 9, std::regex_constants::basic, 0); in main()
Dptr_flg.pass.cpp30 test("\\(a\\)", std::regex_constants::basic, 1); in main()
31 test("\\(a[bc]\\)", std::regex_constants::basic, 1); in main()
32 test("\\(a\\([bc]\\)\\)", std::regex_constants::basic, 2); in main()
33 test("(a([bc]))", std::regex_constants::basic, 0); in main()
Dil_flg.pass.cpp40 test({'\\', '(', 'a', '\\', ')'}, std::regex_constants::basic, 1); in main()
41 test({'\\', '(', 'a', '[', 'b', 'c', ']', '\\', ')'}, std::regex_constants::basic, 1); in main()
42 …', '(', 'a', '\\', '(', '[', 'b', 'c', ']', '\\', ')', '\\', ')'}, std::regex_constants::basic, 2); in main()
43 test({'(', 'a', '(', '[', 'b', 'c', ']', ')', ')'}, std::regex_constants::basic, 0); in main()
Dstring_flg.pass.cpp32 test(std::string("\\(a\\)"), std::regex_constants::basic, 1); in main()
33 test(std::string("\\(a[bc]\\)"), std::regex_constants::basic, 1); in main()
34 test(std::string("\\(a\\([bc]\\)\\)"), std::regex_constants::basic, 2); in main()
35 test(std::string("(a([bc]))"), std::regex_constants::basic, 0); in main()
Diter_iter_flg.pass.cpp40 test(F(s1.begin()), F(s1.end()), std::regex_constants::basic, 1); in main()
41 test(F(s2.begin()), F(s2.end()), std::regex_constants::basic, 1); in main()
42 test(F(s3.begin()), F(s3.end()), std::regex_constants::basic, 2); in main()
43 test(F(s4.begin()), F(s4.end()), std::regex_constants::basic, 0); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.const/
Dconstants.pass.cpp44 static_assert((BR::basic == std::regex_constants::basic), ""); in test()
54 where(BR::basic); in test()
/ndk/sources/cxx-stl/llvm-libc++/patches.android/
D0010-Add-enough-symlink-to-rename-file-path-with-replace-.patch24 test/strings/basic.string/string.nonmembers/string_op!EQ | 1 +
25 test/strings/basic.string/string.nonmembers/string_operatorEQEQ | 1 +
26 test/strings/basic.string/string.nonmembers/string_opgtEQ | 1 +
27 test/strings/basic.string/string.nonmembers/string_opltEQ | 1 +
53 create mode 120000 test/strings/basic.string/string.nonmembers/string_op!EQ
54 create mode 120000 test/strings/basic.string/string.nonmembers/string_operatorEQEQ
55 create mode 120000 test/strings/basic.string/string.nonmembers/string_opgtEQ
56 create mode 120000 test/strings/basic.string/string.nonmembers/string_opltEQ
187 diff --git a/test/strings/basic.string/string.nonmembers/string_op!EQ b/test/strings/basic.string/s…
191 +++ b/test/strings/basic.string/string.nonmembers/string_op!EQ
[all …]
D0013-temp-collective-ndk-hackathon-fixes.patch28 test/re/re.alg/re.alg.match/basic.pass.cpp | 14 ++++++++
32 test/re/re.alg/re.alg.search/basic.pass.cpp | 14 ++++++++
736 diff --git a/test/re/re.alg/re.alg.match/basic.pass.cpp b/test/re/re.alg/re.alg.match/basic.pass.cpp
738 --- a/test/re/re.alg/re.alg.match/basic.pass.cpp
739 +++ b/test/re/re.alg/re.alg.match/basic.pass.cpp
741 std::regex_constants::basic)));
762 std::regex_constants::basic)));
920 diff --git a/test/re/re.alg/re.alg.search/basic.pass.cpp b/test/re/re.alg/re.alg.search/basic.pass.…
922 --- a/test/re/re.alg/re.alg.search/basic.pass.cpp
923 +++ b/test/re/re.alg/re.alg.search/basic.pass.cpp
[all …]
/ndk/tests/device/test-basic-rtti/
DREADME1 This test is meant to test the most basic level of RTTI support
/ndk/tests/device/test-basic-exceptions/
DREADME1 This test is meant to test the most basic level of exception support
/ndk/sources/host-tools/make-3.81/tests/scripts/variables/
DDEFAULT_GOAL7 # Test #1: basic logic.
DMAKE_RESTARTS5 # Test basic capability
/ndk/tests/device/test-libc++-static-full/jni/
DAndroid.mk54 strings/basic.string/string.ops/string_compare/size_size_string_size_size \
1677 $(call gen-test, input.output/iostreams.base/ios/basic.ios.cons/ctor_streambuf)
1678 $(call gen-test, input.output/iostreams.base/ios/basic.ios.members/copyfmt)
1679 $(call gen-test, input.output/iostreams.base/ios/basic.ios.members/fill_char_type)
1680 $(call gen-test, input.output/iostreams.base/ios/basic.ios.members/fill)
1681 $(call gen-test, input.output/iostreams.base/ios/basic.ios.members/imbue)
1682 $(call gen-test, input.output/iostreams.base/ios/basic.ios.members/move)
1683 $(call gen-test, input.output/iostreams.base/ios/basic.ios.members/narow)
1684 $(call gen-test, input.output/iostreams.base/ios/basic.ios.members/rdbuf)
1685 $(call gen-test, input.output/iostreams.base/ios/basic.ios.members/rdbuf_streambuf)
[all …]
/ndk/tests/device/test-libc++-shared-full/jni/
DAndroid.mk63 strings/basic.string/string.ops/string_compare/size_size_string_size_size \
1686 $(call gen-test, input.output/iostreams.base/ios/basic.ios.cons/ctor_streambuf)
1687 $(call gen-test, input.output/iostreams.base/ios/basic.ios.members/copyfmt)
1688 $(call gen-test, input.output/iostreams.base/ios/basic.ios.members/fill_char_type)
1689 $(call gen-test, input.output/iostreams.base/ios/basic.ios.members/fill)
1690 $(call gen-test, input.output/iostreams.base/ios/basic.ios.members/imbue)
1691 $(call gen-test, input.output/iostreams.base/ios/basic.ios.members/move)
1692 $(call gen-test, input.output/iostreams.base/ios/basic.ios.members/narow)
1693 $(call gen-test, input.output/iostreams.base/ios/basic.ios.members/rdbuf)
1694 $(call gen-test, input.output/iostreams.base/ios/basic.ios.members/rdbuf_streambuf)
[all …]
/ndk/sources/host-tools/make-3.81/tests/scripts/features/
Drecursion6 # Test some basic recursion.
/ndk/sources/host-tools/make-3.81/config/
Dlib-prefix.m419 dnl to access previously installed libraries. The basic assumption is that
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dregex32 basic = unspecified,
139 static constexpr regex_constants::syntax_option_type basic = regex_constants::basic;
786 basic = 1 << 4,
2483 static const regex_constants::syntax_option_type basic = regex_constants::basic;
2907 const regex_constants::syntax_option_type basic_regex<_CharT, _Traits>::basic;
3005 case basic:
/ndk/sources/host-tools/make-3.81/tests/
DChangeLog319 * test_driver.pl (compare_output): If a basic comparison of the
/ndk/sources/host-tools/make-3.81/
DNEWS756 for the Texinfo manual, but it documents the basic functionality and the
/ndk/sources/host-tools/make-3.81/doc/
Dmake-stds.texi260 basic command for installing a file into the system.

12