| /llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/ |
| H A D | TestDataFormatterStdUniquePtr.py | 40 self.assertEqual(123, frame.GetValueForVariablePath("iup.object").GetValueAsUnsigned()) 41 self.assertEqual(123, frame.GetValueForVariablePath("*iup").GetValueAsUnsigned()) 42 self.assertFalse(frame.GetValueForVariablePath("iup.deleter").IsValid()) 44 self.assertEqual('"foobar"', frame.GetValueForVariablePath("sup.object").GetSummary()) 45 self.assertEqual('"foobar"', frame.GetValueForVariablePath("*sup").GetSummary()) 46 self.assertFalse(frame.GetValueForVariablePath("sup.deleter").IsValid()) 49 self.assertEqual(456, frame.GetValueForVariablePath("*idp").GetValueAsUnsigned()) 50 self.assertEqual('"baz"', frame.GetValueForVariablePath("sdp.object").GetSummary()) 51 self.assertEqual('"baz"', frame.GetValueForVariablePath("*sdp").GetSummary()) 53 idp_deleter = frame.GetValueForVariablePath("idp.deleter") [all …]
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/ |
| H A D | TestDataFormatterStdTuple.py | 35 self.assertEqual(1, frame.GetValueForVariablePath("ti[0]").GetValueAsUnsigned()) 36 self.assertFalse(frame.GetValueForVariablePath("ti[1]").IsValid()) 38 self.assertEqual('"foobar"', frame.GetValueForVariablePath("ts[0]").GetSummary()) 39 self.assertFalse(frame.GetValueForVariablePath("ts[1]").IsValid()) 41 self.assertEqual(1, frame.GetValueForVariablePath("tt[0]").GetValueAsUnsigned()) 42 self.assertEqual('"baz"', frame.GetValueForVariablePath("tt[1]").GetSummary()) 43 self.assertEqual(2, frame.GetValueForVariablePath("tt[2]").GetValueAsUnsigned()) 44 self.assertFalse(frame.GetValueForVariablePath("tt[3]").IsValid())
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/var_path/ |
| H A D | TestVarPath.py | 24 v = frame.GetValueForVariablePath(var_name) 42 v = frame.GetValueForVariablePath(valid_x_path) 46 v = frame.GetValueForVariablePath(invalid_x_path) 49 v = frame.GetValueForVariablePath(valid_y_path) 53 v = frame.GetValueForVariablePath(invalid_y_path) 56 v = frame.GetValueForVariablePath(invalid_m_path) 64 v = frame.GetValueForVariablePath('no_such_variable') 76 v = frame.GetValueForVariablePath('points') 81 v = frame.GetValueForVariablePath('points[0]+5') 86 v = frame.GetValueForVariablePath('pt_sp') [all …]
|
| /llvm-project-15.0.7/lldb/test/API/macosx/stack-corefile/ |
| H A D | TestStackCorefile.py | 26 stack_int = frame.GetValueForVariablePath("stack_int") 27 heap_int = frame.GetValueForVariablePath("*heap_int") 28 stack_str = frame.GetValueForVariablePath("stack_str") 29 heap_str = frame.GetValueForVariablePath("heap_str") 57 stack_int = frame.GetValueForVariablePath("stack_int") 58 heap_int = frame.GetValueForVariablePath("*heap_int") 59 stack_str = frame.GetValueForVariablePath("stack_str") 60 heap_str = frame.GetValueForVariablePath("heap_str")
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBFrame.i | 274 in the current frame.") GetValueForVariablePath; 276 GetValueForVariablePath (const char *var_path); 279 GetValueForVariablePath (const char *var_path, lldb::DynamicValueType use_dynamic); 322 return self.GetValueForVariablePath(var_expr_path)
|
| /llvm-project-15.0.7/lldb/test/API/commands/expression/expr_inside_lambda/ |
| H A D | TestExprInsideLambdas.py | 61 outer_class_addr = frame.GetValueForVariablePath("this->this") 100 local_class_addr = frame.GetValueForVariablePath("this->this")
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/blocks/ |
| H A D | TestObjCIvarsInBlocks.py | 57 direct_blocky = frame.GetValueForVariablePath("blocky_ivar") 62 self_var = frame.GetValueForVariablePath("self")
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBFrame.h | 165 lldb::SBValue GetValueForVariablePath(const char *var_expr_cstr, 170 lldb::SBValue GetValueForVariablePath(const char *var_path);
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/string_view/ |
| H A D | TestDataFormatterLibcxxStringView.py | 110 null_obj = self.frame().GetValueForVariablePath('null_str') 186 broken_obj = self.frame().GetValueForVariablePath('in_str_view')
|
| /llvm-project-15.0.7/lldb/test/API/macosx/unregistered-macho/ |
| H A D | TestUnregisteredMacho.py | 25 macho_buf = frame.GetValueForVariablePath("macho_buf")
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/location-list-lookup/ |
| H A D | TestLocationListLookup.py | 36 argv = f.GetValueForVariablePath("argv").GetChildAtIndex(0)
|
| /llvm-project-15.0.7/lldb/tools/lldb-vscode/ |
| H A D | BreakpointBase.cpp | 134 frame.GetValueForVariablePath(expr, lldb::eDynamicDontRunTarget); in BreakpointHitCallback()
|
| H A D | lldb-vscode.cpp | 1223 lldb::SBValue value = frame.GetValueForVariablePath( in request_evaluate()
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBFrame.cpp | 441 lldb::SBValue SBFrame::GetValueForVariablePath(const char *var_path) { in GetValueForVariablePath() function in SBFrame 453 sb_value = GetValueForVariablePath(var_path, use_dynamic); in GetValueForVariablePath() 458 lldb::SBValue SBFrame::GetValueForVariablePath(const char *var_path, in GetValueForVariablePath() function in SBFrame
|
| /llvm-project-15.0.7/lldb/tools/intel-features/intel-mpx/ |
| H A D | cli-wrapper-mpxtable.cpp | 32 lldb::SBValue ptr_addr = frame.GetValueForVariablePath(cptr); in GetPtr()
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldbtest.py | 2455 eval_result = frame.GetValueForVariablePath(var_path)
|