| /llvm-project-15.0.7/lldb/test/API/lang/cpp/nsimport/ |
| H A D | TestCppNsImport.py | 60 test_result.IsValid() and test_result.GetValueAsSigned() == 1, 65 test_result.IsValid() and test_result.GetValueAsSigned() == 1, 70 test_result.IsValid() and test_result.GetValueAsSigned() == 3, 75 test_result.IsValid() and test_result.GetValueAsSigned() == 2, 80 test_result.IsValid() and test_result.GetValueAsSigned() == 4, 85 test_result.IsValid() and test_result.GetValueAsSigned() == 9, 90 test_result.IsValid() and test_result.GetValueAsSigned() == 0, 95 test_result.IsValid() and test_result.GetValueAsSigned() == 35, 104 test_result.IsValid() and test_result.GetValueAsSigned() == 99, 114 test_result.IsValid() and test_result.GetValueAsSigned() == 3, [all …]
|
| /llvm-project-15.0.7/lldb/test/API/commands/expression/context-object/ |
| H A D | TestContextObject.py | 34 self.assertEqual(value.GetValueAsSigned(), 1111) 40 self.assertEqual(value.GetValueAsSigned(), 2222) 46 self.assertEqual(value.GetValueAsSigned(), 1111) 59 self.assertEqual(value.GetValueAsSigned(), 5555) 89 self.assertEqual(value.GetValueAsSigned(), 1111) 107 self.assertEqual(value.GetValueAsSigned(), 1111) 137 self.assertEqual(value.GetValueAsSigned(), 1111)
|
| /llvm-project-15.0.7/lldb/test/API/commands/expression/call-restarts/ |
| H A D | TestCallThatRestarts.py | 33 after_call = self.sigchld_no.GetValueAsSigned(-1) 60 self.start_sigchld_no = self.sigchld_no.GetValueAsSigned(-1) 82 self.assertEquals(value.GetValueAsSigned(-1), num_sigchld) 100 self.assertEquals(value.GetValueAsSigned(-1), num_sigchld) 113 self.assertEquals(value.GetValueAsSigned(-1), num_sigchld) 125 self.assertEquals(value.GetValueAsSigned(-1), num_sigchld)
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/blocks/ |
| H A D | TestObjCIvarsInBlocks.py | 68 direct_value = direct_blocky.GetValueAsSigned(error) 71 indirect_value = indirect_blocky.GetValueAsSigned(error) 93 direct_value = direct_expr.GetValueAsSigned(error) 98 indirect_value = indirect_expr.GetValueAsSigned(error) 124 ret_value_signed = expr.GetValueAsSigned(error)
|
| /llvm-project-15.0.7/lldb/test/API/commands/expression/ir-interpreter/ |
| H A D | TestIRInterpreter.py | 73 interp_expression, options).GetValueAsSigned() 75 jit_expression, options).GetValueAsSigned() 86 self.assertEqual(short_val.GetValueAsSigned(), -1) 88 self.assertEqual(long_val.GetValueAsSigned(), -1)
|
| /llvm-project-15.0.7/lldb/test/API/commands/expression/context-object-objc/ |
| H A D | TestContextObjectObjc.py | 38 self.assertEqual(value.GetValueAsSigned(), 1111) 46 self.assertEqual(value.GetValueAsSigned(), 2222) 52 self.assertEqual(value.GetValueAsSigned(), 3333) 70 self.assertEqual(value.GetValueAsSigned(), 1111)
|
| /llvm-project-15.0.7/lldb/test/API/python_api/value/change_values/ |
| H A D | TestChangeValueAPI.py | 74 actual_value = val_value.GetValueAsSigned(error, 0) 80 actual_value = val_value.GetValueAsSigned(error, 0) 103 actual_value = mine_second_value.GetValueAsSigned(error, 0) 124 actual_value = ptr_second_value.GetValueAsSigned(error, 0)
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/bitfields/ |
| H A D | TestCppBitfields.py | 119 self.assertEqual(bb_a.GetValueAsSigned(), 1) 124 self.assertEqual(bb_b.GetValueAsSigned(), 0) 129 self.assertEqual(bb_c.GetValueAsSigned(), 1) 134 self.assertEqual(bb_d.GetValueAsSigned(), 1)
|
| /llvm-project-15.0.7/lldb/examples/python/ |
| H A D | sbvalue.py | 256 return self.sbvalue.GetValueAsSigned() 259 return self.sbvalue.GetValueAsSigned() 262 return float(self.sbvalue.GetValueAsSigned()) 265 return '0%o' % self.sbvalue.GetValueAsSigned() 268 return '0x%x' % self.sbvalue.GetValueAsSigned()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/debugbreak/ |
| H A D | TestDebugBreak.py | 43 self.assertEqual(value.GetValueAsSigned(), 42) 50 self.assertEqual(value.GetValueAsSigned(), counter)
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/objc-ivar-offsets/ |
| H A D | TestObjCIvarOffsets.py | 60 backed_value = mine_backed_int.GetValueAsSigned(error) 70 derived_backed_value = mine_derived_backed_int.GetValueAsSigned(error)
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBTypeEnumMember.i | 31 GetValueAsSigned(); 51 …signed = property(GetValueAsSigned, None, doc='''A read only property that returns the value of th…
|
| H A D | SBValue.i | 105 GetValueAsSigned(SBError& error, int64_t fail_value=0); 111 GetValueAsSigned(int64_t fail_value=0); 512 …signed = property(GetValueAsSigned, None, doc='''A read only property that returns the value of th…
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/return-value/ |
| H A D | TestReturnValue.py | 58 "value").GetValueAsSigned(error) 73 ret_int = return_value.GetValueAsSigned(error) 90 in_int = frame.FindVariable("value").GetValueAsSigned(error) 103 ret_int = ret_value.GetValueAsSigned(error)
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/gmodules/ |
| H A D | TestWithModuleDebugging.py | 68 memberValue.GetValueAsSigned(), 90 memberValue.GetValueAsSigned(),
|
| /llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/ |
| H A D | sb_value.py | 43 obj.GetValueAsSigned(error, 0) 45 obj.GetValueAsSigned(0)
|
| /llvm-project-15.0.7/lldb/test/API/commands/expression/dont_allow_jit/ |
| H A D | TestAllowJIT.py | 60 self.assertEqual(result.GetValueAsSigned(), 18, "got the right value.") 79 self.assertEqual(result.GetValueAsSigned(), 18, "got the right value.")
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBTypeEnumMember.cpp | 64 int64_t SBTypeEnumMember::GetValueAsSigned() { in GetValueAsSigned() function in SBTypeEnumMember 68 return m_opaque_sp->GetValueAsSigned(); in GetValueAsSigned()
|
| /llvm-project-15.0.7/lldb/test/API/macosx/thread-names/ |
| H A D | TestInterruptThreadNames.py | 39 self.assertEquals(inferior_set_up.GetValueAsSigned(), 1) 78 if inferior_set_up.IsValid() and inferior_set_up.GetValueAsSigned() == 1:
|
| /llvm-project-15.0.7/lldb/test/API/python_api/get-value-32bit-int/ |
| H A D | TestGetValue32BitInt.py | 16 self.assertEqual(self.frame().FindVariable("myvar").GetValueAsSigned(), -1)
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBValue.h | 57 int64_t GetValueAsSigned(lldb::SBError &error, int64_t fail_value = 0); 61 int64_t GetValueAsSigned(int64_t fail_value = 0);
|
| H A D | SBTypeEnumMember.h | 31 int64_t GetValueAsSigned();
|
| /llvm-project-15.0.7/lldb/test/API/python_api/value/ |
| H A D | TestValueAPI.py | 184 frame0.FindVariable('uinthex').GetValueAsSigned() == - 188 frame0.FindVariable('sinthex').GetValueAsSigned() == -
|
| /llvm-project-15.0.7/lldb/test/API/commands/expression/no-deadlock/ |
| H A D | TestExprDoesntBlock.py | 50 self.assertEqual(var.GetValueAsSigned(0), 567)
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/queue/ |
| H A D | TestDataFormatterLibcxxQueue.py | 29 self.assertEqual(ch.GetValueAsSigned(), i+1)
|