HomeSort by relevance Sort by last modified time
    Searched refs:ECMAScript (Results 26 - 50 of 83) sorted by null

12 3 4

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.construct/
ptr_size_flg.pass.cpp 41 test("\\(a\\)", 5, std::regex_constants::ECMAScript, 0);
42 test("\\(a[bc]\\)", 9, std::regex_constants::ECMAScript, 0);
43 test("\\(a\\([bc]\\)\\)", 13, std::regex_constants::ECMAScript, 0);
44 test("(a([bc]))", 9, std::regex_constants::ECMAScript, 2);
il_flg.pass.cpp 15 // flag_type f = regex_constants::ECMAScript);
50 test({'\\', '(', 'a', '\\', ')'}, std::regex_constants::ECMAScript, 0);
51 test({'\\', '(', 'a', '[', 'b', 'c', ']', '\\', ')'}, std::regex_constants::ECMAScript, 0);
52 test({'\\', '(', 'a', '\\', '(', '[', 'b', 'c', ']', '\\', ')', '\\', ')'}, std::regex_constants::ECMAScript, 0);
53 test({'(', 'a', '(', '[', 'b', 'c', ']', ')', ')'}, std::regex_constants::ECMAScript, 2);
string.pass.cpp 25 assert(r.flags() == std::regex_constants::ECMAScript);
string_flg.pass.cpp 16 // flag_type f = regex_constants::ECMAScript);
42 test(std::string("\\(a\\)"), std::regex_constants::ECMAScript, 0);
43 test(std::string("\\(a[bc]\\)"), std::regex_constants::ECMAScript, 0);
44 test(std::string("\\(a\\([bc]\\)\\)"), std::regex_constants::ECMAScript, 0);
45 test(std::string("(a([bc]))"), std::regex_constants::ECMAScript, 2);
iter_iter.pass.cpp 27 assert(r.flags() == std::regex_constants::ECMAScript);
iter_iter_flg.pass.cpp 16 // flag_type f = regex_constants::ECMAScript);
50 test(F(s1.begin()), F(s1.end()), std::regex_constants::ECMAScript, 0);
51 test(F(s2.begin()), F(s2.end()), std::regex_constants::ECMAScript, 0);
52 test(F(s3.begin()), F(s3.end()), std::regex_constants::ECMAScript, 0);
53 test(F(s4.begin()), F(s4.end()), std::regex_constants::ECMAScript, 2);
  /external/libcxx/test/re/re.regex/re.regex.assign/
assign_string_flag.pass.cpp 16 // flag_type f = regex_constants::ECMAScript);
25 assert(r2.flags() == std::regex::ECMAScript);
assign_iter_iter_flag.pass.cpp 17 // flag_type f = regex_constants::ECMAScript);
32 assert(r2.flags() == std::regex::ECMAScript);
40 assert(r2.flags() == std::regex::ECMAScript);
  /external/libcxx/test/re/re.regex/re.regex.construct/
il_flg.pass.cpp 15 // flag_type f = regex_constants::ECMAScript);
50 test({'\\', '(', 'a', '\\', ')'}, std::regex_constants::ECMAScript, 0);
51 test({'\\', '(', 'a', '[', 'b', 'c', ']', '\\', ')'}, std::regex_constants::ECMAScript, 0);
52 test({'\\', '(', 'a', '\\', '(', '[', 'b', 'c', ']', '\\', ')', '\\', ')'}, std::regex_constants::ECMAScript, 0);
53 test({'(', 'a', '(', '[', 'b', 'c', ']', ')', ')'}, std::regex_constants::ECMAScript, 2);
string.pass.cpp 25 assert(r.flags() == std::regex_constants::ECMAScript);
string_flg.pass.cpp 16 // flag_type f = regex_constants::ECMAScript);
42 test(std::string("\\(a\\)"), std::regex_constants::ECMAScript, 0);
43 test(std::string("\\(a[bc]\\)"), std::regex_constants::ECMAScript, 0);
44 test(std::string("\\(a\\([bc]\\)\\)"), std::regex_constants::ECMAScript, 0);
45 test(std::string("(a([bc]))"), std::regex_constants::ECMAScript, 2);
iter_iter.pass.cpp 27 assert(r.flags() == std::regex_constants::ECMAScript);
iter_iter_flg.pass.cpp 16 // flag_type f = regex_constants::ECMAScript);
50 test(F(s1.begin()), F(s1.end()), std::regex_constants::ECMAScript, 0);
51 test(F(s2.begin()), F(s2.end()), std::regex_constants::ECMAScript, 0);
52 test(F(s3.begin()), F(s3.end()), std::regex_constants::ECMAScript, 0);
53 test(F(s4.begin()), F(s4.end()), std::regex_constants::ECMAScript, 2);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.assign/
assign_string_flag.pass.cpp 16 // flag_type f = regex_constants::ECMAScript);
25 assert(r2.flags() == std::regex::ECMAScript);
assign_iter_iter_flag.pass.cpp 17 // flag_type f = regex_constants::ECMAScript);
32 assert(r2.flags() == std::regex::ECMAScript);
40 assert(r2.flags() == std::regex::ECMAScript);
  /external/libcxx/test/re/re.regex/re.regex.const/
