Home
last modified time | relevance | path

Searched refs:regex_flags (Results 1 – 10 of 10) sorted by relevance

/aosp_15_r20/external/pigweed/pw_console/py/pw_console/
H A Dlog_filter.py49 regex_flags = re.IGNORECASE
51 regex_flags = re.RegexFlag(0)
67 return text, regex_flags
75 regex_text, regex_flags = preprocess_search_regex(document.text)
77 re.compile(regex_text, regex_flags)
H A Dlog_view.py312 regex_text, regex_flags = preprocess_search_regex(
317 compiled_regex = re.compile(regex_text, regex_flags)
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/support/detail/lexer/parser/tokeniser/
Dre_tokeniser_state.hpp26 regex_flags _flags;
27 std::stack<regex_flags> _flags_stack;
35 const regex_flags flags_, const std::locale locale_) : in basic_re_tokeniser_state()
Dre_tokeniser.hpp247 state_._flags = static_cast<regex_flags> in read_options()
252 state_._flags = static_cast<regex_flags> in read_options()
261 state_._flags = static_cast<regex_flags> in read_options()
266 state_._flags = static_cast<regex_flags> in read_options()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/lex/lexer/lexertl/
Dlexer.hpp84 inline boost::lexer::regex_flags map_flags(unsigned int flags) in map_flags()
92 return boost::lexer::regex_flags(retval); in map_flags()
354 boost::lexer::regex_flags flags_;
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/support/detail/lexer/
Drules.hpp104 basic_rules (const regex_flags flags_ = dot_not_newline, in basic_rules()
140 void flags (const regex_flags flags_) in flags()
145 regex_flags flags () const in flags()
577 regex_flags _flags;
Dconsts.hpp17 enum regex_flags {none = 0, icase = 1, dot_not_newline = 2}; enum
Dgenerator.hpp275 typename parser::macro_map &macromap_, const regex_flags flags_, in build_macros()
/aosp_15_r20/external/google-fruit/tests/
H A Dfruit_test_common.py563 regex_flags = re.MULTILINE
565 regex_flags = 0
568 regex_search_result = re.search(expected_error_regex, stderr, flags=regex_flags)
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/support/detail/lexer/parser/
Dparser.hpp55 const std::size_t dfa_state_, const regex_flags flags_, in parse()