Home
last modified time | relevance | path

Searched refs:match_str (Results 1 – 6 of 6) sorted by relevance

/external/vboot_reference/scripts/image_signing/
Dunpack_firmwarefd.sh29 match_str="GBB Area"
30 line=$(mosys -f -k eeprom map $1 | grep "$match_str")
39 match_str="$i Key"
40 line=$(mosys -f -k eeprom map $1 | grep "$match_str")
48 match_str="$i Data"
49 line=$(mosys -f -k eeprom map $1 | grep "$match_str")
/external/lldb/source/Core/
DRegularExpression.cpp163 RegularExpression::Match::GetMatchAtIndex (const char* s, uint32_t idx, std::string& match_str) con… in GetMatchAtIndex()
170 match_str.clear(); in GetMatchAtIndex()
175 match_str.assign (s + m_matches[idx].rm_so, in GetMatchAtIndex()
184 RegularExpression::Match::GetMatchAtIndex (const char* s, uint32_t idx, llvm::StringRef& match_str)… in GetMatchAtIndex()
191 match_str = llvm::StringRef(); in GetMatchAtIndex()
196match_str = llvm::StringRef (s + m_matches[idx].rm_so, m_matches[idx].rm_eo - m_matches[idx].rm_so… in GetMatchAtIndex()
204 …atchSpanningIndices (const char* s, uint32_t idx1, uint32_t idx2, llvm::StringRef& match_str) const in GetMatchSpanningIndices()
211 match_str = llvm::StringRef(); in GetMatchSpanningIndices()
216match_str = llvm::StringRef (s + m_matches[idx1].rm_so, m_matches[idx2].rm_eo - m_matches[idx1].rm… in GetMatchSpanningIndices()
/external/lldb/source/Interpreter/
DCommandObjectRegexCommand.cpp68 std::string match_str; in DoExecute() local
73 if (regex_match.GetMatchAtIndex (command, match_idx, match_str)) in DoExecute()
79 new_command.insert(percent_var_idx, match_str); in DoExecute()
80 idx += percent_var_idx + match_str.size(); in DoExecute()
DCommandObject.cpp338 CommandDictCommandPartialMatch (const char *match_str) in CommandDictCommandPartialMatch() argument
340 m_match_str = match_str; in CommandDictCommandPartialMatch()
/external/lldb/include/lldb/Core/
DRegularExpression.h72 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 …tchSpanningIndices (const char* s, uint32_t idx1, uint32_t idx2, llvm::StringRef& match_str) const;
/external/lldb/scripts/
Dverify_api.py10 def extract_exe_symbol_names (arch, exe_path, match_str): argument
11 command = 'dsymutil --arch %s -s "%s" | grep "%s" | colrm 1 69' % (arch, exe_path, match_str)