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

1 2

  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
regex_constants.h 72 * The @c syntax_option_type is implementation defined but it is valid to
76 * A valid value of type syntax_option_type shall have exactly one of the
80 enum syntax_option_type : unsigned int
139 * identical to syntax_option_type extended, except that C-style escape
149 * identical to syntax_option_type basic, except that newlines are treated
157 * IEEE Std 1003.1-2001. This option is identical to syntax_option_type
163 constexpr inline syntax_option_type
164 operator&(syntax_option_type __a, syntax_option_type __b)
166 return (syntax_option_type)(static_cast<unsigned int>(__a
    [all...]
regex_scanner.h 81 typedef regex_constants::syntax_option_type _FlagT;
207 typedef regex_constants::syntax_option_type _FlagT;
  /external/libcxx/test/std/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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
regex_constants.h 72 * The @c syntax_option_type is implementation defined but it is valid to
76 * A valid value of type syntax_option_type shall have exactly one of the
80 typedef unsigned int syntax_option_type; typedef in namespace:regex_constants
86 constexpr syntax_option_type icase = 1 << _S_icase;
93 constexpr syntax_option_type nosubs = 1 << _S_nosubs;
101 constexpr syntax_option_type optimize = 1 << _S_optimize;
107 constexpr syntax_option_type collate = 1 << _S_collate;
117 constexpr syntax_option_type ECMAScript = 1 << _S_ECMAScript;
126 constexpr syntax_option_type basic = 1 << _S_basic;
134 constexpr syntax_option_type extended = 1 << _S_extended
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
regex_constants.h 72 * The @c syntax_option_type is implementation defined but it is valid to
76 * A valid value of type syntax_option_type shall have exactly one of the
80 typedef unsigned int syntax_option_type; typedef in namespace:regex_constants
86 constexpr syntax_option_type icase = 1 << _S_icase;
93 constexpr syntax_option_type nosubs = 1 << _S_nosubs;
101 constexpr syntax_option_type optimize = 1 << _S_optimize;
107 constexpr syntax_option_type collate = 1 << _S_collate;
117 constexpr syntax_option_type ECMAScript = 1 << _S_ECMAScript;
126 constexpr syntax_option_type basic = 1 << _S_basic;
134 constexpr syntax_option_type extended = 1 << _S_extended
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
regex_constants.h 72 * The @c syntax_option_type is implementation defined but it is valid to
76 * A valid value of type syntax_option_type shall have exactly one of the
80 typedef unsigned int syntax_option_type; typedef in namespace:regex_constants
86 constexpr syntax_option_type icase = 1 << _S_icase;
93 constexpr syntax_option_type nosubs = 1 << _S_nosubs;
101 constexpr syntax_option_type optimize = 1 << _S_optimize;
107 constexpr syntax_option_type collate = 1 << _S_collate;
117 constexpr syntax_option_type ECMAScript = 1 << _S_ECMAScript;
126 constexpr syntax_option_type basic = 1 << _S_basic;
134 constexpr syntax_option_type extended = 1 << _S_extended
    [all...]
  /external/libcxx/test/std/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++/libcxx/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), "");
  /external/libcxx/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++/libcxx/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...]
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/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...]
  /external/libcxx/test/std/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;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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;
  /external/libcxx/test/std/re/re.results/re.results.acc/
index.pass.cpp 20 test(std::regex_constants::syntax_option_type syntax)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/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.15-4.8/x86_64-linux/include/c++/4.8/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-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/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/current/sources/cxx-stl/gnu-libstdc++/4.9/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...]
  /external/libcxx/test/std/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)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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)

Completed in 892 milliseconds

1 2