Home
last modified time | relevance | path

Searched refs:objectList (Results 1 – 25 of 689) sorted by relevance

12345678910>>...28

/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web.ApplicationServices/System.Web.UI/
H A DKeyedList.cs38 ArrayList objectList = new ArrayList (); field in System.Web.UI.KeyedList
49 objectList.Clear (); in Clear()
76 objectList.RemoveAt (index); in Remove()
85 objectList.RemoveAt (idx); in RemoveAt()
90 return new KeyedListEnumerator (objectList); in IDictionary.GetEnumerator()
95 return new KeyedListEnumerator (objectList); in IOrderedDictionary.GetEnumerator()
100 return new KeyedListEnumerator (objectList); in IEnumerable.GetEnumerator()
103 get { return objectList.Count; }
146 for (int i = 0; i < objectList.Count; i++)
157 for (int i = 0; i < objectList.Count; i++)
[all …]
/dports/audio/jid3lib/jid3lib-0.5.4/src/org/farng/mp3/object/
H A DObjectGroupRepeated.java17 private ArrayList objectList; field in ObjectGroupRepeated
26 this.objectList = new ArrayList(); in ObjectGroupRepeated()
35 for (int i = 0; i < copyObject.objectList.size(); i++) { in ObjectGroupRepeated()
37 this.objectList.add(newObject); in ObjectGroupRepeated()
46 return this.objectList; in getObjectList()
56 final Iterator iterator = this.objectList.listIterator(); in getSize()
65 this.objectList.add(object); in addObject()
77 if (this.objectList.equals(objectGroupRepeated.objectList) == false) { in equals()
107 this.objectList.add(object); in readByteArray()
127 final Iterator iterator = this.objectList.listIterator(); in toString()
[all …]
/dports/audio/jid3lib/jid3lib-0.5.4/src/org/farng/mp3/
H A DAbstractMP3FragmentBody.java49 objectList.add(newObject); in AbstractMP3FragmentBody()
60 final Iterator iterator = objectList.listIterator(); in getBriefDescription()
83 final Iterator iterator = objectList.listIterator(); in getDescription()
98 return objectList.listIterator(); in getObjectListIterator()
108 final Iterator iterator = objectList.listIterator(); in setObject()
127 final Iterator iterator = objectList.listIterator(); in getObject()
147 final Iterator iterator = objectList.listIterator(); in getSize()
171 final int objectListSize = objectList.size(); in isSubsetOf()
194 if (!objectList.equals(abstractMP3FragmentBody.objectList)) { in equals()
206 return objectList.iterator(); in iterator()
[all …]
/dports/games/stendhal/stendhal-1.35/src/games/stendhal/server/core/scripting/lua/
H A DLuaArrayHelper.java89 final List<Object> objectList = new LinkedList<>(); in toList() local
95 objectList.add(null); in toList()
98 objectList.add(lv.toint()); in toList()
100 objectList.add(lv.tolong()); in toList()
102 objectList.add(lv.todouble()); // all other number types to double in toList()
105 objectList.add(lv.toboolean()); in toList()
107 objectList.add(toList(lv.checktable())); in toList()
109 objectList.add(lv.touserdata()); in toList()
111 objectList.add(lv.tojstring()); in toList()
117 return objectList; in toList()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Mobile/UI/MobileControls/Design/
H A DObjectListGeneralPage.cs161 ObjectList objectList = (ObjectList)GetBaseControl(); in LoadComponent()
165 _txtBackCommandText.Text = objectList.BackCommandText; in LoadComponent()
166 _txtDetailsCommandText.Text = objectList.DetailsCommandText; in LoadComponent()
167 _txtMoreText.Text = objectList.MoreText; in LoadComponent()
194 ObjectList objectList = (ObjectList)GetBaseControl(); in SaveComponent()
205 objectList.ItemCount = itemCount; in SaveComponent()
220 objectList.ItemsPerPage = itemsPerPage; in SaveComponent()
227 objectList.BackCommandText = _txtBackCommandText.Text; in SaveComponent()
228 objectList.DetailsCommandText = _txtDetailsCommandText.Text; in SaveComponent()
229 objectList.MoreText = _txtMoreText.Text; in SaveComponent()
[all …]
/dports/finance/prestashop/prestashop/vendor/greenlion/php-sql-parser/src/PHPSQLParser/processors/
H A DDropProcessor.php100 if (!empty($objectList)) {
103 'sub_tree' => $objectList);
104 $objectList = array();
110 $last = array_pop($objectList);
112 $objectList[] = $last;
127 $objectList[] = $object;
134 if (!empty($objectList)) {
136 'sub_tree' => $objectList);
/dports/www/thirtybees/thirtybees-1.1.0/vendor/greenlion/php-sql-parser/src/PHPSQLParser/processors/
H A DDropProcessor.php100 if (!empty($objectList)) {
103 'sub_tree' => $objectList);
104 $objectList = array();
110 $last = array_pop($objectList);
112 $objectList[] = $last;
127 $objectList[] = $object;
134 if (!empty($objectList)) {
136 'sub_tree' => $objectList);
/dports/security/fwbuilder/fwbuilder-5.3.7/src/libgui/
H A DObjectSelectorWidget.cpp66 QListWidgetItem* item = m_dialog->objectList->item(0); in updateObjectsToUse()
72 item = m_dialog->objectList->item(m_dialog->objectList->row(item)+1); in updateObjectsToUse()
121 m_dialog->objectList->selectAll(); in selectAllUsed()
126 m_dialog->objectList->clearSelection(); in unselectAllUsed()
137 m_dialog->objectList->findItems( in addObject()
143 m_dialog->objectList->addItem(item2); in addObject()
155 QListWidgetItem* item1 = m_dialog->objectList->item(0); in removeObject()
160 item2 = m_dialog->objectList->item(m_dialog->objectList->row(item1)+1); in removeObject()
/dports/math/gap/gap-4.11.0/pkg/OpenMath-11.5.0/gap/
H A Dbinread.g637 objectList := [];
649 Add(objectList, omObject);
688 objectList := [];
696 Add(objectList, omSymbol);
704 objectList := [];
718 objectList := [];
721 Add(objectList, omSymbol);
722 Add(objectList, omObject);
761 objectList := [];
772 objectList := [];
[all …]
/dports/databases/sqlitestudio/sqlitestudio-3.3.3/SQLiteStudio3/guiSQLiteStudio/
H A Ddbobjlistmodel.cpp13 if (index.row() < 0 || index.row() >= objectList.size()) in data()
17 return objectList[index.row()]; in data()
27 return objectList.count(); in rowCount()
32 if (!idx.isValid() || column != 0 || row >= objectList.count()) in sibling()
80 objectList = resolver.getObjects(typeString().toLower()); in updateList()
81 unsortedObjectList = objectList; in updateList()
86 objectList.sort(); in updateList()
89 objectList.sort(Qt::CaseInsensitive); in updateList()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Mobile/UI/MobileControls/Design/Converters/
H A DDefaultCommandConverter.cs26 private Object[] GetCommands(ObjectList objectList) in GetCommands() argument
28 ObjectListCommandCollection commands = objectList.Commands; in GetCommands()
66 ObjectList objectList = null; in GetStandardValues()
69objectList = ((IDeviceSpecificChoiceDesigner)context.Instance).UnderlyingObject as ObjectList; in GetStandardValues()
73 objectList = (ObjectList)context.Instance; in GetStandardValues()
80 Debug.Assert(objectList != null); in GetStandardValues()
82 Object [] objValues = GetCommands(objectList); in GetStandardValues()
H A DDataFieldConverter.cs97 ObjectList objectList = null; in GetStandardValues()
134 objectList = component as ObjectList; in GetStandardValues()
136 if (objectList != null) in GetStandardValues()
138 foreach(ObjectListField field in objectList.Fields) in GetStandardValues()
145 autoGenerateFields = objectList.AutoGenerateFields; in GetStandardValues()
149 if (objectList == null || autoGenerateFields) in GetStandardValues()
/dports/cad/uranium/Uranium-3ed9c4de/UM/Qt/qml/UM/Preferences/
H A DManagementPage.qml14 property alias model: objectList.model;
15 property alias section: objectList.section;
16 property alias delegate: objectList.delegate;
21 property variant objectList: objectList;
98 id: objectList;
179 target: objectList.model
188 for (var i = 0; i < objectList.model.count; ++i)
190 if (objectList.model.getItem(i).id == base.currentItem.id)
197 objectList.currentIndex = itemIndex;
198 base.currentItem = itemIndex >= 0 ? objectList.model.getItem(itemIndex) : null;
/dports/games/torcs/torcs-1.3.7/src/modules/simu/simuv2/SOLID-2.0/src/
H A DC-api.cpp70 ObjectList objectList; variable
183 i != objectList.end(); ++i) { in dtChangeVertexBase()
199 ObjectList::iterator i = objectList.find(object); in dtSelectObject()
200 if (i != objectList.end()) { in dtSelectObject()
207 ObjectList::iterator i = objectList.find(object); in dtDeleteObject()
208 if (i != objectList.end()) { in dtDeleteObject()
211 objectList.erase(i); in dtDeleteObject()
293 j != objectList.end(); ++j) in dtProceed()
298 for (ObjectList::const_iterator i = objectList.begin(); in dtEnableCaching()
299 i != objectList.end(); ++i) in dtEnableCaching()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/tinsel/
H A Dobject.cpp41 static OBJECT *objectList = 0; variable
53 free(objectList); in FreeObjectList()
54 objectList = NULL; in FreeObjectList()
69 if (objectList == NULL) { in KillAllObjects()
71 objectList = (OBJECT *)calloc(NUM_OBJECTS, sizeof(OBJECT)); in KillAllObjects()
74 if (objectList == NULL) { in KillAllObjects()
80 pFreeObjects = objectList; in KillAllObjects()
84 objectList[i - 1].pNext = objectList + i; in KillAllObjects()
88 objectList[NUM_OBJECTS - 1].pNext = NULL; in KillAllObjects()
133 return (obj >= objectList && obj <= objectList + NUM_OBJECTS - 1); in isValidObject()
/dports/devel/capnproto080/capnproto-0.8.0/c++/src/kj/
H A Darena.c++53 while (objectList != nullptr) { in cleanup()
54 void* ptr = objectList + 1; in cleanup()
55 auto destructor = objectList->destructor; in cleanup()
56 objectList = objectList->next; in cleanup()
163 header->next = objectList; in setDestructor()
164 objectList = header; in setDestructor()
/dports/devel/capnproto/capnproto-0.9.0/c++/src/kj/
H A Darena.c++53 while (objectList != nullptr) { in cleanup()
54 void* ptr = objectList + 1; in cleanup()
55 auto destructor = objectList->destructor; in cleanup()
56 objectList = objectList->next; in cleanup()
163 header->next = objectList; in setDestructor()
164 objectList = header; in setDestructor()
/dports/games/scummvm/scummvm-2.5.1/engines/tinsel/
H A Dobject.cpp41 static OBJECT *objectList = nullptr; variable
53 free(objectList); in FreeObjectList()
54 objectList= nullptr; in FreeObjectList()
69 if (objectList == NULL) { in KillAllObjects()
71 objectList = (OBJECT *)calloc(NUM_OBJECTS, sizeof(OBJECT)); in KillAllObjects()
74 if (objectList == NULL) { in KillAllObjects()
80 pFreeObjects = objectList; in KillAllObjects()
84 objectList[i - 1].pNext = objectList + i; in KillAllObjects()
88 objectList[NUM_OBJECTS - 1].pNext= nullptr; in KillAllObjects()
133 return (obj >= objectList && obj <= objectList + NUM_OBJECTS - 1); in isValidObject()
/dports/x11-toolkits/qt5-declarative/kde-qtdeclarative-5.15.2p41/src/quick/designer/
H A Dqquickdesignersupportitems.cpp89 static void allSubObjects(QObject *object, QObjectList &objectList) in allSubObjects() argument
92 if (!object || objectList.contains(object)) in allSubObjects()
95 objectList.append(object); in allSubObjects()
121 allSubObjects(propertyObject, objectList); in allSubObjects()
133 allSubObjects(propertyObject, objectList); in allSubObjects()
142 allSubObjects(childObject, objectList); in allSubObjects()
150 allSubObjects(childItem, objectList); in allSubObjects()
156 QObjectList objectList; in tweakObjects() local
157 allSubObjects(object, objectList); in tweakObjects()
158 for (QObject* childObject : qAsConst(objectList)) { in tweakObjects()
/dports/x11-toolkits/qt5-declarative-test/kde-qtdeclarative-5.15.2p41/src/quick/designer/
H A Dqquickdesignersupportitems.cpp89 static void allSubObjects(QObject *object, QObjectList &objectList) in allSubObjects() argument
92 if (!object || objectList.contains(object)) in allSubObjects()
95 objectList.append(object); in allSubObjects()
121 allSubObjects(propertyObject, objectList); in allSubObjects()
133 allSubObjects(propertyObject, objectList); in allSubObjects()
142 allSubObjects(childObject, objectList); in allSubObjects()
150 allSubObjects(childItem, objectList); in allSubObjects()
156 QObjectList objectList; in tweakObjects() local
157 allSubObjects(object, objectList); in tweakObjects()
158 for (QObject* childObject : qAsConst(objectList)) { in tweakObjects()
/dports/databases/percona57-client/percona-server-5.7.36-39/storage/rocksdb/rocksdb/java/src/main/java/org/rocksdb/
H A DRocksCallbackObject.java40 /* @Nullable */ final List<? extends RocksCallbackObject> objectList) { in toNativeHandleList() argument
41 if (objectList == null) { in toNativeHandleList()
44 final int len = objectList.size(); in toNativeHandleList()
47 handleList[i] = objectList.get(i).nativeHandle_; in toNativeHandleList()
/dports/databases/rocksdb/rocksdb-6.26.1/java/src/main/java/org/rocksdb/
H A DRocksCallbackObject.java40 /* @Nullable */ final List<? extends RocksCallbackObject> objectList) { in toNativeHandleList() argument
41 if (objectList == null) { in toNativeHandleList()
44 final int len = objectList.size(); in toNativeHandleList()
47 handleList[i] = objectList.get(i).nativeHandle_; in toNativeHandleList()
/dports/databases/rocksdb-lite/rocksdb-6.26.1/java/src/main/java/org/rocksdb/
H A DRocksCallbackObject.java40 /* @Nullable */ final List<? extends RocksCallbackObject> objectList) { in toNativeHandleList() argument
41 if (objectList == null) { in toNativeHandleList()
44 final int len = objectList.size(); in toNativeHandleList()
47 handleList[i] = objectList.get(i).nativeHandle_; in toNativeHandleList()
/dports/databases/percona57-server/percona-server-5.7.36-39/storage/rocksdb/rocksdb/java/src/main/java/org/rocksdb/
H A DRocksCallbackObject.java40 /* @Nullable */ final List<? extends RocksCallbackObject> objectList) { in toNativeHandleList() argument
41 if (objectList == null) { in toNativeHandleList()
44 final int len = objectList.size(); in toNativeHandleList()
47 handleList[i] = objectList.get(i).nativeHandle_; in toNativeHandleList()
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/storage/rocksdb/rocksdb/java/src/main/java/org/rocksdb/
H A DRocksCallbackObject.java40 /* @Nullable */ final List<? extends RocksCallbackObject> objectList) { in toNativeHandleList() argument
41 if (objectList == null) { in toNativeHandleList()
44 final int len = objectList.size(); in toNativeHandleList()
47 handleList[i] = objectList.get(i).nativeHandle_; in toNativeHandleList()

12345678910>>...28