Home
last modified time | relevance | path

Searched refs:match_index (Results 1 – 5 of 5) sorted by relevance

/openbsd/src/gnu/llvm/lldb/examples/python/
Dmemory.py256 match_index = string.find(bytes, options.data)
257 while match_index != -1:
260 match_index, start_addr, match_index), file=result)
261 match_index = string.find(bytes, options.data, match_index + 1)
/openbsd/src/gnu/llvm/lldb/third_party/Python/module/pexpect-4.6/pexpect/
Dexpect.py37 spawn.match_index = index
54 spawn.match_index = index
58 spawn.match_index = None
73 spawn.match_index = index
77 spawn.match_index = None
89 spawn.match_index = None
Dspawnbase.py44 self.match_index = None
Dpty_spawn.py219 s.append('match_index: ' + str(self.match_index))
/openbsd/src/gnu/llvm/lldb/source/Core/
DIOHandlerCursesGUI.cpp3665 virtual void ExecuteCallback(int match_index) = 0;
3849 void ExecuteCallback(int match_index) override { in ExecuteCallback() argument
3850 m_callback(m_matches[match_index]); in ExecuteCallback()