Home
last modified time | relevance | path

Searched refs:itemList (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Lib/idlelib/
DconfigDialog.py778 itemList = idleConf.GetSectionList('user', 'keys')
779 itemList.sort()
780 if not itemList:
782 self.optMenuKeysCustom.SetMenu(itemList, '- no custom keys -')
784 self.optMenuKeysCustom.SetMenu(itemList, itemList[0])
807 itemList = idleConf.GetSectionList('user', 'highlight')
808 itemList.sort()
809 if not itemList:
811 self.optMenuThemeCustom.SetMenu(itemList, '- no custom themes -')
813 self.optMenuThemeCustom.SetMenu(itemList, itemList[0])
[all …]
/external/python/cpython3/Lib/idlelib/
Dconfigdialog.py780 itemList = idleConf.GetSectionList('user', 'keys')
781 itemList.sort()
782 if not itemList:
784 self.optMenuKeysCustom.SetMenu(itemList, '- no custom keys -')
786 self.optMenuKeysCustom.SetMenu(itemList, itemList[0])
811 itemList = idleConf.GetSectionList('user', 'highlight')
812 itemList.sort()
813 if not itemList:
815 self.optMenuThemeCustom.SetMenu(itemList, '- no custom themes -')
817 self.optMenuThemeCustom.SetMenu(itemList, itemList[0])
[all …]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowLog.java127 Queue<LogItem> itemList; in addLog() local
131 itemList = new ConcurrentLinkedQueue<>(); in addLog()
132 logsByTag.put(tag, itemList); in addLog()
134 itemList = logsByTag.get(tag); in addLog()
138 itemList.add(item); in addLog()
/external/caliper/caliper/src/main/java/com/google/caliper/util/
DUtil.java139 ImmutableList<T> itemList = ImmutableList.copyOf(items); in assignNames() local
141 for (int i = 0; i < itemList.size(); i++) { in assignNames()
142 itemNamesBuilder.put(itemList.get(i), generateUniqueName(i)); in assignNames()
/external/replicaisland/tools/
DExtractPoints.js59 var itemList = main_path.subPathItems; variable
60 if (!itemList) {
63 for (var x = 0; x < itemList.length; x++) {
64 var item = itemList[x];
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DDateTimeGeneratorTest.java783 final List itemList = formatParser.set(pattern).getItems(); in replaceZoneString() local
785 for (int i = 0; i < itemList.size(); ++i) { in replaceZoneString()
786 Object item = itemList.get(i); in replaceZoneString()
792 itemList.set(i, new VariableField(newZone, true)); in replaceZoneString()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DDateTimeGeneratorTest.java780 final List itemList = formatParser.set(pattern).getItems(); in replaceZoneString() local
782 for (int i = 0; i < itemList.size(); ++i) { in replaceZoneString()
783 Object item = itemList.get(i); in replaceZoneString()
789 itemList.set(i, new VariableField(newZone, true)); in replaceZoneString()