Searched refs:match_str (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Core/
H A DRegularExpression.cpp163 RegularExpression::Match::GetMatchAtIndex (const char* s, uint32_t idx, std::string& match_str) const
170 match_str.clear();
175 match_str.assign (s + m_matches[idx].rm_so,
184 RegularExpression::Match::GetMatchAtIndex (const char* s, uint32_t idx, llvm::StringRef& match_str) const
191 match_str = llvm::StringRef();
196 match_str = llvm::StringRef (s + m_matches[idx].rm_so, m_matches[idx].rm_eo - m_matches[idx].rm_so);
204 RegularExpression::Match::GetMatchSpanningIndices (const char* s, uint32_t idx1, uint32_t idx2, llvm::StringRef& match_str) const
211 match_str = llvm::StringRef();
216 match_str = llvm::StringRef (s + m_matches[idx1].rm_so, m_matches[idx2].rm_eo - m_matches[idx1].rm_so);
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandObjectRegexCommand.cpp68 std::string match_str; local
73 if (regex_match.GetMatchAtIndex (command, match_idx, match_str))
79 new_command.insert(percent_var_idx, match_str);
80 idx += percent_var_idx + match_str.size();
H A DCommandObject.cpp331 CommandDictCommandPartialMatch (const char *match_str) argument
333 m_match_str = match_str;
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DRegularExpression.h101 GetMatchAtIndex (const char* s, uint32_t idx, std::string& match_str) const;
104 GetMatchAtIndex (const char* s, uint32_t idx, llvm::StringRef& match_str) const;
107 GetMatchSpanningIndices (const char* s, uint32_t idx1, uint32_t idx2, llvm::StringRef& match_str) const;
/freebsd-10.3-release/lib/libdevstat/
H A Ddevstat.h116 const char * match_str; member in struct:devstat_match_table
166 int devstat_buildmatch(char *match_str, struct devstat_match **matches,
H A Ddevstat.c1023 devstat_buildmatch(char *match_str, struct devstat_match **matches, argument
1032 if (match_str == NULL) {
1042 (*tempstr = strsep(&match_str, ",")) != NULL && (num_args < 5);)
1100 for (j = 0; match_table[j].match_str != NULL; j++) {
1109 if (strncasecmp(tempstr2, match_table[j].match_str,
1110 strlen(match_table[j].match_str)) == 0) {
/freebsd-10.3-release/contrib/ntp/ntpd/
H A Dntp_control.c4411 const char * match_str; local
4453 match_str = res_match_flags(pres->mflags);
4455 if ('\0' == match_str[0]) {
4460 match_str, access_str);

Completed in 125 milliseconds