HomeSort by relevance Sort by last modified time
    Searched defs:into (Results 1 - 25 of 377) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/oauth/core/src/main/java/net/oauth/http/
HttpResponseMessage.java 36 public void dump(Map<String, Object> into) throws IOException {
37 super.dump(into);
38 into.put(STATUS_CODE, Integer.valueOf(getStatusCode()));
41 into.put(LOCATION, location);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
x86-64-opcode-inval.s 21 into: label
22 into
  /external/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 207 Map<String, Object> into = new HashMap<String, Object>(); local
208 dump(into);
209 return into;
212 protected void dump(Map<String, Object> into) throws IOException {
213 into.put("URL", URL);
216 into.putAll(getParameterMap());
312 StringBuilder into = new StringBuilder(); local
314 into.append(" realm=\"").append(OAuth.percentEncode(realm)).append('"');
321 if (into.length() > 0) into.append(",")
343 StringBuilder into = new StringBuilder(); local
361 List<OAuth.Parameter> into = new ArrayList<OAuth.Parameter>(); local
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/
URLConnectionResponse.java 96 public void dump(Map<String, Object> into) throws IOException {
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/
HttpMethodResponse.java 93 public void dump(Map<String, Object> into) throws IOException
95 super.dump(into);
118 into.put(REQUEST, request.toString());
134 into.put(HttpMessage.RESPONSE, response.toString());
  /external/swiftshader/third_party/LLVM/test/MC/X86/
x86-32.s 77 into label
78 // CHECK: into
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/bfin/
vector2.s 559 /* both multiply signed fractions into separate Accumulators */
561 /* same as above, but sum result into A1. MAC order is arbitrary.
564 /* sum product into A1, subtract product from A0 */
578 into the Accumulators,MAC1 into half-word registers. */ label
580 but sum result into A1. ; MAC order is arbitrary. */
581 r7.h=(a1+=r6.h*r5.l), r7.l=(a0=r6.h*r5.h) ; /* sum into A1,
582 subtract into A0 */
605 into the Accumulators */ label
607 sum result into A1. MAC order is arbitrary. *
609 into A0 *\/ label
    [all...]
  /external/elfutils/libdwfl/
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...]
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/glide/library/src/main/java/com/bumptech/glide/
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);
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);
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(ImageView view) method in class:GenericRequestBuilder
667 public FutureTarget<TranscodeType> into(int width, int height) { method in class:GenericRequestBuilder
    [all...]
  /external/guava/guava/src/com/google/common/hash/
Funnels.java 46 public void funnel(byte[] from, PrimitiveSink into) {
47 into.putBytes(from);
69 public void funnel(CharSequence from, PrimitiveSink into) {
70 into.putUnencodedChars(from);
95 public void funnel(CharSequence from, PrimitiveSink into) {
96 into.putString(from, charset);
146 public void funnel(Integer from, PrimitiveSink into) {
147 into.putInt(from);
172 public void funnel(Iterable<? extends E> from, PrimitiveSink into) {
174 elementFunnel.funnel(e, into);
    [all...]
  /external/llvm/test/MC/X86/
x86-16.s 61 into label
62 // CHECK: into
x86-32.s 105 into label
106 // CHECK: into
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
TestData.java 59 default <A extends Collection<? super T>> A into(A target) { method in interface:TestData
299 public <A extends Collection<? super Integer>> A into(A target) { method in class:TestData.AbstractTestData.IntTestData
324 public <A extends Collection<? super Long>> A into(A target) { method in class:TestData.AbstractTestData.LongTestData
349 public <A extends Collection<? super Double>> A into(A target) { method in class:TestData.AbstractTestData.DoubleTestData
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
TestData.java 60 default <A extends Collection<? super T>> A into(A target) { method in interface:TestData
300 public <A extends Collection<? super Integer>> A into(A target) { method in class:TestData.AbstractTestData.IntTestData
325 public <A extends Collection<? super Long>> A into(A target) { method in class:TestData.AbstractTestData.LongTestData
350 public <A extends Collection<? super Double>> A into(A target) { method in class:TestData.AbstractTestData.DoubleTestData
  /external/vulkan-validation-layers/libs/cjson/
cJSON.c 88 /* Parse the input text to generate a number, and populate the result into item.
169 /* Render the number nicely from the given item into a string. */
245 /* Parse the input text into an unescaped cstring, and populate item. */
848 /* Collect all the results into our arrays: */
1184 char *into = json; local
    [all...]
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
StaggeredGridLayoutManagerTest.java 205 int[] into = new int[2]; local
206 mLayoutManager.findFirstCompletelyVisibleItemPositions(into);
207 assertEquals("first completely visible item from span 0 should be 0", 0, into[0]);
208 assertEquals("first completely visible item from span 1 should be 1", 1, into[1]);
209 mLayoutManager.findLastCompletelyVisibleItemPositions(into);
210 assertEquals("last completely visible item from span 0 should be 4", 4, into[0]);
211 assertEquals("last completely visible item from span 1 should be 1", 1, into[1]);
    [all...]
  /art/compiler/optimizing/
register_allocator_graph_color.cc 54 kFixedInput, // Prevents moves into a fixed input location.
392 // Initially set to `this`, and only changed if this node is coalesced into another.
508 // Return true if `into` is colored, and `from` can be coalesced with `into` conservatively.
509 bool PrecoloredHeuristic(InterferenceNode* from, InterferenceNode* into);
511 // Return true if `from` and `into` are uncolored, and can be coalesced conservatively.
512 bool UncoloredHeuristic(InterferenceNode* from, InterferenceNode* into);
516 // Merge `from` into `into` in the interference graph.
517 void Combine(InterferenceNode* from, InterferenceNode* into);
1723 InterferenceNode* into = opportunity->node_b->GetAlias(); local
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/
NativeDeviceTest.java 1487 final String into = "bootloader"; local
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/picasso/picasso/2.5.2/
picasso-2.5.2.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
findbugs-ant.jar 
  /prebuilts/devtools/tools/lib/
chimpchat.jar 
  /prebuilts/gradle-plugin/com/android/tools/chimpchat/24.4.0-beta6/
chimpchat-24.4.0-beta6.jar 

Completed in 489 milliseconds

1 2 3 4 5 6 7 8 91011>>