HomeSort by relevance Sort by last modified time
    Searched refs:match_str (Results 1 - 10 of 10) sorted by null

  /external/lldb/source/Core/
RegularExpression.cpp 163 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);
  /external/chromium_org/content/browser/accessibility/
accessibility_tree_formatter.h 65 base::string16 match_str; member in struct:content::AccessibilityTreeFormatter::Filter
68 Filter(base::string16 match_str, Type type)
69 : match_str(match_str), type(type) {}
accessibility_tree_formatter.cc 148 if (MatchPattern(text, iter->match_str)) {
  /external/lldb/include/lldb/Core/
RegularExpression.h 72 GetMatchAtIndex (const char* s, uint32_t idx, std::string& match_str) const;
75 GetMatchAtIndex (const char* s, uint32_t idx, llvm::StringRef& match_str) const;
78 GetMatchSpanningIndices (const char* s, uint32_t idx1, uint32_t idx2, llvm::StringRef& match_str) const;
  /external/lldb/source/Interpreter/
CommandObjectRegexCommand.cpp 68 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();
CommandObject.cpp 338 CommandDictCommandPartialMatch (const char *match_str)
340 m_match_str = match_str;
    [all...]
  /external/chromium_org/sandbox/win/src/
policy_engine_opcodes.cc 228 const wchar_t* match_str,
232 if (NULL == match_str) {
235 if ('\0' == match_str[0]) {
239 int lenght = lstrlenW(match_str);
245 ptrdiff_t delta_str = AllocRelative(opcode, match_str, wcslen(match_str)+1);
273 const wchar_t* match_str = opcode->GetRelativeString(0); local
317 InitStringUnicode(match_str, match_len, &match_ustr);
331 InitStringUnicode(match_str, match_len, &match_ustr);
policy_engine_opcodes.h 331 // match_str: string to compare against selected_param.
342 const wchar_t* match_str,
  /external/lldb/scripts/
verify_api.py 10 def extract_exe_symbol_names (arch, exe_path, match_str):
11 command = 'dsymutil --arch %s -s "%s" | grep "%s" | colrm 1 69' % (arch, exe_path, match_str)
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
content_scripts_handler.cc 142 std::string match_str; local
143 if (!matches->GetString(j, &match_str)) {
155 URLPattern::ParseResult parse_result = pattern.Parse(match_str);
199 std::string match_str; local
200 if (!exclude_matches->GetString(j, &match_str)) {
213 URLPattern::ParseResult parse_result = pattern.Parse(match_str);

Completed in 354 milliseconds