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

/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/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
/external/elfutils/libdwfl/
H A Dcore-file.c352 void *into = *buffer; local
358 into = malloc (*buffer_available);
359 if (unlikely (into == NULL))
366 ssize_t nread = pread_retry (elf->fildes, into, *buffer_available, start);
369 if (into != *buffer)
370 free (into);
378 const void *eos = memchr (into, '\0', nread);
379 if (unlikely (eos == NULL) || unlikely (eos == into))
382 free (into);
385 nread = eos + 1 - into;
[all...]
H A Ddwfl_segment_report_module.c592 void *into = contents + offset; local
595 &into, &read_size, vaddr, size); local
601 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/
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/quake/quake/src/WinQuake/
H A Dsv_phys.cpp871 vec3_t into, side; local
882 VectorScale (trace->plane.normal, i, into);
883 VectorSubtract (ent->u.v.velocity, into, side);
968 // do a regular slide move unless it looks like you ran into a step
1221 { // just crossed into water
1230 { // just crossed into water

Completed in 1341 milliseconds