/
usr
/
include
/
boost
/
regex
/
v4
/
/usr/include/boost/regex/v4
mkdir
upload
Name
Size
Mode
Actions
basic_regex.hpp
24089
0644
edit
dl
rm
basic_regex_creator.hpp
54206
0644
edit
dl
rm
basic_regex_parser.hpp
112851
0644
edit
dl
rm
char_regex_traits.hpp
1726
0644
edit
dl
rm
cpp_regex_traits.hpp
39425
0644
edit
dl
rm
cregex.hpp
10987
0644
edit
dl
rm
c_regex_traits.hpp
5497
0644
edit
dl
rm
error_type.hpp
1258
0644
edit
dl
rm
fileiter.hpp
14377
0644
edit
dl
rm
indexed_bit_flag.hpp
1316
0644
edit
dl
rm
instances.hpp
9080
0644
edit
dl
rm
iterator_category.hpp
1960
0644
edit
dl
rm
iterator_traits.hpp
3802
0644
edit
dl
rm
match_flags.hpp
6934
0644
edit
dl
rm
match_results.hpp
22773
0644
edit
dl
rm
mem_block_cache.hpp
3132
0644
edit
dl
rm
perl_matcher.hpp
18847
0644
edit
dl
rm
perl_matcher_common.hpp
30476
0644
edit
dl
rm
perl_matcher_non_recursive.hpp
63238
0644
edit
dl
rm
perl_matcher_recursive.hpp
34540
0644
edit
dl
rm
primary_transform.hpp
3347
0644
edit
dl
rm
protected_call.hpp
1688
0644
edit
dl
rm
regbase.hpp
5972
0644
edit
dl
rm
regex.hpp
4590
0644
edit
dl
rm
regex_format.hpp
34231
0644
edit
dl
rm
regex_fwd.hpp
1646
0644
edit
dl
rm
regex_grep.hpp
4879
0644
edit
dl
rm
regex_iterator.hpp
6474
0644
edit
dl
rm
regex_match.hpp
14475
0644
edit
dl
rm
regex_merge.hpp
2765
0644
edit
dl
rm
regex_raw_buffer.hpp
3686
0644
edit
dl
rm
regex_replace.hpp
2925
0644
edit
dl
rm
regex_search.hpp
7097
0644
edit
dl
rm
regex_split.hpp
4956
0644
edit
dl
rm
regex_token_iterator.hpp
12613
0644
edit
dl
rm
regex_traits.hpp
4965
0644
edit
dl
rm
regex_traits_defaults.hpp
11555
0644
edit
dl
rm
regex_workaround.hpp
6171
0644
edit
dl
rm
states.hpp
11915
0644
edit
dl
rm
sub_match.hpp
23155
0644
edit
dl
rm
syntax_type.hpp
4374
0644
edit
dl
rm
u32regex_iterator.hpp
6475
0644
edit
dl
rm
u32regex_token_iterator.hpp
15068
0644
edit
dl
rm
w32_regex_traits.hpp
24455
0644
edit
dl
rm
Edit:
/usr/include/boost/regex/v4/syntax_type.hpp
(4374B)
/* * * Copyright (c) 2003 * John Maddock * * Use, modification and distribution are subject to the * Boost Software License, Version 1.0. (See accompanying file * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) * */ /* * LOCATION: see http://www.boost.org for most recent version. * FILE syntax_type.hpp * VERSION see <boost/version.hpp> * DESCRIPTION: Declares regular expression synatx type enumerator. */ #ifndef BOOST_REGEX_SYNTAX_TYPE_HPP #define BOOST_REGEX_SYNTAX_TYPE_HPP namespace boost{ namespace regex_constants{ typedef unsigned char syntax_type; // // values chosen are binary compatible with previous version: // static const syntax_type syntax_char = 0; static const syntax_type syntax_open_mark = 1; static const syntax_type syntax_close_mark = 2; static const syntax_type syntax_dollar = 3; static const syntax_type syntax_caret = 4; static const syntax_type syntax_dot = 5; static const syntax_type syntax_star = 6; static const syntax_type syntax_plus = 7; static const syntax_type syntax_question = 8; static const syntax_type syntax_open_set = 9; static const syntax_type syntax_close_set = 10; static const syntax_type syntax_or = 11; static const syntax_type syntax_escape = 12; static const syntax_type syntax_dash = 14; static const syntax_type syntax_open_brace = 15; static const syntax_type syntax_close_brace = 16; static const syntax_type syntax_digit = 17; static const syntax_type syntax_comma = 27; static const syntax_type syntax_equal = 37; static const syntax_type syntax_colon = 36; static const syntax_type syntax_not = 53; // extensions: static const syntax_type syntax_hash = 13; static const syntax_type syntax_newline = 26; // escapes: typedef syntax_type escape_syntax_type; static const escape_syntax_type escape_type_word_assert = 18; static const escape_syntax_type escape_type_not_word_assert = 19; static const escape_syntax_type escape_type_control_f = 29; static const escape_syntax_type escape_type_control_n = 30; static const escape_syntax_type escape_type_control_r = 31; static const escape_syntax_type escape_type_control_t = 32; static const escape_syntax_type escape_type_control_v = 33; static const escape_syntax_type escape_type_ascii_control = 35; static const escape_syntax_type escape_type_hex = 34; static const escape_syntax_type escape_type_unicode = 0; // not used static const escape_syntax_type escape_type_identity = 0; // not used static const escape_syntax_type escape_type_backref = syntax_digit; static const escape_syntax_type escape_type_decimal = syntax_digit; // not used static const escape_syntax_type escape_type_class = 22; static const escape_syntax_type escape_type_not_class = 23; // extensions: static const escape_syntax_type escape_type_left_word = 20; static const escape_syntax_type escape_type_right_word = 21; static const escape_syntax_type escape_type_start_buffer = 24; // for \` static const escape_syntax_type escape_type_end_buffer = 25; // for \' static const escape_syntax_type escape_type_control_a = 28; // for \a static const escape_syntax_type escape_type_e = 38; // for \e static const escape_syntax_type escape_type_E = 47; // for \Q\E static const escape_syntax_type escape_type_Q = 48; // for \Q\E static const escape_syntax_type escape_type_X = 49; // for \X static const escape_syntax_type escape_type_C = 50; // for \C static const escape_syntax_type escape_type_Z = 51; // for \Z static const escape_syntax_type escape_type_G = 52; // for \G static const escape_syntax_type escape_type_property = 54; // for \p static const escape_syntax_type escape_type_not_property = 55; // for \P static const escape_syntax_type escape_type_named_char = 56; // for \N static const escape_syntax_type escape_type_extended_backref = 57; // for \g static const escape_syntax_type escape_type_reset_start_mark = 58; // for \K static const escape_syntax_type escape_type_line_ending = 59; // for \R static const escape_syntax_type syntax_max = 60; } } #endif
Save
cmd:
run