Home
last modified time | relevance | path

Searched refs:GetValueAtIndex (Results 1 – 25 of 51) sorted by relevance

123

/llvm-project-15.0.7/lldb/test/API/commands/frame/recognizer/
H A DTestFrameRecognizer.py98 self.assertEqual(variables.GetValueAtIndex(0).name, "a")
99 self.assertEqual(variables.GetValueAtIndex(0).signed, 42)
100 … self.assertEqual(variables.GetValueAtIndex(0).GetValueType(), lldb.eValueTypeVariableArgument)
101 self.assertEqual(variables.GetValueAtIndex(1).name, "b")
102 self.assertEqual(variables.GetValueAtIndex(1).signed, 56)
103 … self.assertEqual(variables.GetValueAtIndex(1).GetValueType(), lldb.eValueTypeVariableArgument)
257 self.assertEqual(variables.GetValueAtIndex(0).name, "a")
258 self.assertEqual(variables.GetValueAtIndex(0).signed, 42)
259 … self.assertEqual(variables.GetValueAtIndex(0).GetValueType(), lldb.eValueTypeVariableArgument)
260 self.assertEqual(variables.GetValueAtIndex(1).name, "b")
[all …]
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBValueList.i97 GetValueAtIndex (uint32_t idx) const;
113 $self->GetValueAtIndex(i).GetDescription(description); in __str__()
144 return self.GetValueAtIndex(key)
151 value = self.GetValueAtIndex(idx)
161 value = self.GetValueAtIndex(idx)
H A DSBEnvironment.i34 const char *GetValueAtIndex(size_t index);
/llvm-project-15.0.7/lldb/test/API/functionalities/gdb_remote_client/
H A DTestNestedRegDefinitions.py227 …t_name = process.GetThreadAtIndex(0).GetFrameAtIndex(0).GetRegisters().GetValueAtIndex(0).GetName()
230 …t_name = process.GetThreadAtIndex(0).GetFrameAtIndex(0).GetRegisters().GetValueAtIndex(1).GetName()
233 …t_name = process.GetThreadAtIndex(0).GetFrameAtIndex(0).GetRegisters().GetValueAtIndex(2).GetName()
H A DTestAArch64XMLRegOffsets.py118 0).GetFrameAtIndex(0).GetRegisters().GetValueAtIndex(0)
/llvm-project-15.0.7/lldb/source/API/
H A DSBValueList.cpp42 lldb::SBValue GetValueAtIndex(uint32_t index) { in GetValueAtIndex() function in ValueListImpl
147 SBValue SBValueList::GetValueAtIndex(uint32_t idx) const { in GetValueAtIndex() function in SBValueList
152 sb_value = m_opaque_up->GetValueAtIndex(idx); in GetValueAtIndex()
H A DSBEnvironment.cpp66 const char *SBEnvironment::GetValueAtIndex(size_t index) { in GetValueAtIndex() function in SBEnvironment
/llvm-project-15.0.7/lldb/test/API/python_api/value/
H A DTestValueAPI.py56 days_of_week = list.GetValueAtIndex(0)
77 weekdays = list.GetValueAtIndex(0)
84 g_table = list.GetValueAtIndex(0)
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.cpp443 error = argument_values.GetValueAtIndex(0)->GetValueAsData(&exe_ctx, data, in RefreshTrampolines()
914 argument_values.GetValueAtIndex(obj_index)->GetScalar().ULongLong(); in GetStepThroughDispatchPlan()
933 argument_values.GetValueAtIndex(sel_index)->GetScalar().ULongLong(); in GetStepThroughDispatchPlan()
947 Value super_value(*(argument_values.GetValueAtIndex(obj_index))); in GetStepThroughDispatchPlan()
973 Value super_value(*(argument_values.GetValueAtIndex(obj_index))); in GetStepThroughDispatchPlan()
996 Value isa_value(*(argument_values.GetValueAtIndex(obj_index))); in GetStepThroughDispatchPlan()
1060 dispatch_values.PushValue(*(argument_values.GetValueAtIndex(obj_index))); in GetStepThroughDispatchPlan()
1065 *(argument_values.GetValueAtIndex(sel_index))); in GetStepThroughDispatchPlan()
H A DAppleObjCRuntimeV2.cpp1969 arguments.GetValueAtIndex(index++)->GetScalar() = in UpdateISAToDescriptorMap()
1971 arguments.GetValueAtIndex(index++)->GetScalar() = class_infos_addr; in UpdateISAToDescriptorMap()
1972 arguments.GetValueAtIndex(index++)->GetScalar() = class_infos_byte_size; in UpdateISAToDescriptorMap()
1975 arguments.GetValueAtIndex(index++)->GetScalar() = class_buffer_addr; in UpdateISAToDescriptorMap()
1984 arguments.GetValueAtIndex(index++)->GetScalar() = dump_log ? 1 : 0; in UpdateISAToDescriptorMap()
2206 arguments.GetValueAtIndex(0)->GetScalar() = objc_opt_ptr; in UpdateISAToDescriptorMap()
2207 arguments.GetValueAtIndex(1)->GetScalar() = shared_cache_base_addr; in UpdateISAToDescriptorMap()
2208 arguments.GetValueAtIndex(2)->GetScalar() = class_infos_addr; in UpdateISAToDescriptorMap()
2209 arguments.GetValueAtIndex(3)->GetScalar() = relative_selector_offset_addr; in UpdateISAToDescriptorMap()
2210 arguments.GetValueAtIndex(4)->GetScalar() = class_infos_byte_size; in UpdateISAToDescriptorMap()
[all …]
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_valuelist.py11 obj.GetValueAtIndex(100)
/llvm-project-15.0.7/lldb/test/API/commands/register/register/aarch64_sve_registers/rw_access_static_config/
H A DTestSVERegisters.py99 sve_registers = registerSets.GetValueAtIndex(2)
154 sve_registers = registerSets.GetValueAtIndex(2)
/llvm-project-15.0.7/lldb/source/Host/macosx/cfcpp/
H A DCFCMutableArray.h29 const void *GetValueAtIndex(CFIndex idx) const;
H A DCFCMutableArray.cpp55 const void *CFCMutableArray::GetValueAtIndex(CFIndex idx) const { in GetValueAtIndex() function in CFCMutableArray
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBEnvironment.h61 const char *GetValueAtIndex(size_t index);
H A DSBValueList.h38 lldb::SBValue GetValueAtIndex(uint32_t idx) const;
/llvm-project-15.0.7/lldb/test/API/lang/objc/exceptions/
H A DTestObjCExceptions.py43 self.assertEqual(variables.GetValueAtIndex(0).name, "exception")
44 … self.assertEqual(variables.GetValueAtIndex(0).GetValueType(), lldb.eValueTypeVariableArgument)
/llvm-project-15.0.7/lldb/test/API/macosx/builtin-debugtrap/
H A DTestBuiltinDebugTrap.py38 global_value = list.GetValueAtIndex(0)
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOS.cpp275 argument_values.GetValueAtIndex(0)->GetScalar().UInt(-1); in NotifyBreakpointHit()
280 argument_values.GetValueAtIndex(1)->GetScalar().UInt(-1); in NotifyBreakpointHit()
283 argument_values.GetValueAtIndex(2)->GetScalar().ULongLong(-1); in NotifyBreakpointHit()
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/minidump-new/
H A DTestMiniDumpNew.py200 gpr = registers.GetValueAtIndex(0)
224 fpr = registers.GetValueAtIndex(1)
267 gpr = registers.GetValueAtIndex(0)
283 fpr = registers.GetValueAtIndex(1)
/llvm-project-15.0.7/lldb/test/API/linux/aarch64/unwind_signal/
H A DTestUnwindSignal.py59 regs = frame.GetRegisters().GetValueAtIndex(0)
/llvm-project-15.0.7/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp840 arguments.GetValueAtIndex(0)->GetScalar() = path_addr; in DoLoadImage()
841 arguments.GetValueAtIndex(1)->GetScalar() = path_array_addr; in DoLoadImage()
842 arguments.GetValueAtIndex(2)->GetScalar() = buffer_addr; in DoLoadImage()
843 arguments.GetValueAtIndex(3)->GetScalar() = return_addr; in DoLoadImage()
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DOptionValueArray.h61 lldb::OptionValueSP GetValueAtIndex(size_t idx) const { in GetValueAtIndex() function
/llvm-project-15.0.7/lldb/examples/python/
H A Dcmdtemplate.py133 variable = variables_list.GetValueAtIndex(i)
/llvm-project-15.0.7/lldb/source/Plugins/Platform/Windows/
H A DPlatformWindows.cpp325 parameters.GetValueAtIndex(0)->GetScalar() = injected_name; in DoLoadImage()
326 parameters.GetValueAtIndex(1)->GetScalar() = injected_paths; in DoLoadImage()
327 parameters.GetValueAtIndex(2)->GetScalar() = injected_result; in DoLoadImage()

123