Home
last modified time | relevance | path

Searched refs:regex_ (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/media_query/
H A Dmedia_queryer.cpp35 : regex_(regex), parser_(parser), matchResultSize_(matchResultSize) in MediaQueryerRule()
37 explicit MediaQueryerRule(const std::regex& regex) : regex_(regex) {} in MediaQueryerRule()
51 return std::regex_match(condition, matchResults, regex_); in Match()
55 return std::regex_match(condition, regex_); in Match()
59 const std::regex regex_; member in OHOS::Ace::Framework::__anonba08be840110::MediaQueryerRule
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/common/ime/
H A Dtext_input_formatter.cpp23 BlackListCharsFormatter::BlackListCharsFormatter(std::wregex&& regex) : regex_(regex) {} in BlackListCharsFormatter()
28 …d::wstring& manipulateText) { manipulateText = std::regex_replace(manipulateText, regex_, L""); }); in Format()
H A Dtext_input_formatter.h46 std::wregex regex_;
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/want/src/
H A Dpatterns_matcher.cpp111 std::regex regex_(pattern); in MatchPattern() local
112 return regex_match(match, regex_); in MatchPattern()