/external/caliper/caliper/src/main/java/com/google/caliper/model/ |
H A D | StringMapFunnel.java | 26 * A simple funnel that inserts string map entries into a funnel in iteration order. 32 public void funnel(Map<String, String> from, PrimitiveSink into) { argument 34 into.putUnencodedChars(entry.getKey())
|
H A D | BenchmarkSpec.java | 109 @Override public void funnel(BenchmarkSpec from, PrimitiveSink into) { argument 110 into.putUnencodedChars(from.className) 112 StringMapFunnel.INSTANCE.funnel(from.parameters, into);
|
H A D | Host.java | 96 @Override public void funnel(Host from, PrimitiveSink into) { argument 97 StringMapFunnel.INSTANCE.funnel(from.properties, into);
|
H A D | VmSpec.java | 94 @Override public void funnel(VmSpec from, PrimitiveSink into) { argument 95 StringMapFunnel.INSTANCE.funnel(from.properties, into); 96 StringMapFunnel.INSTANCE.funnel(from.options, into);
|
/external/guava/guava/src/com/google/common/hash/ |
H A D | Funnel.java | 22 * An object which can send data from an object of type {@code T} into a {@code PrimitiveSink}. 32 * public void funnel(Person person, PrimitiveSink into) { 33 * into.putUnencodedChars(person.getFirstName()) 46 * Sends a stream of data from the {@code from} object into the sink {@code into}. There 52 void funnel(T from, PrimitiveSink into); argument
|
H A D | Funnels.java | 46 public void funnel(byte[] from, PrimitiveSink into) { argument 47 into.putBytes(from); 69 public void funnel(CharSequence from, PrimitiveSink into) { argument 70 into.putUnencodedChars(from); 95 public void funnel(CharSequence from, PrimitiveSink into) { argument 96 into.putString(from, charset); 146 public void funnel(Integer from, PrimitiveSink into) { argument 147 into.putInt(from); 172 public void funnel(Iterable<? extends E> from, PrimitiveSink into) { argument 174 elementFunnel.funnel(e, into); 207 funnel(Long from, PrimitiveSink into) argument [all...] |
/external/oauth/core/src/main/java/net/oauth/client/ |
H A D | OAuthResponseMessage.java | 77 protected void dump(Map<String, Object> into) throws IOException argument 79 super.dump(into); 80 http.dump(into);
|
H A D | URLConnectionResponse.java | 96 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 D | HttpMethodResponse.java | 93 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 D | HttpMessageDecoder.java | 88 public void dump(Map<String, Object> into) throws IOException { argument 89 in.dump(into);
|
H A D | HttpResponseMessage.java | 36 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 D | HttpMessage.java | 116 /** 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/guava/guava-tests/test/com/google/common/hash/ |
H A D | BloomFilterTest.java | 63 // Insert "numInsertions" even numbers into the BF. 104 // Insert "numInsertions" even numbers into the BF. 145 // Insert "numInsertions" even numbers into the BF. 357 public void funnel(Long value, PrimitiveSink into) { argument 358 into.putLong(value);
|
/external/swiftshader/third_party/LLVM/test/MC/X86/ |
H A D | x86-32.s | 77 into label 78 // CHECK: into
|
/external/glide/library/src/main/java/com/bumptech/glide/ |
H A D | BitmapRequestBuilder.java | 39 * Warning - It is <em>not</em> safe to use this builder after calling <code>into()</code>, it may be pooled and 43 * @param <ModelType> The type of model that will be loaded into the target. 485 public Target<TranscodeType> into(ImageView view) { method in class:BitmapRequestBuilder 486 return super.into(view);
|
H A D | DrawableRequestBuilder.java | 35 * Warning - It is <em>not</em> safe to use this builder after calling <code>into()</code>, it may be pooled and 39 * @param <ModelType> The type of model that will be loaded into the target. 435 public Target<GlideDrawable> into(ImageView view) { method in class:DrawableRequestBuilder 436 return super.into(view);
|
H A D | GenericRequestBuilder.java | 229 * Sets the source encoder to use to encode the data retrieved by this request directly into cache. The returned 551 * This method must be called at least once before {@link #into(com.bumptech.glide.request.target.Target)} is 587 * Set the target the resource will be loaded into. 591 * @param target The target to load the resource into. 594 public <Y extends Target<TranscodeType>> Y into(Y target) { method in class:GenericRequestBuilder 620 * Sets the {@link ImageView} the resource will be loaded into, cancels any existing loads into the view, and frees 621 * any resources Glide may have previously loaded into the view so they may be reused. 625 * @param view The view to cancel previous loads for and load the new resource into. 628 public Target<TranscodeType> into(ImageVie method in class:GenericRequestBuilder 667 public FutureTarget<TranscodeType> into(int width, int height) { method in class:GenericRequestBuilder [all...] |
/external/libvncserver/common/ |
H A D | d3des.c | 132 void rfbCPKey(register unsigned long *into) argument 137 while( from < endp ) *into++ = *from++; 162 register unsigned long *into) 164 *into = (*outof++ & 0xffL) << 24; 165 *into |= (*outof++ & 0xffL) << 16; 166 *into |= (*outof++ & 0xffL) << 8; 167 *into++ |= (*outof++ & 0xffL); 168 *into = (*outof++ & 0xffL) << 24; 169 *into |= (*outof++ & 0xffL) << 16; 170 *into | 161 scrunch(register unsigned char *outof, register unsigned long *into) argument 175 unscrun(register unsigned long *outof, register unsigned char *into) argument [all...] |
/external/llvm/test/MC/X86/ |
H A D | x86-16.s | 61 into label 62 // CHECK: into
|
H A D | x86-32.s | 105 into label 106 // CHECK: into
|
/external/oauth/core/src/main/java/net/oauth/ |
H A D | OAuth.java | 100 * 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 D | OAuthMessage.java | 207 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/elfutils/libdwfl/ |
H A D | core-file.c | 362 void *into = *buffer; local 368 into = malloc (*buffer_available); 369 if (unlikely (into == NULL)) 376 ssize_t nread = pread_retry (elf->fildes, into, *buffer_available, start); 379 if (into != *buffer) 380 free (into); 388 const void *eos = memchr (into, '\0', nread); 389 if (unlikely (eos == NULL) || unlikely (eos == into)) 392 free (into); 395 nread = eos + 1 - into; [all...] |
H A D | dwfl_segment_report_module.c | 95 /* Read SZ bytes into *RETP from *PTRP (limited by END) in format EI_DATA. 884 void *into = contents + offset; local 887 &into, &read_size, vaddr, size); local 893 So we'll be reading into a local image of the virtual file. */
|
/external/vulkan-validation-layers/libs/cjson/ |
H A D | cJSON.c | 95 /* Parse the input text to generate a number, and populate the result into item. 185 /* Render the number nicely from the given item into a string. */ 265 /* Parse the input text into an unescaped cstring, and populate item. */ 939 /* Collect all the results into our arrays: */ 1329 char *into = json; local 1348 *into++ = *json++; 1351 *into++ = *json++; 1352 *into++ = *json++; 1354 *into++ = *json++; 1357 *into [all...] |