Lines Matching refs:relative_frame_offset
270 if (option_arg.getAsInteger(0, relative_frame_offset)) { in SetOptionValue()
271 relative_frame_offset = INT32_MIN; in SetOptionValue()
287 relative_frame_offset = INT32_MIN; in OptionParsingStarting()
294 int32_t relative_frame_offset; member in CommandObjectFrameSelect::CommandOptions
332 if (m_options.relative_frame_offset != INT32_MIN) { in DoExecute()
338 if (m_options.relative_frame_offset < 0) { in DoExecute()
339 if (static_cast<int32_t>(frame_idx) >= -m_options.relative_frame_offset) in DoExecute()
340 frame_idx += m_options.relative_frame_offset; in DoExecute()
351 } else if (m_options.relative_frame_offset > 0) { in DoExecute()
358 m_options.relative_frame_offset) in DoExecute()
359 frame_idx += m_options.relative_frame_offset; in DoExecute()