Searched defs:into (Results 1 - 25 of 29) sorted by relevance

12

/external/guava/guava/src/com/google/common/hash/
H A DFunnel.java20 * An object which can send data from an object of type {@code T} into a {@code Sink}.
28 * Sends a stream of data from the {@code from} object into the sink {@code into}. There
32 void funnel(T from, Sink into); argument
H A DFunnels.java39 public void funnel(byte[] from, Sink into) { argument
40 into.putBytes(from);
58 public void funnel(CharSequence from, Sink into) { argument
59 into.putString(from);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dnomem64-err.asm10 into label
/external/libvorbis/doc/
H A Da1-encapsulation-ogg.tex4 \section{Embedding Vorbis into an Ogg stream} \label{vorbis:over:ogg}
9 streams to encapsulate Vorbis compressed audio packet data into file
42 Vorbis with other media types into a multi-stream Ogg file. At the
99 Packets are placed into ogg pages in order until the end of stream.
H A D02-bitpacking.tex12 decoder. Most current binary storage arrangements group bits into a
16 bitstream into an actual representation in fixed-width words.
68 \subsubsection{coding bits into byte sequences}
71 zero to 32 bits wide, into packets. These integer fields are not
78 coded. When packing the bits into bytes, the encoder begins by
79 placing the LSb of the integer to be written into the least
84 byte and writing the next bit into the bit position 0 of that byte.
86 from the byte stream and reassembling them into integers.
103 Code the 4 bit integer value '12' [b1100] into an empty bytestream.
211 byte-aligned packets which are embedded into
[all...]
/external/oauth/core/src/main/java/net/oauth/client/
H A DOAuthResponseMessage.java77 protected void dump(Map<String, Object> into) throws IOException argument
79 super.dump(into);
80 http.dump(into);
H A DURLConnectionResponse.java96 public void dump(Map<String, Object> into) throws IOException { argument
97 super.dump(into);
104 into.put(REQUEST, request.toString());
132 into.put(HttpMessage.RESPONSE, response.toString());
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/
H A DHttpMethodResponse.java93 public void dump(Map<String, Object> into) throws IOException argument
95 super.dump(into);
118 into.put(REQUEST, request.toString());
134 into.put(HttpMessage.RESPONSE, response.toString());
/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpMessageDecoder.java88 public void dump(Map<String, Object> into) throws IOException { argument
89 in.dump(into);
H A DHttpResponseMessage.java36 public void dump(Map<String, Object> into) throws IOException { argument
37 super.dump(into);
38 into.put(STATUS_CODE, Integer.valueOf(getStatusCode()));
41 into.put(LOCATION, location);
H A DHttpMessage.java116 /** Put a description of this message and its origins into the given Map. */
117 public void dump(Map<String, Object> into) throws IOException argument
/external/llvm/test/MC/X86/
H A Dx86-32.s105 into label
106 // CHECK: into
H A Dx86-16.s61 into label
62 // CHECK: into
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DNavigatorGamepad.cpp55 static void sampleGamepads(ListType* into) argument
64 GamepadType* gamepad = into->item(i);
68 into->set(i, gamepad);
70 into->set(i, 0);
/external/elfutils/0.153/libdwfl/
H A Dcore-file.c361 void *into = *buffer; local
367 into = malloc (*buffer_available);
368 if (unlikely (into == NULL))
375 ssize_t nread = pread_retry (elf->fildes, into, *buffer_available, start);
378 if (into != *buffer)
379 free (into);
387 const void *eos = memchr (into, '\0', nread);
388 if (unlikely (eos == NULL) || unlikely (eos == into))
391 free (into);
394 nread = eos + 1 - into;
[all...]
H A Ddwfl_segment_report_module.c618 void *into = contents + offset; local
621 &into, &read_size, vaddr, size); local
627 So we'll be reading into a local image of the virtual file. */
/external/oauth/core/src/main/java/net/oauth/
H A DOAuth.java100 * Write a form-urlencoded document into the given stream, containing the
104 OutputStream into) throws IOException {
111 into.write('&');
113 into.write(percentEncode(toString(parameter.getKey()))
115 into.write('=');
116 into.write(percentEncode(toString(parameter.getValue()))
103 formEncode(Iterable<? extends Map.Entry> parameters, OutputStream into) argument
H A DOAuthMessage.java207 Map<String, Object> into = new HashMap<String, Object>();
208 dump(into);
209 return into;
212 protected void dump(Map<String, Object> into) throws IOException { argument
213 into.put("URL", URL);
216 into.putAll(getParameterMap());
312 StringBuilder into = new StringBuilder();
314 into.append(" realm=\"").append(OAuth.percentEncode(realm)).append('"');
321 if (into.length() > 0) into
[all...]
/external/qemu/ui/
H A Dd3des.c124 void cpkey(register unsigned long *into) argument
129 while( from < endp ) *into++ = *from++;
152 static void scrunch(register unsigned char *outof, register unsigned long *into) argument
154 *into = (*outof++ & 0xffL) << 24;
155 *into |= (*outof++ & 0xffL) << 16;
156 *into |= (*outof++ & 0xffL) << 8;
157 *into++ |= (*outof++ & 0xffL);
158 *into = (*outof++ & 0xffL) << 24;
159 *into |= (*outof++ & 0xffL) << 16;
160 *into |
165 unscrun(register unsigned long *outof, register unsigned char *into) argument
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/
H A DGenericRequestBuilder.java41 * models loaders to translate a model into generic resources for either an image or a video and decoders that can
42 * decode those resources into bitmaps.
210 * Sets the source encoder to use to encode the data retrieved by this request directly into cache. The returned
518 * Set the target the image will be loaded into.
523 public <Y extends Target<TranscodeType>> Y into(Y target) { method in class:GenericRequestBuilder
541 * Sets the {@link ImageView} the image will be loaded into, cancels any existing loads into the view, and frees
542 * any resources Glide has loaded into the view so they may be reused.
546 * @param view The view to cancel previous loads for and load the new image into.
549 public Target<TranscodeType> into(ImageVie method in class:GenericRequestBuilder
[all...]
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_leveldb_coding.cc226 inline void EncodeIntSafely(int64 nParam, int64 max, std::string* into) { argument
228 return EncodeInt(nParam, into);
243 void EncodeByte(unsigned char value, std::string* into) { argument
244 into->push_back(value);
247 void EncodeBool(bool value, std::string* into) { argument
248 into->push_back(value ? 1 : 0);
251 void EncodeInt(int64 value, std::string* into) { argument
260 into->push_back(c);
265 void EncodeVarInt(int64 value, std::string* into) { argument
277 into
281 EncodeString(const base::string16& value, std::string* into) argument
296 EncodeBinary(const std::string& value, std::string* into) argument
302 EncodeStringWithLength(const base::string16& value, std::string* into) argument
307 EncodeDouble(double value, std::string* into) argument
313 EncodeIDBKey(const IndexedDBKey& value, std::string* into) argument
356 EncodeIDBKeyPath(const IndexedDBKeyPath& value, std::string* into) argument
362 EncodeByte(static_cast<char>(value.type()), into); local
382 EncodeBlobJournal(const BlobJournalType& journal, std::string* into) argument
[all...]
/external/chromium_org/third_party/WebKit/public/platform/
H A DPlatform.h218 virtual void sampleGamepads(WebGamepads& into) { into.length = 0; } argument
468 // and reflects the sampling profiled results into about:tracing.
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs-ant.jarMETA-INF/ META-INF/MANIFEST.MF edu/ edu/umd/ edu/umd/cs/ edu/umd/cs/findbugs/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 316 milliseconds

12