Home
last modified time | relevance | path

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

123

/external/llvm-project/lldb/bindings/interface/
DSBValueList.i96 GetValueAtIndex (uint32_t idx) const;
112 $self->GetValueAtIndex(i).GetDescription(description); in __str__()
143 return self.GetValueAtIndex(key)
150 value = self.GetValueAtIndex(idx)
160 value = self.GetValueAtIndex(idx)
DSBEnvironment.i33 const char *GetValueAtIndex(size_t index);
/external/llvm-project/lldb/test/API/commands/frame/recognizer/
DTestFrameRecognizer.py100 self.assertEqual(variables.GetValueAtIndex(0).name, "a")
101 self.assertEqual(variables.GetValueAtIndex(0).signed, 42)
102 … self.assertEqual(variables.GetValueAtIndex(0).GetValueType(), lldb.eValueTypeVariableArgument)
103 self.assertEqual(variables.GetValueAtIndex(1).name, "b")
104 self.assertEqual(variables.GetValueAtIndex(1).signed, 56)
105 … self.assertEqual(variables.GetValueAtIndex(1).GetValueType(), lldb.eValueTypeVariableArgument)
/external/llvm-project/lldb/source/API/
DSBValueList.cpp42 lldb::SBValue GetValueAtIndex(uint32_t index) { in GetValueAtIndex() function in ValueListImpl
152 SBValue SBValueList::GetValueAtIndex(uint32_t idx) const { in GetValueAtIndex() function in SBValueList
153 LLDB_RECORD_METHOD_CONST(lldb::SBValue, SBValueList, GetValueAtIndex, in GetValueAtIndex()
159 sb_value = m_opaque_up->GetValueAtIndex(idx); in GetValueAtIndex()
221 LLDB_REGISTER_METHOD_CONST(lldb::SBValue, SBValueList, GetValueAtIndex, in RegisterMethods()
DSBEnvironment.cpp69 const char *SBEnvironment::GetValueAtIndex(size_t index) { in GetValueAtIndex() function in SBEnvironment
70 LLDB_RECORD_METHOD(const char *, SBEnvironment, GetValueAtIndex, (size_t), in GetValueAtIndex()
144 LLDB_REGISTER_METHOD(const char *, SBEnvironment, GetValueAtIndex, (size_t)); in RegisterMethods()
/external/llvm-project/lldb/test/API/functionalities/gdb_remote_client/
DTestNestedRegDefinitions.py226 …t_name = process.GetThreadAtIndex(0).GetFrameAtIndex(0).GetRegisters().GetValueAtIndex(0).GetName()
229 …t_name = process.GetThreadAtIndex(0).GetFrameAtIndex(0).GetRegisters().GetValueAtIndex(1).GetName()
232 …t_name = process.GetThreadAtIndex(0).GetFrameAtIndex(0).GetRegisters().GetValueAtIndex(2).GetName()
DTestAArch64XMLRegOffsets.py117 0).GetFrameAtIndex(0).GetRegisters().GetValueAtIndex(0)
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCTrampolineHandler.cpp547 error = argument_values.GetValueAtIndex(0)->GetValueAsData(&exe_ctx, data, in RefreshTrampolines()
973 argument_values.GetValueAtIndex(obj_index)->GetScalar().ULongLong(); in GetStepThroughDispatchPlan()
990 argument_values.GetValueAtIndex(sel_index)->GetScalar().ULongLong(); in GetStepThroughDispatchPlan()
1004 Value super_value(*(argument_values.GetValueAtIndex(obj_index))); in GetStepThroughDispatchPlan()
1030 Value super_value(*(argument_values.GetValueAtIndex(obj_index))); in GetStepThroughDispatchPlan()
1053 Value isa_value(*(argument_values.GetValueAtIndex(obj_index))); in GetStepThroughDispatchPlan()
1110 dispatch_values.PushValue(*(argument_values.GetValueAtIndex(obj_index))); in GetStepThroughDispatchPlan()
1111 dispatch_values.PushValue(*(argument_values.GetValueAtIndex(sel_index))); in GetStepThroughDispatchPlan()
DAppleObjCRuntimeV2.cpp1396 arguments.GetValueAtIndex(0)->GetScalar() = hash_table.GetTableLoadAddress(); in UpdateISAToDescriptorMapDynamic()
1397 arguments.GetValueAtIndex(1)->GetScalar() = class_infos_addr; in UpdateISAToDescriptorMapDynamic()
1398 arguments.GetValueAtIndex(2)->GetScalar() = class_infos_byte_size; in UpdateISAToDescriptorMapDynamic()
1405 arguments.GetValueAtIndex(3)->GetScalar() = dump_log ? 1 : 0; in UpdateISAToDescriptorMapDynamic()
1677 arguments.GetValueAtIndex(0)->GetScalar() = objc_opt_ptr; in UpdateISAToDescriptorMapSharedCache()
1678 arguments.GetValueAtIndex(1)->GetScalar() = class_infos_addr; in UpdateISAToDescriptorMapSharedCache()
1679 arguments.GetValueAtIndex(2)->GetScalar() = class_infos_byte_size; in UpdateISAToDescriptorMapSharedCache()
1685 arguments.GetValueAtIndex(3)->GetScalar() = dump_log ? 1 : 0; in UpdateISAToDescriptorMapSharedCache()
2627 addr_t exception_addr = args.GetValueAtIndex(0)->GetScalar().ULongLong(); in ObjCExceptionRecognizedStackFrame()
/external/llvm-project/lldb/test/API/python_api/value/
DTestValueAPI.py59 days_of_week = list.GetValueAtIndex(0)
80 weekdays = list.GetValueAtIndex(0)
87 g_table = list.GetValueAtIndex(0)
/external/icing/icing/index/main/
Dmain-index.cc346 memcpy(&posting_list_id, main_lexicon_->GetValueAtIndex(new_main_tvi), in AddTerms()
410 memcpy(&posting_list_id, main_lexicon_->GetValueAtIndex(prefix_tvi), in AddBranchPoints()
483 const void* value = main_lexicon_->GetValueAtIndex(itr->second); in AddHits()
504 main_lexicon_->GetValueAtIndex(other_tvi_main_tvi_pair.second), in AddHits()
527 memcpy(&posting_list_id, main_lexicon_->GetValueAtIndex(tvi), in AddHitsForTerm()
/external/llvm-project/lldb/test/API/commands/register/register/aarch64_sve_registers/rw_access_static_config/
DTestSVERegisters.py56 sve_registers = registerSets.GetValueAtIndex(2)
111 sve_registers = registerSets.GetValueAtIndex(2)
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_valuelist.py11 obj.GetValueAtIndex(100)
/external/llvm-project/lldb/source/Host/macosx/cfcpp/
DCFCMutableArray.h29 const void *GetValueAtIndex(CFIndex idx) const;
DCFCMutableArray.cpp56 const void *CFCMutableArray::GetValueAtIndex(CFIndex idx) const { in GetValueAtIndex() function in CFCMutableArray
/external/llvm-project/lldb/include/lldb/API/
DSBEnvironment.h61 const char *GetValueAtIndex(size_t index);
DSBValueList.h38 lldb::SBValue GetValueAtIndex(uint32_t idx) const;
/external/llvm-project/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DDynamicLoaderMacOS.cpp267 argument_values.GetValueAtIndex(0)->GetScalar().UInt(-1); in NotifyBreakpointHit()
272 argument_values.GetValueAtIndex(1)->GetScalar().UInt(-1); in NotifyBreakpointHit()
275 argument_values.GetValueAtIndex(2)->GetScalar().ULongLong(-1); in NotifyBreakpointHit()
/external/llvm-project/lldb/test/API/lang/objc/exceptions/
DTestObjCExceptions.py45 self.assertEqual(variables.GetValueAtIndex(0).name, "exception")
46 … self.assertEqual(variables.GetValueAtIndex(0).GetValueType(), lldb.eValueTypeVariableArgument)
/external/llvm-project/lldb/test/API/functionalities/postmortem/minidump-new/
DTestMiniDumpNew.py202 gpr = registers.GetValueAtIndex(0)
226 fpr = registers.GetValueAtIndex(1)
269 gpr = registers.GetValueAtIndex(0)
285 fpr = registers.GetValueAtIndex(1)
/external/mdnsresponder/mDNSWindows/DLLX/
DTXTRecord.h140 STDMETHOD(GetValueAtIndex)(ULONG index, VARIANT* retval);
/external/llvm-project/lldb/test/API/macosx/builtin-debugtrap/
DTestBuiltinDebugTrap.py40 global_value = list.GetValueAtIndex(0)
/external/llvm-project/lldb/include/lldb/Interpreter/
DOptionValueArray.h63 lldb::OptionValueSP GetValueAtIndex(size_t idx) const { in GetValueAtIndex() function
/external/llvm-project/lldb/examples/python/
Dcmdtemplate.py133 variable = variables_list.GetValueAtIndex(i)
/external/llvm-project/lldb/source/Plugins/Platform/POSIX/
DPlatformPOSIX.cpp859 arguments.GetValueAtIndex(0)->GetScalar() = path_addr; in DoLoadImage()
860 arguments.GetValueAtIndex(1)->GetScalar() = path_array_addr; in DoLoadImage()
861 arguments.GetValueAtIndex(2)->GetScalar() = buffer_addr; in DoLoadImage()
862 arguments.GetValueAtIndex(3)->GetScalar() = return_addr; in DoLoadImage()

123