Home
last modified time | relevance | path

Searched refs:rm_eo (Results 1 – 8 of 8) sorted by relevance

/external/lldb/source/Core/
DRegularExpression.cpp167 if (m_matches[idx].rm_eo == m_matches[idx].rm_so) in GetMatchAtIndex()
173 else if (m_matches[idx].rm_eo > m_matches[idx].rm_so) in GetMatchAtIndex()
176 m_matches[idx].rm_eo - m_matches[idx].rm_so); in GetMatchAtIndex()
188 if (m_matches[idx].rm_eo == m_matches[idx].rm_so) in GetMatchAtIndex()
194 else if (m_matches[idx].rm_eo > m_matches[idx].rm_so) in GetMatchAtIndex()
196 …match_str = llvm::StringRef (s + m_matches[idx].rm_so, m_matches[idx].rm_eo - m_matches[idx].rm_so… in GetMatchAtIndex()
208 if (m_matches[idx1].rm_so == m_matches[idx2].rm_eo) in GetMatchSpanningIndices()
214 else if (m_matches[idx1].rm_so < m_matches[idx2].rm_eo) in GetMatchSpanningIndices()
216 …match_str = llvm::StringRef (s + m_matches[idx1].rm_so, m_matches[idx2].rm_eo - m_matches[idx1].rm… in GetMatchSpanningIndices()
/external/llvm/lib/Support/
DRegex.cpp66 pm[0].rm_eo = String.size(); in match()
89 assert(pm[i].rm_eo >= pm[i].rm_so); in match()
91 pm[i].rm_eo-pm[i].rm_so)); in match()
Dregex_impl.h45 llvm_regoff_t rm_eo; /* end of match */ member
Dregengine.inc150 stop = string + pmatch[0].rm_eo;
217 m->pmatch[i].rm_so = m->pmatch[i].rm_eo = -1;
250 assert(m->pmatch[i].rm_eo == -1);
270 pmatch[0].rm_eo = endp - m->offp;
279 pmatch[i].rm_eo = -1;
467 m->pmatch[i].rm_eo = sp - m->offp;
586 if (m->pmatch[i].rm_eo == -1)
589 len = m->pmatch[i].rm_eo - m->pmatch[i].rm_so;
660 offsave = m->pmatch[i].rm_eo;
661 m->pmatch[i].rm_eo = sp - m->offp;
[all …]
/external/oprofile/libregex/
Dop_regex.cpp232 matched.rm_eo == -1) { in do_replace()
235 matched.rm_eo == -1) { in do_replace()
240 matched.rm_eo - matched.rm_so); in do_replace()
249 size_t count = match[0].rm_eo - match[0].rm_so; in do_replace()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/tests/
Drc_test_helpers.c32 return matches[index].rm_eo - matches[index].rm_so; in match_length()
57 matches[i].rm_so, matches[i].rm_eo); in regex_helper()
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/
Drc_test_helpers.c32 return matches[index].rm_eo - matches[index].rm_so; in match_length()
57 matches[i].rm_so, matches[i].rm_eo); in regex_helper()
/external/lldb/source/Plugins/Disassembler/llvm/
DDisassemblerLLVMC.cpp383 … m_opcode_name.assign(out_string + matches[1].rm_so, matches[1].rm_eo - matches[1].rm_so); in CalculateMnemonicOperandsAndComment()
385 … m_mnemonics.assign(out_string + matches[2].rm_so, matches[2].rm_eo - matches[2].rm_so); in CalculateMnemonicOperandsAndComment()