HomeSort by relevance Sort by last modified time
    Searched full:syntax_option_type (Results 1 - 25 of 37) sorted by null

1 2

  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.regex/re.regex.const/
constants.pass.cpp 17 // static constexpr regex_constants::syntax_option_type icase = regex_constants::icase;
18 // static constexpr regex_constants::syntax_option_type nosubs = regex_constants::nosubs;
19 // static constexpr regex_constants::syntax_option_type optimize = regex_constants::optimize;
20 // static constexpr regex_constants::syntax_option_type collate = regex_constants::collate;
21 // static constexpr regex_constants::syntax_option_type ECMAScript = regex_constants::ECMAScript;
22 // static constexpr regex_constants::syntax_option_type basic = regex_constants::basic;
23 // static constexpr regex_constants::syntax_option_type extended = regex_constants::extended;
24 // static constexpr regex_constants::syntax_option_type awk = regex_constants::awk;
25 // static constexpr regex_constants::syntax_option_type grep = regex_constants::grep;
26 // static constexpr regex_constants::syntax_option_type egrep = regex_constants::egrep
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
regex_constants.h 65 * The @c syntax_option_type is implementation defined but it is valid to
69 * A valid value of type syntax_option_type shall have exactly one of the
73 typedef unsigned int syntax_option_type; typedef in namespace:regex_constants
79 static constexpr syntax_option_type icase = 1 << _S_icase;
86 static constexpr syntax_option_type nosubs = 1 << _S_nosubs;
94 static constexpr syntax_option_type optimize = 1 << _S_optimize;
100 static constexpr syntax_option_type collate = 1 << _S_collate;
110 static constexpr syntax_option_type ECMAScript = 1 << _S_ECMAScript;
119 static constexpr syntax_option_type basic = 1 << _S_basic;
127 static constexpr syntax_option_type extended = 1 << _S_extended
    [all...]
regex_compiler.h 65 typedef regex_constants::syntax_option_type _FlagT;
636 typedef regex_constants::syntax_option_type _FlagT;
1101 regex_constants::syntax_option_type __f)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
regex_constants.h 65 * The @c syntax_option_type is implementation defined but it is valid to
69 * A valid value of type syntax_option_type shall have exactly one of the
73 typedef unsigned int syntax_option_type; typedef in namespace:regex_constants
79 static constexpr syntax_option_type icase = 1 << _S_icase;
86 static constexpr syntax_option_type nosubs = 1 << _S_nosubs;
94 static constexpr syntax_option_type optimize = 1 << _S_optimize;
100 static constexpr syntax_option_type collate = 1 << _S_collate;
110 static constexpr syntax_option_type ECMAScript = 1 << _S_ECMAScript;
119 static constexpr syntax_option_type basic = 1 << _S_basic;
127 static constexpr syntax_option_type extended = 1 << _S_extended
    [all...]
regex_compiler.h 65 typedef regex_constants::syntax_option_type _FlagT;
636 typedef regex_constants::syntax_option_type _FlagT;
1101 regex_constants::syntax_option_type __f)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
regex_constants.h 65 * The @c syntax_option_type is implementation defined but it is valid to
69 * A valid value of type syntax_option_type shall have exactly one of the
73 typedef unsigned int syntax_option_type; typedef in namespace:regex_constants
79 static constexpr syntax_option_type icase = 1 << _S_icase;
86 static constexpr syntax_option_type nosubs = 1 << _S_nosubs;
94 static constexpr syntax_option_type optimize = 1 << _S_optimize;
100 static constexpr syntax_option_type collate = 1 << _S_collate;
110 static constexpr syntax_option_type ECMAScript = 1 << _S_ECMAScript;
119 static constexpr syntax_option_type basic = 1 << _S_basic;
127 static constexpr syntax_option_type extended = 1 << _S_extended
    [all...]
