Home
last modified time | relevance | path

Searched refs:val_obj (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_on_lambda_capture/
H A DTestBreakOnLambdaCapture.py30 val_obj = main_thread.frame[0].EvaluateExpression("true")
31 self.assertSuccess(val_obj.GetError(), "Ran our expression successfully")
32 self.assertEqual(val_obj.value, "true", "Value was true.")
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/two_hits_one_actual/
H A DTestTwoHitsOneActual.py36 val_obj = main_thread.frame[0].EvaluateExpression("main_usec==1")
37 self.assertSuccess(val_obj.GetError(), "Ran our expression successfully")
38 self.assertEqual(val_obj.value, "true", "Value was true.")
/llvm-project-15.0.7/lldb/source/API/
H A DSBValueList.cpp124 void SBValueList::Append(const SBValue &val_obj) { in Append() argument
125 LLDB_INSTRUMENT_VA(this, val_obj); in Append()
128 m_opaque_up->Append(val_obj); in Append()
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBValueList.h32 void Append(const lldb::SBValue &val_obj);
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBValueList.i88 Append (const lldb::SBValue &val_obj);