Lines Matching full:steps
79 '--penalty-misordered-steps',
82 help='set the penalty for differences in the order of steps'
101 def __init__(self, context, steps): argument
114 for command in steps.commands['DexExpectWatchType']:
115 command.eval(steps)
128 for command in steps.commands['DexExpectWatchValue']:
129 command.eval(steps)
143 for expect_state in steps.commands['DexExpectProgramState']:
144 success = expect_state.eval(steps)
167 for step in getattr(steps, 'steps'):
174 for command in steps.commands['DexExpectStepKind']:
189 if 'DexUnreachable' in steps.commands:
190 cmds = steps.commands['DexUnreachable']
193 # Find steps with unreachable in them
195 s for s in steps.steps if 'DexUnreachable' in s.watches.keys()
215 if 'DexExpectStepOrder' in steps.commands:
216 cmds = steps.commands['DexExpectStepOrder']
227 ss = steps.steps
230 # We rely on the steps remaining in order here