HomeSort by relevance Sort by last modified time
    Searched refs:GetValueAsSigned (Results 1 - 15 of 15) sorted by null

  /external/lldb/test/python_api/rdar-12481949/
Test-rdar-12481949.py 2 Check that SBValue.GetValueAsSigned() does the right thing for a 32-bit -1.
19 """Check that SBValue.GetValueAsSigned() does the right thing for a 32-bit -1."""
25 """Check that SBValue.GetValueAsSigned() does the right thing for a 32-bit -1."""
36 """Check that SBValue.GetValueAsSigned() does the right thing for a 32-bit -1."""
57 self.assertTrue(self.frame().FindVariable("myvar").GetValueAsSigned() == -1, "GetValueAsSigned() says -1")
58 self.assertTrue(self.frame().FindVariable("myvar").GetValueAsSigned() != 0xFFFFFFFF, "GetValueAsSigned() does not say 0xFFFFFFFF")
59 self.assertTrue(self.frame().FindVariable("myvar").GetValueAsSigned() != 0xFFFFFFFFFFFFFFFF, "GetValueAsSigned() does not say 0xFFFFFFFFFFFFFFFF"
    [all...]
  /external/lldb/test/lang/objc/blocks/
TestObjCIvarsInBlocks.py 76 direct_value = direct_blocky.GetValueAsSigned(error)
79 indirect_value = indirect_blocky.GetValueAsSigned (error)
93 direct_value = direct_expr.GetValueAsSigned (error)
96 indirect_value = indirect_expr.GetValueAsSigned (error)
114 ret_value_signed = expr.GetValueAsSigned (error)
  /external/lldb/test/python_api/default-constructor/
sb_value.py 43 obj.GetValueAsSigned (error, 0)
45 obj.GetValueAsSigned(0)
  /external/lldb/test/expression_command/call-restarts/
TestCallThatRestarts.py 37 after_call = self.sigchld_no.GetValueAsSigned(-1)
77 self.start_sigchld_no = self.sigchld_no.GetValueAsSigned (-1)
91 self.assertTrue (value.GetValueAsSigned(-1) == num_sigchld)
105 self.assertTrue (value.GetValueAsSigned(-1) == num_sigchld)
115 self.assertTrue (value.GetValueAsSigned(-1) == num_sigchld)
123 self.assertTrue (value.GetValueAsSigned(-1) == num_sigchld)
  /external/lldb/test/lang/objc/objc-ivar-offsets/
TestObjCIvarOffsets.py 66 backed_value = mine_backed_int.GetValueAsSigned (error)
74 derived_backed_value = mine_derived_backed_int.GetValueAsSigned (error)
  /external/lldb/test/functionalities/return-value/
TestReturnValue.py 110 in_int = thread.GetFrameAtIndex(0).FindVariable ("value").GetValueAsSigned(error)
125 ret_int = return_value.GetValueAsSigned(error)
143 in_int = frame.FindVariable ("value").GetValueAsSigned(error)
156 ret_int = ret_value.GetValueAsSigned (error)
  /external/lldb/test/python_api/value/change_values/
TestChangeValueAPI.py 81 actual_value = val_value.GetValueAsSigned (error, 0);
87 actual_value = val_value.GetValueAsSigned (error, 0);
104 actual_value = mine_second_value.GetValueAsSigned (error, 0);
120 actual_value = ptr_second_value.GetValueAsSigned (error, 0);
  /external/lldb/examples/python/
sbvalue.py 242 return self.sbvalue.GetValueAsSigned()
245 return self.sbvalue.GetValueAsSigned()
248 return float (self.sbvalue.GetValueAsSigned())
251 return '0%o' % self.sbvalue.GetValueAsSigned()
254 return '0x%x' % self.sbvalue.GetValueAsSigned()
  /external/lldb/scripts/Python/interface/
SBValue.i 101 GetValueAsSigned(SBError& error, int64_t fail_value=0);
107 GetValueAsSigned(int64_t fail_value=0);
490 __swig_getmethods__["signed"] = GetValueAsSigned
491 if _newclass: signed = property(GetValueAsSigned, None, doc='''A read only property that returns the value of this SBValue as a signed integer.''')
  /external/lldb/test/functionalities/expr-doesnt-deadlock/
TestExprDoesntBlock.py 67 self.assertTrue (var.GetValueAsSigned (0) == 567)
  /external/lldb/test/lang/objc/objc-ivar-stripped/
TestObjCIvarStripped.py 55 ivar_value = ivar.GetValueAsSigned (error)
  /external/lldb/include/lldb/API/
SBValue.h 70 GetValueAsSigned (lldb::SBError& error, int64_t fail_value=0);
76 GetValueAsSigned(int64_t fail_value=0);
  /external/lldb/test/expression_command/test/
TestExprs.py 178 self.assertTrue (value.GetValueAsSigned(0) == 2)
  /external/lldb/examples/synthetic/
libcxx.py 744 count = 1 + self.cntrl.GetChildMemberWithName('__shared_owners_').GetValueAsSigned()
752 count = 1 + self.cntrl.GetChildMemberWithName('__shared_weak_owners_').GetValueAsSigned()
  /external/lldb/source/API/
SBValue.cpp 1044 SBValue::GetValueAsSigned(SBError& error, int64_t fail_value)
1084 SBValue::GetValueAsSigned(int64_t fail_value)
    [all...]

Completed in 91 milliseconds