regex_compiler.h 65 typedef regex_constants::syntax_option_type _FlagT;
636 typedef regex_constants::syntax_option_type _FlagT;
1101 regex_constants::syntax_option_type __f)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
regex_constants.h 65 * The @c syntax_option_type is implementation defined but it is valid to
69 * A valid value of type syntax_option_type shall have exactly one of the
73 typedef unsigned int syntax_option_type; typedef in namespace:regex_constants
79 static constexpr syntax_option_type icase = 1 << _S_icase;
86 static constexpr syntax_option_type nosubs = 1 << _S_nosubs;
94 static constexpr syntax_option_type optimize = 1 << _S_optimize;
100 static constexpr syntax_option_type collate = 1 << _S_collate;
110 static constexpr syntax_option_type ECMAScript = 1 << _S_ECMAScript;
119 static constexpr syntax_option_type basic = 1 << _S_basic;
127 static constexpr syntax_option_type extended = 1 << _S_extended
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.regex/
types.pass.cpp 18 // typedef regex_constants::syntax_option_type flag_type;
28 std::regex_constants::syntax_option_type>::value), "");
33 std::regex_constants::syntax_option_type>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/include/
regex 25 emum syntax_option_type
39 constexpr syntax_option_type operator~(syntax_option_type f);
40 constexpr syntax_option_type operator&(syntax_option_type lhs, syntax_option_type rhs);
41 constexpr syntax_option_type operator|(syntax_option_type lhs, syntax_option_type rhs);
130 typedef regex_constants::syntax_option_type flag_type
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.const/re.synopt/
syntax_option_type.pass.cpp 16 // emum syntax_option_type // bitmask type
105 std::regex_constants::syntax_option_type e1 = std::regex_constants::icase;
106 std::regex_constants::syntax_option_type e2 = std::regex_constants::nosubs;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1_impl/
regex 70 * The @c syntax_option_type is implementation defined but it is valid to
74 * A valid value of type syntax_option_type shall have exactly one of the
78 typedef unsigned int syntax_option_type;
84 static const syntax_option_type icase = 1 << _S_icase;
91 static const syntax_option_type nosubs = 1 << _S_nosubs;
99 static const syntax_option_type optimize = 1 << _S_optimize;
105 static const syntax_option_type collate = 1 << _S_collate;
115 static const syntax_option_type ECMAScript = 1 << _S_ECMAScript;
124 static const syntax_option_type basic = 1 << _S_basic;
132 static const syntax_option_type extended = 1 << _S_extended
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/tr1/
regex 85 * The @c syntax_option_type is implementation defined but it is valid to
89 * A valid value of type syntax_option_type shall have exactly one of the
93 typedef unsigned int syntax_option_type;
99 static const syntax_option_type icase = 1 << _S_icase;
106 static const syntax_option_type nosubs = 1 << _S_nosubs;
114 static const syntax_option_type optimize = 1 << _S_optimize;
120 static const syntax_option_type collate = 1 << _S_collate;
130 static const syntax_option_type ECMAScript = 1 << _S_ECMAScript;
139 static const syntax_option_type basic = 1 << _S_basic;
147 static const syntax_option_type extended = 1 << _S_extended
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/tr1/
regex 85 * The @c syntax_option_type is implementation defined but it is valid to
89 * A valid value of type syntax_option_type shall have exactly one of the
93 typedef unsigned int syntax_option_type;
99 static const syntax_option_type icase = 1 << _S_icase;
106 static const syntax_option_type nosubs = 1 << _S_nosubs;
114 static const syntax_option_type optimize = 1 << _S_optimize;
120 static const syntax_option_type collate = 1 << _S_collate;
130 static const syntax_option_type ECMAScript = 1 << _S_ECMAScript;
139 static const syntax_option_type basic = 1 << _S_basic;
147 static const syntax_option_type extended = 1 << _S_extended
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
regex 70 * The @c syntax_option_type is implementation defined but it is valid to
74 * A valid value of type syntax_option_type shall have exactly one of the
78 typedef unsigned int syntax_option_type;
84 static const syntax_option_type icase = 1 << _S_icase;
91 static const syntax_option_type nosubs = 1 << _S_nosubs;
99 static const syntax_option_type optimize = 1 << _S_optimize;
105 static const syntax_option_type collate = 1 << _S_collate;
115 static const syntax_option_type ECMAScript = 1 << _S_ECMAScript;
124 static const syntax_option_type basic = 1 << _S_basic;
132 static const syntax_option_type extended = 1 << _S_extended
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
regex 70 * The @c syntax_option_type is implementation defined but it is valid to
74 * A valid value of type syntax_option_type shall have exactly one of the
78 typedef unsigned int syntax_option_type;
84 static const syntax_option_type icase = 1 << _S_icase;
91 static const syntax_option_type nosubs = 1 << _S_nosubs;
99 static const syntax_option_type optimize = 1 << _S_optimize;
105 static const syntax_option_type collate = 1 << _S_collate;
115 static const syntax_option_type ECMAScript = 1 << _S_ECMAScript;
124 static const syntax_option_type basic = 1 << _S_basic;
132 static const syntax_option_type extended = 1 << _S_extended
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
regex 70 * The @c syntax_option_type is implementation defined but it is valid to
74 * A valid value of type syntax_option_type shall have exactly one of the
78 typedef unsigned int syntax_option_type;
84 static const syntax_option_type icase = 1 << _S_icase;
91 static const syntax_option_type nosubs = 1 << _S_nosubs;
99 static const syntax_option_type optimize = 1 << _S_optimize;
105 static const syntax_option_type collate = 1 << _S_collate;
115 static const syntax_option_type ECMAScript = 1 << _S_ECMAScript;
124 static const syntax_option_type basic = 1 << _S_basic;
132 static const syntax_option_type extended = 1 << _S_extended
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1_impl/
regex 70 * The @c syntax_option_type is implementation defined but it is valid to
74 * A valid value of type syntax_option_type shall have exactly one of the
78 typedef unsigned int syntax_option_type;
84 static const syntax_option_type icase = 1 << _S_icase;
91 static const syntax_option_type nosubs = 1 << _S_nosubs;
99 static const syntax_option_type optimize = 1 << _S_optimize;
105 static const syntax_option_type collate = 1 << _S_collate;
115 static const syntax_option_type ECMAScript = 1 << _S_ECMAScript;
124 static const syntax_option_type basic = 1 << _S_basic;
132 static const syntax_option_type extended = 1 << _S_extended
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/
regex 85 * The @c syntax_option_type is implementation defined but it is valid to
89 * A valid value of type syntax_option_type shall have exactly one of the
93 typedef unsigned int syntax_option_type;
99 static const syntax_option_type icase = 1 << _S_icase;
106 static const syntax_option_type nosubs = 1 << _S_nosubs;
114 static const syntax_option_type optimize = 1 << _S_optimize;
120 static const syntax_option_type collate = 1 << _S_collate;
130 static const syntax_option_type ECMAScript = 1 << _S_ECMAScript;
139 static const syntax_option_type basic = 1 << _S_basic;
147 static const syntax_option_type extended = 1 << _S_extended
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/
regex 85 * The @c syntax_option_type is implementation defined but it is valid to
89 * A valid value of type syntax_option_type shall have exactly one of the
93 typedef unsigned int syntax_option_type;
99 static const syntax_option_type icase = 1 << _S_icase;
106 static const syntax_option_type nosubs = 1 << _S_nosubs;
114 static const syntax_option_type optimize = 1 << _S_optimize;
120 static const syntax_option_type collate = 1 << _S_collate;
130 static const syntax_option_type ECMAScript = 1 << _S_ECMAScript;
139 static const syntax_option_type basic = 1 << _S_basic;
147 static const syntax_option_type extended = 1 << _S_extended
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.regex/re.regex.construct/
il_flg.pass.cpp 23 test(std::initializer_list<char> il, std::regex_constants::syntax_option_type f, unsigned mc)
ptr_flg.pass.cpp 21 test(const CharT* p, std::regex_constants::syntax_option_type f, unsigned mc)
ptr_size_flg.pass.cpp 21 test(const CharT* p, std::size_t len, std::regex_constants::syntax_option_type f,
string_flg.pass.cpp 23 test(const String& p, std::regex_constants::syntax_option_type f, unsigned mc)
iter_iter_flg.pass.cpp 25 test(Iter first, Iter last, std::regex_constants::syntax_option_type f, unsigned mc)

Completed in 442 milliseconds

1 2