Home
last modified time | relevance | path

Searched refs:Iterable (Results 1 - 25 of 153) sorted by relevance

1234567

/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-iter.hh152 template <typename Iterable>
153 using hb_iter_type = decltype (hb_deref (hb_declval (Iterable)).iter ());
154 template <typename Iterable>
155 using hb_item_type = decltype (*hb_deref (hb_declval (Iterable)).iter ());
283 #define hb_is_iterable(Iterable) hb_is_iterable<Iterable>::value
326 template <typename Iterable,
327 hb_requires (hb_is_iterable (Iterable))>
328 static inline auto begin (Iterable&& iterable) HB_AUTO_RETURN (hb_iter (iterable).begin ())
330 template <typename Iterable,
[all...]
H A Dhb-set.hh55 template <typename Iterable,
56 hb_requires (hb_is_iterable (Iterable))>
57 hb_sparseset_t (const Iterable &o) : hb_sparseset_t () in hb_sparseset_t()
164 template <typename Iterable,
165 hb_requires (hb_is_iterable (Iterable))>
166 hb_set_t (const Iterable &o) : hb_sparseset_t<hb_bit_set_invertible_t> (o) {} in hb_set_t()
H A Dhb-map.hh60 template <typename Iterable,
61 hb_requires (hb_is_iterable (Iterable))>
62 hb_hashmap_t (const Iterable &o) : hb_hashmap_t () in hb_hashmap_t()
373 template <typename Iterable,
374 hb_requires (hb_is_iterable (Iterable))>
375 hb_map_t (const Iterable &o) : hashmap (o) {} in hb_map_t()
H A Dhb-vector.hh48 template <typename Iterable,
49 hb_requires (hb_is_iterable (Iterable))>
50 hb_vector_t (const Iterable &o) : hb_vector_t () in hb_vector_t()
319 template <typename Iterable,
320 hb_requires (hb_is_iterable (Iterable))>
321 hb_sorted_vector_t (const Iterable &o) : hb_vector_t<Type> (o) {}
H A Dtest-iter.cc105 template <typename Iterable,
106 hb_requires (hb_is_iterable (Iterable))>
108 test_iterable (const Iterable &lst = Null (Iterable)) in test_iterable() argument
/third_party/mesa3d/.gitlab-ci/tests/lava/
H A Dhelpers.py4 from typing import Callable, Generator, Iterable, Optional, Tuple, Union namespace
53 messages: dict[LogSectionType, Iterable[int]], result: Optional[str] = None
54 ) -> Iterable[tuple[dict, Iterable[int]]]:
80 tick_fn: Union[Generator, Iterable[int], int] = 1,
89 elif isinstance(tick_fn, Iterable):
111 elif isinstance(tick_fn, Iterable):
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DIterableComparator.java18 public class IterableComparator<T> implements Comparator<Iterable<T>> {
36 public int compare(Iterable<T> a, Iterable<T> b) { in compare()
62 public static <T> int compareIterables(Iterable<T> a, Iterable<T> b) { in compareIterables()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DIterableComparator.java20 public class IterableComparator<T> implements Comparator<Iterable<T>> {
38 public int compare(Iterable<T> a, Iterable<T> b) { in compare()
64 public static <T> int compareIterables(Iterable<T> a, Iterable<T> b) { in compareIterables()
/third_party/typescript/tests/baselines/reference/
H A DgeneratorOverloads1.js3 function* f(s: string): Iterable<any>;
4 function* f(s: number): Iterable<any>;
5 function* f(s: any): Iterable<any> { }
H A DgeneratorOverloads5.js3 function f(s: string): Iterable<any>;
4 function f(s: number): Iterable<any>;
5 function* f(s: any): Iterable<any> { }
H A DtypeArgumentInferenceApparentType2.js2 function method<T>(iterable: Iterable<T>): T {
3 function inner<U extends Iterable<T>>() {
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/regex/
H A DRule.java39 Iterable<ResultSpec> specs, in staticRule()
51 Iterable<ResultSpec> specs, in dynamicRule()
74 Iterable<ResultSpec> resultSpecs, in Rule()
140 Iterable<ResultSpec> specs, in StaticRule()
164 Iterable<ResultSpec> specs, in DynamicRule()
/third_party/python/Lib/wsgiref/
H A Dtypes.py3 from collections.abc import Callable, Iterable, Iterator namespace
31 Iterable[bytes]]
54 ) -> Iterable[bytes]: ...
/third_party/jinja2/
H A Dfilters.py145 value: t.Union[str, t.Mapping[str, t.Any], t.Iterable[t.Tuple[str, t.Any]]]
162 if isinstance(value, str) or not isinstance(value, abc.Iterable):
166 items: t.Iterable[t.Tuple[str, t.Any]] = value.items()
373 value: "t.Iterable[V]",
429 value: "t.Iterable[V]",
461 value: "t.Iterable[V]",
482 value: "t.Iterable[V]",
502 value: "t.Iterable[V]",
555 value: t.Iterable,
613 value: t.Union[t.AsyncIterable, t.Iterable],
[all...]
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
H A DFieldMaskUtil.java106 public static FieldMask fromStringList(Class<? extends Message> type, Iterable<String> paths) { in fromStringList()
115 public static FieldMask fromStringList(Descriptor descriptor, Iterable<String> paths) { in fromStringList()
123 public static FieldMask fromStringList(Iterable<String> paths) { in fromStringList()
127 private static FieldMask fromStringList(Optional<Descriptor> descriptor, Iterable<String> paths) { in fromStringList()
158 Class<? extends Message> type, Iterable<Integer> fieldNumbers) { in fromFieldNumbers()
192 Iterable<String> paths = Splitter.on(FIELD_PATH_SEPARATOR).split(value); in fromJsonString()
/third_party/python/Lib/importlib/resources/
H A D_itertools.py5 Iterable,
19 iterable: Iterable[_T], key: Optional[Callable[[_T], _U]] = None
/third_party/mbedtls/tests/scripts/
H A Dtest_psa_constant_names.py31 from typing import Iterable, List, Optional, Tuple namespace
38 def gather_inputs(headers: Iterable[str],
39 test_suites: Iterable[str],
52 expressions: Iterable[str],
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DAbstractMessageLite.java141 protected static <T> void addAll(final Iterable<T> values, final Collection<? super T> list) { in addAll()
145 protected static <T> void addAll(final Iterable<T> values, final List<? super T> list) { in addAll()
367 private static <T> void addAllCheckingNulls(Iterable<T> values, List<? super T> list) { in addAllCheckingNulls()
393 protected static <T> void addAll(final Iterable<T> values, final Collection<? super T> list) { in addAll()
404 protected static <T> void addAll(final Iterable<T> values, final List<? super T> list) { in addAll()
H A DSmallSortedMap.java193 public Iterable<Map.Entry<K, V>> getOverflowEntries() { in getOverflowEntries()
199 Iterable<Map.Entry<K, V>> getOverflowEntriesDescending() { in getOverflowEntriesDescending()
626 * Helper class that holds immutable instances of an Iterable/Iterator that we return when the
650 private static final Iterable<Object> ITERABLE =
651 new Iterable<Object>() {
659 static <T> Iterable<T> iterable() { in iterable()
660 return (Iterable<T>) ITERABLE; in iterable()
/third_party/python/Lib/
H A D_collections_abc.py20 "Hashable", "Iterable", "Iterator", "Generator", "Reversible",
38 # assert isinstance(it, Iterable)
253 class Iterable(metaclass=ABCMeta): class
264 if cls is Iterable:
271 class Iterator(Iterable):
306 class Reversible(Iterable):
405 class Collection(Sized, Iterable, Container):
586 if not isinstance(other, Iterable):
600 if not isinstance(other, Iterable):
609 if not isinstance(other, Iterable)
[all...]
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/
H A DMetadataTableSchema.java69 public static Regions of(Iterable<PhoneRegion> regions) { in of()
73 private Regions(Iterable<PhoneRegion> regions) { in Regions()
97 private DigitSequences(Iterable<DigitSequence> numbers) { in DigitSequences()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
H A DXCldrStub.java111 public Iterable<Entry<K, V>> entries() { in entries()
149 private static class MultimapIterator<K,V> implements Iterator<Entry<K,V>>, Iterable<Entry<K,V>> {
227 // public static class Counter<T> implements Iterable<T>{
252 public static <T> String join(Iterable<T> source, String separator) { in join()
264 public static <T, U extends Iterable<T>> String join(U source, String separator) { in join()
280 public <T> String join(Iterable<T> source) { in join()
313 public Iterable<String> split(String input) { in split()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/
H A DXCldrStub.java116 public Iterable<Entry<K, V>> entries() { in entries()
157 private static class MultimapIterator<K,V> implements Iterator<Entry<K,V>>, Iterable<Entry<K,V>> {
244 // public static class Counter<T> implements Iterable<T>{
269 public static <T> String join(Iterable<T> source, String separator) { in join()
284 public static <T, U extends Iterable<T>> String join(U source, String separator) { in join()
303 public <T> String join(Iterable<T> source) { in join()
339 public Iterable<String> split(String input) { in split()
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/
H A Dtags.py15 Iterable,
174 abis: Optional[Iterable[str]] = None,
175 platforms: Optional[Iterable[str]] = None,
272 abis: Optional[Iterable[str]] = None,
273 platforms: Optional[Iterable[str]] = None,
319 platforms: Optional[Iterable[str]] = None,
/third_party/mbedtls/scripts/mbedtls_dev/
H A Dtest_case.py22 from typing import Iterable, List, Optional namespace
87 test_cases: Iterable[TestCase],

Completed in 14 milliseconds

1234567