Symbol: MatchResult
headers/private/shared/RegExp.h
19
class MatchResult;
headers/private/shared/RegExp.h
38
MatchResult Match(const char* string) const;
headers/private/shared/RegExp.h
51
class RegExp::MatchResult {
headers/private/shared/RegExp.h
53
MatchResult();
headers/private/shared/RegExp.h
54
MatchResult(const MatchResult& other);
headers/private/shared/RegExp.h
55
~MatchResult();
headers/private/shared/RegExp.h
66
MatchResult& operator=(const MatchResult& other);
headers/private/shared/RegExp.h
72
MatchResult(MatchResultData* data);
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
144
const RegExp::MatchResult& FilterMatch() const
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
149
void SetFilterMatch(const RegExp::MatchResult& match)
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
188
RegExp::MatchResult fFilterMatch;
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
226
const RegExp::MatchResult& match = node->FilterMatch();
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
328
RegExp::MatchResult pathMatch;
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
329
RegExp::MatchResult functionMatch;
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
545
RegExp::MatchResult& pathMatch, RegExp::MatchResult& functionMatch)
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
595
RegExp::MatchResult& match)
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
614
RegExp::MatchResult& pathMatch, RegExp::MatchResult& functionMatch)
src/kits/shared/RegExp.cpp
249
RegExp::MatchResult
src/kits/shared/RegExp.cpp
253
return MatchResult();
src/kits/shared/RegExp.cpp
255
return MatchResult(
src/kits/shared/RegExp.cpp
279
RegExp::MatchResult::MatchResult()
src/kits/shared/RegExp.cpp
286
RegExp::MatchResult::MatchResult(MatchResultData* data)
src/kits/shared/RegExp.cpp
293
RegExp::MatchResult::MatchResult(const MatchResult& other)
src/kits/shared/RegExp.cpp
302
RegExp::MatchResult::~MatchResult()
src/kits/shared/RegExp.cpp
310
RegExp::MatchResult::HasMatched() const
src/kits/shared/RegExp.cpp
317
RegExp::MatchResult::StartOffset() const
src/kits/shared/RegExp.cpp
325
RegExp::MatchResult::EndOffset() const
src/kits/shared/RegExp.cpp
333
RegExp::MatchResult::GroupCount() const
src/kits/shared/RegExp.cpp
344
RegExp::MatchResult::GroupStartOffsetAt(size_t index) const
src/kits/shared/RegExp.cpp
352
RegExp::MatchResult::GroupEndOffsetAt(size_t index) const
src/kits/shared/RegExp.cpp
359
RegExp::MatchResult&
src/kits/shared/RegExp.cpp
360
RegExp::MatchResult::operator=(const MatchResult& other)
src/servers/debug/DebugServer.cpp
94
RegExp::MatchResult match = expressionMatcher.Match(value);