Lines Matching refs:FindVariable
94 value = frame0.FindVariable("my_int_ptr")
109 value = frame0.FindVariable("str_ptr")
151 # For an expression that references a variable, or a FindVariable result,
156 f_var = frame0.FindVariable("f")
160 # First try a value that we got from FindVariable
161 container = frame0.FindVariable("my_container")
166 self.assertSuccess(fv_cast.error, "Can cast up from FindVariable")
217 self.assertFalse(lldb.value(frame0.FindVariable("bogus")))
218 self.assertTrue(lldb.value(frame0.FindVariable("uinthex")))
221 int(lldb.value(frame0.FindVariable("uinthex"))),
226 int(lldb.value(frame0.FindVariable("sinthex"))),
233 lldb.value(frame0.FindVariable("uinthex")),
234 lldb.value(frame0.FindVariable("sinthex")),
239 frame0.FindVariable("uinthex").GetValueAsUnsigned(),
244 frame0.FindVariable("sinthex").GetValueAsUnsigned(),
250 frame0.FindVariable("uinthex").GetValueAsSigned(),
255 frame0.FindVariable("sinthex").GetValueAsSigned(),
262 frame0.FindVariable("fixed_int_ptr").GetValue(),
269 frame0.FindVariable("another_fixed_int_ptr").GetValue(),
273 frame0.FindVariable("a_null_int_ptr").GetValue(),