Home
last modified time | relevance | path

Searched refs:GetValueForVariablePath (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/
H A DTestDataFormatterStdUniquePtr.py40 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 DTestDataFormatterStdTuple.py35 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 DTestVarPath.py24 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 DTestStackCorefile.py26 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 DSBFrame.i274 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 DTestExprInsideLambdas.py61 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 DTestObjCIvarsInBlocks.py57 direct_blocky = frame.GetValueForVariablePath("blocky_ivar")
62 self_var = frame.GetValueForVariablePath("self")
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBFrame.h165 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 DTestDataFormatterLibcxxStringView.py110 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 DTestUnregisteredMacho.py25 macho_buf = frame.GetValueForVariablePath("macho_buf")
/llvm-project-15.0.7/lldb/test/API/functionalities/location-list-lookup/
H A DTestLocationListLookup.py36 argv = f.GetValueForVariablePath("argv").GetChildAtIndex(0)
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DBreakpointBase.cpp134 frame.GetValueForVariablePath(expr, lldb::eDynamicDontRunTarget); in BreakpointHitCallback()
H A Dlldb-vscode.cpp1223 lldb::SBValue value = frame.GetValueForVariablePath( in request_evaluate()
/llvm-project-15.0.7/lldb/source/API/
H A DSBFrame.cpp441 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 Dcli-wrapper-mpxtable.cpp32 lldb::SBValue ptr_addr = frame.GetValueForVariablePath(cptr); in GetPtr()
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbtest.py2455 eval_result = frame.GetValueForVariablePath(var_path)