Home
last modified time | relevance | path

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

/haiku/headers/private/shared/
H A DRegExp.h19 class MatchResult; variable
38 MatchResult Match(const char* string) const;
51 class RegExp::MatchResult {
53 MatchResult();
54 MatchResult(const MatchResult& other);
55 ~MatchResult();
66 MatchResult& operator=(const MatchResult& other);
72 MatchResult(MatchResultData* data);
/haiku/src/kits/shared/
H A DRegExp.cpp249 RegExp::MatchResult
253 return MatchResult(); in Match()
255 return MatchResult( in Match()
279 RegExp::MatchResult::MatchResult() in MatchResult() function in RegExp::MatchResult
286 RegExp::MatchResult::MatchResult(MatchResultData* data) in MatchResult() function in RegExp::MatchResult
293 RegExp::MatchResult::MatchResult(const MatchResult& other) in MatchResult() function in RegExp::MatchResult
302 RegExp::MatchResult::~MatchResult() in ~MatchResult()
310 RegExp::MatchResult::HasMatched() const in HasMatched()
317 RegExp::MatchResult::StartOffset() const in StartOffset()
325 RegExp::MatchResult::EndOffset() const in EndOffset()
[all …]
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DImageFunctionsView.cpp144 const RegExp::MatchResult& FilterMatch() const in FilterMatch()
149 void SetFilterMatch(const RegExp::MatchResult& match) in SetFilterMatch()
188 RegExp::MatchResult fFilterMatch;
226 const RegExp::MatchResult& match = node->FilterMatch(); in DrawValue()
328 RegExp::MatchResult pathMatch; in SetImageDebugInfo()
329 RegExp::MatchResult functionMatch; in SetImageDebugInfo()
545 RegExp::MatchResult& pathMatch, RegExp::MatchResult& functionMatch) in _AddFunctionByPath()
595 RegExp::MatchResult& match) in _AddFunctionNode()
614 RegExp::MatchResult& pathMatch, RegExp::MatchResult& functionMatch) in _FilterFunction()
/haiku/src/servers/debug/
H A DDebugServer.cpp94 RegExp::MatchResult match = expressionMatcher.Match(value); in match_team_name()