Home
last modified time | relevance | path

Searched refs:SetItem (Results 1 – 11 of 11) sorted by relevance

/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.Tools.pas136 procedure SetItem(Index: Integer; const Value: T);
181 property Items[Index: Integer]: T read GetItem write SetItem; default;
190 procedure SetItem(const Key: TKey; const Value: TValue);
205 property Items[const Key: TKey]: TValue read GetItem write SetItem; default;
225 procedure SetItem(Index: Integer; const Value: T);
293 procedure SetItem(const Key: TKey; const Value: TValue);
527 procedure TList<T>.SetItem(Index: Integer; const Value: T); procedure
651 procedure TDictionary<TKey,TValue>.SetItem(const Key: TKey; const Value: TValue); procedure
864 SetItem(Key,Value)
DAntlr.Runtime.Collections.pas105 procedure SetItem(const Key: TKey; const Value: TValue); procedure
121 property Items[const Key: TKey]: TValue read GetItem write SetItem; default;
179 SetItem(Key, Value)
244 procedure THashList<TKey, TValue>.SetItem(const Key: TKey; const Value: TValue); procedure
/external/lzma/CPP/7zip/Archive/7z/
D7zItem.h131 void SetItem(unsigned index, bool defined, UInt32 value);
165 void SetItem(unsigned index, bool defined, UInt64 value);
D7zOut.cpp863 void CUInt32DefVector::SetItem(unsigned index, bool defined, UInt32 value) in SetItem() function in NArchive::N7z::CUInt32DefVector
875 void CUInt64DefVector::SetItem(unsigned index, bool defined, UInt64 value) in SetItem() function in NArchive::N7z::CUInt64DefVector
890 CTime.SetItem(index, file2.CTimeDefined, file2.CTime); in AddFile()
891 ATime.SetItem(index, file2.ATimeDefined, file2.ATime); in AddFile()
892 MTime.SetItem(index, file2.MTimeDefined, file2.MTime); in AddFile()
893 StartPos.SetItem(index, file2.StartPosDefined, file2.StartPos); in AddFile()
894 Attrib.SetItem(index, file2.AttribDefined, file2.Attrib); in AddFile()
/external/lzma/CPP/Windows/Control/
DListView.cpp62 return SetItem(&item); in SetSubItem()
95 return SetItem(&item); in SetSubItem()
DListView.h49 bool SetItem(const LVITEM* item) { return BOOLToBool(ListView_SetItem(_window, item)); } in SetItem() function
58 …bool SetItem(const LV_ITEMW* item) { return BOOLToBool((BOOL)SendMsg(LVM_SETITEMW, 0, (LPARAM)item… in SetItem() function
DComboBox.h55 LRESULT SetItem(COMBOBOXEXITEM *item) { return SendMsg(CBEM_SETITEM, 0, (LPARAM)item); } in SetItem() function
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
DAntlr.Runtime.Tools.Tests.pas286 FIList.SetItem(Index, Value);
459 FIDictionary.SetItem(Key, Value);
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DPythonDataObjects.cpp759 Error PythonDictionary::SetItem(const PythonObject &key, in SetItem() function in PythonDictionary
769 Error PythonDictionary::SetItem(const Twine &key, in SetItem() function in PythonDictionary
781 Error error = SetItem(key, value); in SetItemForKey()
1562 if (Error error = globals.SetItem("__builtins__", builtins)) in Init()
DPythonDataObjects.h578 llvm::Error SetItem(const PythonObject &key, const PythonObject &value) const;
579 llvm::Error SetItem(const llvm::Twine &key, const PythonObject &value) const;
/external/llvm-project/lldb/unittests/ScriptInterpreter/Python/
DPythonDataObjectsTests.cpp633 llvm::Error error = globals.SetItem("__builtins__", builtins); in TEST_F()