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

1 2 3 4 5 6 7 8

  /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);
HttpMessageDecoder.java 88 public void dump(Map<String, Object> into) throws IOException {
89 in.dump(into);
  /build/tools/kcm/
Android.mk 3 # Copies files into the directory structure described by a manifest
  /development/tools/line_endings/
Android.mk 3 # Copies files into the directory structure described by a manifest
  /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...]
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()))
  /build/tools/atree/
Android.mk 3 # Copies files into the directory structure described by a manifest
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthResponseMessage.java 77 protected void dump(Map<String, Object> into) throws IOException
79 super.dump(into);
80 http.dump(into);
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/webkit/LayoutTests/storage/domstorage/script-tests/
quota.js 22 debug("Putting 'data' into 39 " + storageString + " buckets.");
26 debug("Putting 'data' into another bucket.h");
40 debug("Adding 'Hello!' into a new bucket.");
68 debug("Putting 'data' into 40 " + storageString + " buckets.");
72 debug("Putting 'data' into another bucket.h");
  /frameworks/base/tools/aidl/
Android.mk 3 # Copies files into the directory structure described by a manifest
  /external/qemu/
d3des.c 124 void cpkey(register unsigned long *into)
129 while( from < endp ) *into++ = *from++;
152 static void scrunch(register unsigned char *outof, register unsigned long *into)
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 |= (*outof++ & 0xffL) << 8
    [all...]
  /external/v8/test/mjsunit/
debug-stepin-function-call.js 36 // to get into g.call and than check that execution is pauesed inside
42 // Step into f2.call:
66 // Test step into function call from a function without local variables.
73 // Test step into function call from a function with some local variables.
82 // Test step into function call which is a part of an expression.
92 // Test step into function call from a function with some local variables.
102 // Test step into function apply from a function without local variables.
109 // Test step into function apply from a function with some local variables.
118 // Test step into function apply which is a part of an expression.
128 // Test step into function apply from a function with some local variables.
    [all...]
const-eval-init.js 37 // Initialization turns into assignment to global 'x'.
51 // Initialization turns into assignment to global 'x'.
75 // Initialization turns into assignment to global 'x' which
  /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());
  /development/samples/ApiDemos/tests/
Android.mk 14 # automatically get all of its classes loaded into our environment.
  /frameworks/base/tests/SmokeTest/tests/
Android.mk 14 # automatically get all of its classes loaded into our environment.