Home
last modified time | relevance | path

Searched refs:IIterable (Results 1 – 25 of 225) sorted by relevance

123456789

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/adaptable/
H A DSelectionAdapterTest.java24 import org.eclipse.core.expressions.IIterable;
42 IIterable<?> iterate = Platform.getAdapterManager().getAdapter(empty, IIterable.class); in testBasicSelectionEmpty()
52 IIterable<?> iterate = Platform.getAdapterManager().getAdapter(selection, IIterable.class); in testBasicSelection()
65 IIterable<?> iterate = Platform.getAdapterManager().getAdapter(selection, IIterable.class); in testStructuredSelectionEmpty()
76 IIterable<?> iterate = Platform.getAdapterManager().getAdapter(selection, IIterable.class); in testStructuredSelectionOne()
92 IIterable<?> iterate = Platform.getAdapterManager().getAdapter(selection, IIterable.class); in testStructuredSelection()
/dports/devel/glib20/glib-2.70.4/gio/
H A Dgwin32api-iterator.h2 typedef interface IIterable IIterable; typedef
80 IIterable *This,
85 IIterable *This);
88 IIterable *This);
92 IIterable *This,
97 IIterable *This,
101 IIterable *This,
106 IIterable *This,
112 interface IIterable {
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/
H A DSelectionAdapterFactory.java20 import org.eclipse.core.expressions.IIterable;
34 private static final IIterable ITERATE_EMPTY = () -> Collections.EMPTY_LIST.iterator();
39 private static final Class[] CLASSES = new Class[] { IIterable.class, ICountable.class };
44 if (adapterType == IIterable.class) { in getAdapter()
58 return (IIterable) () -> ((IStructuredSelection) sel).iterator(); in iterable()
61 return (IIterable) () -> list.iterator(); in iterable()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/
H A DSelectionAdapterFactory.java21 import org.eclipse.core.expressions.IIterable;
38 private static final IIterable<?> ITERATE_EMPTY = () -> Collections.emptyList().iterator();
43 private static final Class<?>[] CLASSES = new Class[] { IIterable.class, ICountable.class };
48 if (adapterType == IIterable.class) { in getAdapter()
57 private IIterable<?> iterable(final ISelection sel) { in iterable()
/dports/devel/py-zope.interface/zope.interface-5.3.0/src/zope/interface/common/
H A Dcollections.py133 class IIterable(ABCInterface): class
143 class IIterator(IIterable):
146 class IReversible(IIterable):
147 abc = _new_in_ver('Reversible', PY36, (IIterable.getABC(),))
169 IIterable,
172 (ISized.getABC(), IIterable.getABC(), IContainer.getABC()))
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.runtime/tests/org.eclipse.core.expressions.tests/src/org/eclipse/core/internal/expressions/tests/
H A DCollectionAdapterFactory.java20 import org.eclipse.core.expressions.IIterable;
29 …if (adapterType.equals(IIterable.class) && adaptableObject instanceof ExpressionTests.CollectionWr… in getAdapter()
30 return adapterType.cast(new IIterable<String>() { in getAdapter()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.runtime/bundles/org.eclipse.core.expressions/src/org/eclipse/core/internal/expressions/
H A DExpressions.java34 import org.eclipse.core.expressions.IIterable;
215 public static IIterable<?> getAsIIterable(Object var, Expression expression) throws CoreException { in getAsIIterable()
216 if (var instanceof IIterable) { in getAsIIterable()
217 return (IIterable<?>)var; in getAsIIterable()
220 IIterable<?> result= manager.getAdapter(var, IIterable.class); in getAsIIterable()
224 if (manager.queryAdapter(var, IIterable.class.getName()) == IAdapterManager.NOT_LOADED) in getAsIIterable()
/dports/www/chromium-legacy/chromium-88.0.4324.182/device/bluetooth/test/
H A Dfake_device_information_winrt.cc31 using ABI::Windows::Foundation::Collections::IIterable;
124 IIterable<HSTRING>* additional_properties, in CreateFromIdAsyncAdditionalProperties()
149 IIterable<HSTRING>* additional_properties, in FindAllAsyncAqsFilterAndAdditionalProperties()
174 IIterable<HSTRING>* additional_properties, in CreateWatcherAqsFilterAndAdditionalProperties()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/runtime/interopservices/windowsruntime/
H A Divector.cs22 internal interface IVector<T> : IIterable<T>
47 internal interface IVector_Raw<T> : IIterable<T>
71 internal interface IVectorView<T> : IIterable<T>
H A Dimap.cs22 internal interface IMap<K, V> : IIterable<IKeyValuePair<K, V>>
40 internal interface IMapView<K, V> : IIterable<IKeyValuePair<K, V>>
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/windows-0.24.0/src/Windows/Foundation/Collections/
H A Dmod.rs32 impl<T: ::windows::runtime::RuntimeType + 'static> IIterable<T> { implementation
45 fn from(value: IIterable<T>) -> Self { in from()
50 fn from(value: &IIterable<T>) -> Self { in from()
65 fn from(value: IIterable<T>) -> Self { in from()
70 fn from(value: &IIterable<T>) -> Self { in from()
1040 fn into_param(self) -> ::windows::runtime::Param<'a, IIterable<T>> { in into_param()
1045 fn into_param(self) -> ::windows::runtime::Param<'a, IIterable<T>> { in into_param()
1444 fn into_param(self) -> ::windows::runtime::Param<'a, IIterable<T>> { in into_param()
1449 fn into_param(self) -> ::windows::runtime::Param<'a, IIterable<T>> { in into_param()
1690 fn into_param(self) -> ::windows::runtime::Param<'a, IIterable<T>> { in into_param()
[all …]
/dports/devel/py-zope.schema/zope.schema-4.2.2/src/zope/schema/
H A Dinterfaces.py197 class IIterable(IField): class
285 class IBytes(IMinMaxLen, IIterable, IField):
291 class IText(IMinMaxLen, IIterable, IField):
432 class ICollection(IMinMaxLen, IIterable, IContainer):
511 class IDict(IMinMaxLen, IIterable, IContainer):
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtcanvas.h65 …ngRect, ABI::Windows::Foundation::Collections::IIterable<ABI::Windows::Foundation::Collections::II…
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtcanvas.h65 …ngRect, ABI::Windows::Foundation::Collections::IIterable<ABI::Windows::Foundation::Collections::II…
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtcanvas.h65 …ngRect, ABI::Windows::Foundation::Collections::IIterable<ABI::Windows::Foundation::Collections::II…
/dports/devel/qt5-qmake/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtcanvas.h65 …ngRect, ABI::Windows::Foundation::Collections::IIterable<ABI::Windows::Foundation::Collections::II…
/dports/textproc/qt5-xml/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtcanvas.h65 …ngRect, ABI::Windows::Foundation::Collections::IIterable<ABI::Windows::Foundation::Collections::II…
/dports/databases/qt5-sql/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtcanvas.h65 …ngRect, ABI::Windows::Foundation::Collections::IIterable<ABI::Windows::Foundation::Collections::II…
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtcanvas.h65 …ngRect, ABI::Windows::Foundation::Collections::IIterable<ABI::Windows::Foundation::Collections::II…
/dports/databases/qt5-sqldrivers-odbc/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtcanvas.h65 …ngRect, ABI::Windows::Foundation::Collections::IIterable<ABI::Windows::Foundation::Collections::II…
/dports/databases/qt5-sqldrivers-pgsql/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtcanvas.h65 …ngRect, ABI::Windows::Foundation::Collections::IIterable<ABI::Windows::Foundation::Collections::II…
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtcanvas.h65 …ngRect, ABI::Windows::Foundation::Collections::IIterable<ABI::Windows::Foundation::Collections::II…
/dports/net/qt5-network/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtcanvas.h65 …ngRect, ABI::Windows::Foundation::Collections::IIterable<ABI::Windows::Foundation::Collections::II…
/dports/x11-toolkits/qt5-widgets/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtcanvas.h65 …ngRect, ABI::Windows::Foundation::Collections::IIterable<ABI::Windows::Foundation::Collections::II…
/dports/x11-toolkits/qt5-gui/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtcanvas.h65 …ngRect, ABI::Windows::Foundation::Collections::IIterable<ABI::Windows::Foundation::Collections::II…

123456789