HomeSort by relevance Sort by last modified time
    Searched refs:into (Results 1 - 25 of 328) 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);
HttpMessageDecoder.java 88 public void dump(Map<String, Object> into) throws IOException {
89 in.dump(into);
  /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 39 " + storageString + " buckets.");
72 debug("Putting 'data' into another bucket.h");
  /external/llvm/autoconf/m4/
func_mmap_file.m4 23 AC_DEFINE([HAVE_MMAP_FILE],[],[Define if mmap() can map files into memory])
  /external/llvm/projects/sample/autoconf/m4/
func_mmap_file.m4 23 AC_DEFINE([HAVE_MMAP_FILE],[],[Define if mmap() can map files into memory])
  /frameworks/base/nfc-extras/
Android.mk 13 # put the classes.jar, with full class files instead of classes.dex inside, into the dist directory
  /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...]
  /external/mesa3d/docs/
MESA_agp_offset.spec 36 region into byte offsets into the AGP aperture.
MESA_pixmap_colormap.spec 32 Since Mesa allows RGB rendering into drawables with PseudoColor,
63 The Mesa implementation of GLX allows RGB rendering into X windows and
73 rendered into the pixmap may then be copied to a window (which uses the
  /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.
  /external/clang/lib/StaticAnalyzer/Checkers/
StackAddrEscapeChecker.cpp 11 // stack address is stored into a global or heap location. See CERT DCL30-C.
197 new BuiltinBug("Stack address stored into global variable",
198 "Stack address was saved into a global variable. "
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 25 (* Evaluate a top-level expression into an anonymous function. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 29 (* Evaluate a top-level expression into an anonymous function. *)
  /external/netcat/data/
showmount.d 4 # Using this with "2", plugged into "nc -u -v -w 2 victim X-Y" will
  /external/webkit/LayoutTests/storage/domstorage/events/script-tests/
documentURI.js 1 description("Test that changing documentURI has no effects on the url passed into storage events.");

Completed in 298 milliseconds

1 2 3 4 5 6 7 8 91011>>