Home
last modified time | relevance | path

Searched +defs:map +defs:stream (Results 1 – 25 of 1191) sorted by relevance

12345678910>>...48

/aosp_15_r20/external/pdfium/core/fpdfapi/font/
H A Dcpdf_tounicodemap_unittest.cpp68 auto stream = pdfium::MakeRetain<CPDF_Stream>(); in TEST() local
70 CPDF_ToUnicodeMap map(stream); in TEST() local
76 auto stream = pdfium::MakeRetain<CPDF_Stream>(); in TEST() local
78 CPDF_ToUnicodeMap map(stream); in TEST() local
84 auto stream = pdfium::MakeRetain<CPDF_Stream>(); in TEST() local
86 CPDF_ToUnicodeMap map(stream); in TEST() local
96 auto stream = pdfium::MakeRetain<CPDF_Stream>(); in TEST() local
98 CPDF_ToUnicodeMap map(stream); in TEST() local
108 auto stream = pdfium::MakeRetain<CPDF_Stream>(); in TEST() local
110 CPDF_ToUnicodeMap map(stream); in TEST() local
[all …]
/aosp_15_r20/external/guava/android/guava/src/com/google/common/collect/
H A DMultimaps.java212 Map<K, Collection<V>> map, final Supplier<? extends Collection<V>> factory) { in newMultimap()
220 CustomMultimap(Map<K, Collection<V>> map, Supplier<? extends Collection<V>> factory) { in CustomMultimap()
279 private void writeObject(ObjectOutputStream stream) throws IOException { in writeObject()
288 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { in readObject()
291 Map<K, Collection<V>> map = (Map<K, Collection<V>>) requireNonNull(stream.readObject()); in readObject() local
332 Map<K, Collection<V>> map, final Supplier<? extends List<V>> factory) { in newListMultimap()
340 CustomListMultimap(Map<K, Collection<V>> map, Supplier<? extends List<V>> factory) { in CustomListMultimap()
365 private void writeObject(ObjectOutputStream stream) throws IOException { in writeObject()
374 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { in readObject()
377 Map<K, Collection<V>> map = (Map<K, Collection<V>>) requireNonNull(stream.readObject()); in readObject() local
[all …]
H A DSerialization.java50 static int readCount(ObjectInputStream stream) throws IOException { in readCount()
62 Map<K, V> map, ObjectOutputStream stream) throws IOException { in writeMap()
75 Map<K, V> map, ObjectInputStream stream) throws IOException, ClassNotFoundException { in populateMap()
85 Map<K, V> map, ObjectInputStream stream, int size) in populateMap()
104 Multiset<E> multiset, ObjectOutputStream stream) throws IOException { in writeMultiset()
118 Multiset<E> multiset, ObjectInputStream stream) throws IOException, ClassNotFoundException { in populateMultiset()
129 Multiset<E> multiset, ObjectInputStream stream, int distinctElements) in populateMultiset()
148 Multimap<K, V> multimap, ObjectOutputStream stream) throws IOException { in writeMultimap()
164 Multimap<K, V> multimap, ObjectInputStream stream) in populateMultimap()
176 Multimap<K, V> multimap, ObjectInputStream stream, int distinctKeys) in populateMultimap()
H A DEnumBiMap.java84 public static <K extends Enum<K>, V extends Enum<V>> EnumBiMap<K, V> create(Map<K, V> map) { in create()
98 static <K extends Enum<K>> Class<K> inferKeyTypeOrObjectUnderJ2cl(Map<K, ?> map) { in inferKeyTypeOrObjectUnderJ2cl()
109 private static <V extends Enum<V>> Class<V> inferValueTypeOrObjectUnderJ2cl(Map<?, V> map) { in inferValueTypeOrObjectUnderJ2cl()
144 private void writeObject(ObjectOutputStream stream) throws IOException { in writeObject()
153 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { in readObject()
H A DImmutableMapEntrySet.java39 private final transient ImmutableMap<K, V> map; field in ImmutableMapEntrySet.RegularEntrySet
42 RegularEntrySet(ImmutableMap<K, V> map, Entry<K, V>[] entries) { in RegularEntrySet()
46 RegularEntrySet(ImmutableMap<K, V> map, ImmutableList<Entry<K, V>> entries) { in RegularEntrySet()
52 ImmutableMap<K, V> map() { in map() method in ImmutableMapEntrySet.RegularEntrySet
84 abstract ImmutableMap<K, V> map(); in map() method in ImmutableMapEntrySet
126 private void readObject(ObjectInputStream stream) throws InvalidObjectException { in readObject()
133 final ImmutableMap<K, V> map; field in ImmutableMapEntrySet.EntrySetSerializedForm
135 EntrySetSerializedForm(ImmutableMap<K, V> map) { in EntrySetSerializedForm()
/aosp_15_r20/external/guava/guava/src/com/google/common/collect/
H A DMultimaps.java211 Map<K, Collection<V>> map, final Supplier<? extends Collection<V>> factory) { in newMultimap()
219 CustomMultimap(Map<K, Collection<V>> map, Supplier<? extends Collection<V>> factory) { in CustomMultimap()
278 private void writeObject(ObjectOutputStream stream) throws IOException { in writeObject()
287 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { in readObject()
290 Map<K, Collection<V>> map = (Map<K, Collection<V>>) requireNonNull(stream.readObject()); in readObject() local
331 Map<K, Collection<V>> map, final Supplier<? extends List<V>> factory) { in newListMultimap()
339 CustomListMultimap(Map<K, Collection<V>> map, Supplier<? extends List<V>> factory) { in CustomListMultimap()
364 private void writeObject(ObjectOutputStream stream) throws IOException { in writeObject()
373 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { in readObject()
376 Map<K, Collection<V>> map = (Map<K, Collection<V>>) requireNonNull(stream.readObject()); in readObject() local
[all …]
H A DSerialization.java50 static int readCount(ObjectInputStream stream) throws IOException { in readCount()
62 Map<K, V> map, ObjectOutputStream stream) throws IOException { in writeMap()
75 Map<K, V> map, ObjectInputStream stream) throws IOException, ClassNotFoundException { in populateMap()
85 Map<K, V> map, ObjectInputStream stream, int size) in populateMap()
104 Multiset<E> multiset, ObjectOutputStream stream) throws IOException { in writeMultiset()
118 Multiset<E> multiset, ObjectInputStream stream) throws IOException, ClassNotFoundException { in populateMultiset()
129 Multiset<E> multiset, ObjectInputStream stream, int distinctElements) in populateMultiset()
148 Multimap<K, V> multimap, ObjectOutputStream stream) throws IOException { in writeMultimap()
164 Multimap<K, V> multimap, ObjectInputStream stream) in populateMultimap()
176 Multimap<K, V> multimap, ObjectInputStream stream, int distinctKeys) in populateMultimap()
H A DEnumBiMap.java84 public static <K extends Enum<K>, V extends Enum<V>> EnumBiMap<K, V> create(Map<K, V> map) { in create()
98 static <K extends Enum<K>> Class<K> inferKeyTypeOrObjectUnderJ2cl(Map<K, ?> map) { in inferKeyTypeOrObjectUnderJ2cl()
109 private static <V extends Enum<V>> Class<V> inferValueTypeOrObjectUnderJ2cl(Map<?, V> map) { in inferValueTypeOrObjectUnderJ2cl()
144 private void writeObject(ObjectOutputStream stream) throws IOException { in writeObject()
153 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { in readObject()
H A DImmutableMapEntrySet.java41 private final transient ImmutableMap<K, V> map; field in ImmutableMapEntrySet.RegularEntrySet
44 RegularEntrySet(ImmutableMap<K, V> map, Entry<K, V>[] entries) { in RegularEntrySet()
48 RegularEntrySet(ImmutableMap<K, V> map, ImmutableList<Entry<K, V>> entries) { in RegularEntrySet()
54 ImmutableMap<K, V> map() { in map() method in ImmutableMapEntrySet.RegularEntrySet
96 abstract ImmutableMap<K, V> map(); in map() method in ImmutableMapEntrySet
138 private void readObject(ObjectInputStream stream) throws InvalidObjectException { in readObject()
145 final ImmutableMap<K, V> map; field in ImmutableMapEntrySet.EntrySetSerializedForm
147 EntrySetSerializedForm(ImmutableMap<K, V> map) { in EntrySetSerializedForm()
/aosp_15_r20/external/freetype/src/sfnt/
H A Dttsbit.c50 FT_Stream stream ) in tt_face_load_sbit()
262 FT_Stream stream = face->root.stream; in tt_face_free_sbit() local
398 FT_Stream stream = face->root.stream; in tt_face_load_strike_metrics() local
455 FT_Stream stream; member
480 FT_Stream stream = face->root.stream; in tt_sbit_decoder_init() local
549 FT_Bitmap* map = decoder->bitmap; in tt_sbit_decoder_alloc_bitmap() local
1101 FT_Stream stream = decoder->stream; in tt_sbit_decoder_load_bitmap() local
1456 FT_Stream stream, in tt_face_load_sbix_image()
1457 FT_Bitmap *map, in tt_face_load_sbix_image()
1601 FT_Stream stream, in tt_face_load_sbit_image()
[all …]
/aosp_15_r20/external/easymock/src/org/easymock/internal/
H A DLegacyMatcherProvider.java72 private void readObject(java.io.ObjectInputStream stream) in readObject()
75 …Map<MethodSerializationWrapper, ArgumentsMatcher> map = (Map<MethodSerializationWrapper, Arguments… in readObject() local
91 private void writeObject(java.io.ObjectOutputStream stream) in writeObject()
94 …Map<MethodSerializationWrapper, ArgumentsMatcher> map = new HashMap<MethodSerializationWrapper, Ar… in writeObject() local
/aosp_15_r20/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
H A DTabulatorsTest.java95 void assertValue(M map, in assertValue()
127 …void assertValue(M map, Supplier<Stream<T>> source, boolean ordered) throws ReflectiveOperationExc… in assertValue()
153 void assertValue(Map<Boolean, D> map, in assertValue()
171 Stream<T> stream = source.get(); in assertValue() local
197 Stream<T> stream = source.get(); in assertValue() local
H A DCollectorsTest.java154 void assertValue(M map, in assertValue()
186 …void assertValue(M map, Supplier<Stream<T>> source, boolean ordered) throws ReflectiveOperationExc… in assertValue()
213 void assertValue(Map<Boolean, D> map, in assertValue()
230 Stream<T> stream = source.get(); in assertValue() local
255 Stream<T> stream = source.get(); in assertValue() local
/aosp_15_r20/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/
H A DStreams.java78 private Stream<O> stream; field in Streams.FailableStream
85 public FailableStream(final Stream<O> stream) { in FailableStream()
340 public <R> FailableStream<R> map(final FailableFunction<O, R, ?> mapper) { in map() method in Streams.FailableStream
349 public Stream<O> stream() { in stream() method in Streams.FailableStream
444 public static <O> FailableStream<O> stream(final Stream<O> stream) { in stream() method in Streams
486 public static <O> FailableStream<O> stream(final Collection<O> stream) { in stream() method in Streams
/aosp_15_r20/external/webrtc/modules/desktop_capture/linux/wayland/
H A Dshared_screencast_stream.cc48 ScopedBuf(uint8_t* map, int map_size, int fd) in ScopedBuf()
58 void initialize(uint8_t* map, int map_size, int fd) { in initialize()
188 SharedScreenCastStreamPrivate* stream = in OnCoreError() local
198 SharedScreenCastStreamPrivate* stream = in OnCoreInfo() local
208 const SharedScreenCastStreamPrivate* stream = in OnCoreDone() local
616 ScopedBuf map; in ProcessBuffer() local
/aosp_15_r20/external/ltp/testcases/kernel/fs/doio/
H A Diogen.c447 void startup_info(FILE * stream, int seed) in startup_info()
1326 int str_to_value(struct strmap *map, char *str) in str_to_value()
1342 struct strmap *str_lookup(struct strmap *map, char *str) in str_lookup()
1358 char *value_to_string(struct strmap *map, int val) in value_to_string()
1935 int help(FILE * stream) in help()
2093 int usage(FILE * stream) in usage()
/aosp_15_r20/prebuilts/tools/common/api-generator/
HDapi-generator-22.9.1.jar ... .Map map String name java.io.PrintStream stream java.util.TreeMap map2 private java.lang ...
HDapi-generator-22.9.2.jar ... .Map map String name java.io.PrintStream stream java.util.TreeMap map2 private java.lang ...
HDapi-generator-22.9.3.jar ... .Map map String name java.io.PrintStream stream java.util.TreeMap map2 private java.lang ...
/aosp_15_r20/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/stream/
H A DStreams.java179 private Stream<T> stream; field in FailableStream
187 public FailableStream(final Stream<T> stream) { in FailableStream()
422 public <R> FailableStream<R> map(final FailableFunction<T, R, ?> mapper) { in map() method in FailableStream
489 public Stream<T> stream() { in stream() method in FailableStream
534 public static <T> FailableStream<T> failableStream(final Collection<T> stream) { in failableStream()
578 public static <T> FailableStream<T> failableStream(final Stream<T> stream) { in failableStream()
602 private static <E> Stream<E> instancesOf(final Class<? super E> clazz, final Stream<?> stream) { in instancesOf()
639 public static <E> Stream<E> nonNull(final Stream<E> stream) { in nonNull()
699 private static <E> Stream<E> of(final Stream<E> stream) { in of()
757 public static <E> FailableStream<E> stream(final Collection<E> collection) { in stream() method
[all …]
/aosp_15_r20/libcore/ojluni/src/test/java/util/stream/Collectors/
H A DCollectorsTest.java157 void assertValue(M map, in assertValue()
189 …void assertValue(M map, Supplier<Stream<T>> source, boolean ordered) throws ReflectiveOperationExc… in assertValue()
216 void assertValue(Map<Boolean, D> map, in assertValue()
233 Stream<T> stream = source.get(); in assertValue() local
258 Stream<T> stream = source.get(); in assertValue() local
/aosp_15_r20/external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
H A DStrTagTest.java75 Map<String, String> map = in testIssueId6() local
90 Map<String, String> map = new HashMap<String, String>(); in testStringIntOut() local
97 Map<String, String> map = new HashMap<String, String>(); in testStringFloatOut() local
104 Map<String, String> map = new HashMap<String, String>(); in testStringBoolOut() local
168 ByteArrayOutputStream stream = new ByteArrayOutputStream(); in testDumpUtf16() local
/aosp_15_r20/external/dng_sdk/source/
H A Ddng_gain_map.cpp95 dng_gain_map_interpolator::dng_gain_map_interpolator (const dng_gain_map &map, in dng_gain_map_interpolator()
341 dng_stream &stream) in GetStream()
406 AutoPtr<dng_gain_map> map (new dng_gain_map (host.Allocator (), in GetStream() local
500 dng_stream &stream) in dng_opcode_GainMap()
/aosp_15_r20/frameworks/base/services/core/java/com/android/server/locksettings/
H A DPasswordSlotManager.java149 protected Map<Integer, String> loadSlotMap(InputStream stream) throws IOException { in loadSlotMap()
150 final HashMap<Integer, String> map = new HashMap<Integer, String>(); in loadSlotMap() local
165 try (FileInputStream stream = new FileInputStream(file)) { in loadSlotMap()
185 protected void saveSlotMap(OutputStream stream) throws IOException { in saveSlotMap()
/aosp_15_r20/external/marisa-trie/lib/marisa/
H A Dtrie.cc32 void Trie::map(const void *ptr, std::size_t size) { in map() function in marisa::Trie
199 static std::istream &read(std::istream &stream, Trie *trie) { in read()
212 static std::ostream &write(std::ostream &stream, const Trie &trie) { in write()
232 std::istream &read(std::istream &stream, Trie *trie) { in read()
237 std::ostream &write(std::ostream &stream, const Trie &trie) { in write()
241 std::istream &operator>>(std::istream &stream, Trie &trie) { in operator >>()
245 std::ostream &operator<<(std::ostream &stream, const Trie &trie) { in operator <<()

12345678910>>...48