/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-iter.hh | 152 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 D | hb-set.hh | 55 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 D | hb-map.hh | 60 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 D | hb-vector.hh | 48 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 D | test-iter.cc | 105 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 D | helpers.py | 4 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 D | IterableComparator.java | 18 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 D | IterableComparator.java | 20 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 D | generatorOverloads1.js | 3 function* f(s: string): Iterable<any>; 4 function* f(s: number): Iterable<any>; 5 function* f(s: any): Iterable<any> { }
|
H A D | generatorOverloads5.js | 3 function f(s: string): Iterable<any>; 4 function f(s: number): Iterable<any>; 5 function* f(s: any): Iterable<any> { }
|
H A D | typeArgumentInferenceApparentType2.js | 2 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 D | Rule.java | 39 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 D | types.py | 3 from collections.abc import Callable, Iterable, Iterator namespace 31 Iterable[bytes]] 54 ) -> Iterable[bytes]: ...
|
/third_party/jinja2/ |
H A D | filters.py | 145 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 D | FieldMaskUtil.java | 106 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.py | 5 Iterable, 19 iterable: Iterable[_T], key: Optional[Callable[[_T], _U]] = None
|
/third_party/mbedtls/tests/scripts/ |
H A D | test_psa_constant_names.py | 31 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 D | AbstractMessageLite.java | 141 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 D | SmallSortedMap.java | 193 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.py | 20 "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 D | MetadataTableSchema.java | 69 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 D | XCldrStub.java | 111 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 D | XCldrStub.java | 116 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 D | tags.py | 15 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 D | test_case.py | 22 from typing import Iterable, List, Optional namespace 87 test_cases: Iterable[TestCase],
|