constants.pass.cpp 21 // static constexpr regex_constants::syntax_option_type ECMAScript = regex_constants::ECMAScript;
43 static_assert((BR::ECMAScript == std::regex_constants::ECMAScript), "");
53 where(BR::ECMAScript);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.const/
constants.pass.cpp 21 // static constexpr regex_constants::syntax_option_type ECMAScript = regex_constants::ECMAScript;
43 static_assert((BR::ECMAScript == std::regex_constants::ECMAScript), "");
53 where(BR::ECMAScript);
  /external/libcxx/test/re/re.const/re.synopt/
syntax_option_type.pass.cpp 22 // ECMAScript = unspecified,
41 assert(std::regex_constants::ECMAScript == 0);
51 assert((std::regex_constants::icase & std::regex_constants::ECMAScript) == 0);
60 assert((std::regex_constants::nosubs & std::regex_constants::ECMAScript) == 0);
68 assert((std::regex_constants::optimize & std::regex_constants::ECMAScript) == 0);
75 assert((std::regex_constants::collate & std::regex_constants::ECMAScript) == 0);
82 assert((std::regex_constants::ECMAScript & std::regex_constants::basic) == 0);
83 assert((std::regex_constants::ECMAScript & std::regex_constants::extended) == 0);
84 assert((std::regex_constants::ECMAScript & std::regex_constants::awk) == 0);
85 assert((std::regex_constants::ECMAScript & std::regex_constants::grep) == 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.const/re.synopt/
syntax_option_type.pass.cpp 22 // ECMAScript = unspecified,
41 assert(std::regex_constants::ECMAScript == 0);
51 assert((std::regex_constants::icase & std::regex_constants::ECMAScript) == 0);
60 assert((std::regex_constants::nosubs & std::regex_constants::ECMAScript) == 0);
68 assert((std::regex_constants::optimize & std::regex_constants::ECMAScript) == 0);
75 assert((std::regex_constants::collate & std::regex_constants::ECMAScript) == 0);
82 assert((std::regex_constants::ECMAScript & std::regex_constants::basic) == 0);
83 assert((std::regex_constants::ECMAScript & std::regex_constants::extended) == 0);
84 assert((std::regex_constants::ECMAScript & std::regex_constants::awk) == 0);
85 assert((std::regex_constants::ECMAScript & std::regex_constants::grep) == 0)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/
regex_constants.h 70 * elements @c ECMAScript, @c basic, @c extended, @c awk, @c grep, @c egrep
104 * that used by ECMAScript in ECMA-262 [Ecma International, ECMAScript
110 static constexpr syntax_option_type ECMAScript = 1 << _S_ECMAScript;
249 * new string is constructed using the rules used by the ECMAScript replace
250 * function in ECMA- 262 [Ecma International, ECMAScript Language
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
regex_constants.h 77 * elements @c ECMAScript, @c basic, @c extended, @c awk, @c grep, @c egrep
111 * that used by ECMAScript in ECMA-262 [Ecma International, ECMAScript
117 constexpr syntax_option_type ECMAScript = 1 << _S_ECMAScript;
256 * new string is constructed using the rules used by the ECMAScript replace
257 * function in ECMA- 262 [Ecma International, ECMAScript Language
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
regex_constants.h 77 * elements @c ECMAScript, @c basic, @c extended, @c awk, @c grep, @c egrep
111 * that used by ECMAScript in ECMA-262 [Ecma International, ECMAScript
117 constexpr syntax_option_type ECMAScript = 1 << _S_ECMAScript;
256 * new string is constructed using the rules used by the ECMAScript replace
257 * function in ECMA- 262 [Ecma International, ECMAScript Language
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
regex_constants.h 70 * elements @c ECMAScript, @c basic, @c extended, @c awk, @c grep, @c egrep
104 * that used by ECMAScript in ECMA-262 [Ecma International, ECMAScript
110 static constexpr syntax_option_type ECMAScript = 1 << _S_ECMAScript;
249 * new string is constructed using the rules used by the ECMAScript replace
250 * function in ECMA- 262 [Ecma International, ECMAScript Language
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
regex_constants.h 70 * elements @c ECMAScript, @c basic, @c extended, @c awk, @c grep, @c egrep
104 * that used by ECMAScript in ECMA-262 [Ecma International, ECMAScript
110 static constexpr syntax_option_type ECMAScript = 1 << _S_ECMAScript;
249 * new string is constructed using the rules used by the ECMAScript replace
250 * function in ECMA- 262 [Ecma International, ECMAScript Language
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
regex_constants.h 70 * elements @c ECMAScript, @c basic, @c extended, @c awk, @c grep, @c egrep
104 * that used by ECMAScript in ECMA-262 [Ecma International, ECMAScript
110 static constexpr syntax_option_type ECMAScript = 1 << _S_ECMAScript;
249 * new string is constructed using the rules used by the ECMAScript replace
250 * function in ECMA- 262 [Ecma International, ECMAScript Language

Completed in 699 milliseconds

12 3 4