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

1 2 3 4 5 6

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
put-op.s 1 # For 'p'-type operands: PUT.
3 Main PUT rJ,X
4 PUT rG,$45
5 PUT rZZ,$245
6 PUT rJ,X0
7 PUT rG,45
8 PUT rZZ,245
9 PUT rJ,X00
10 PUT rG,0
11 PUT rZZ,
    [all...]
put-op.l 1 GAS for MMIX .*/put-op\.s page 1
6 3 0000 F604007B Main PUT rJ,X
7 4 0004 F613002D PUT rG,\$45
8 5 0008 F61F00F5 PUT rZZ,\$245
9 6 000c F604006F PUT rJ,X0
10 7 0010 F713002D PUT rG,45
11 8 0014 F71F00F5 PUT rZZ,245
12 9 0018 F7040000 PUT rJ,X00
13 10 001c F7130000 PUT rG,0
14 11 0020 F71F0000 PUT rZZ,
    [all...]
builtin1.s 1 # When disallowing built-in names, we have to treat GET and PUT
7 PUT rJ,$7
8 PUT :rJ,$8
err-builtin.s 3 % When disallowing built-in names, we have to treat GET and PUT
12 PUT other,$7 % { dg-error "invalid operands" "" }
14 PUT garbage % { dg-error "invalid operands" "" }
  /external/oauth/core/src/main/java/net/oauth/http/
HttpClient.java 37 static final String PUT = OAuthMessage.PUT;
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
pr12815-2.s 11 PUT rJ,$0
  /toolchain/binutils/binutils-2.27/gas/
app.c 348 characters are put into the buffer starting at TOSTART; the TOSTART
350 of scrubbed characters put into TOSTART. This will be TOLEN unless
371 4: after putting out a .linefile, put out digits
441 #define PUT(pch) \
478 PUT (ch);
495 PUT ('\n');
523 PUT (ch);
533 PUT (ch);
540 PUT (ch);
549 GET and PUT macros. *
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
method.go 14 MethodPut = "PUT"
  /prebuilts/go/linux-x86/src/net/http/
method.go 14 MethodPut = "PUT"
  /external/autotest/client/common_lib/cros/fake_device_server/
resource_method_unittest.py 56 returned_json = self.resource_method.PUT(12345)
68 self.resource_method.PUT, 12345)
resource_method.py 15 """A base class for methods that expose a simple PATCH/PUT mechanism."""
45 def PUT(self, *args, **kwargs):
49 PUT .../resource_id
registration_tickets_unittest.py 116 returned_json = self.registration.PUT(12345)
128 self.registration.PUT, 12345)
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
Request.java 67 static Action PUT = new Action("PUT");
74 if (s.equals("PUT"))
75 return PUT;
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
Request.java 67 static Action PUT = new Action("PUT");
74 if (s.equals("PUT"))
75 return PUT;
  /external/python/cpython2/Modules/_ctypes/libffi/src/
closures.c 625 #define PUT(idx) do { printf ("freeing p[%i]\n", (idx)); dlfree (p[idx]); } while (0)
628 PUT (1);
631 PUT (1);
632 PUT (0);
633 PUT (2);
  /external/python/cpython3/Modules/_ctypes/libffi/src/
closures.c 625 #define PUT(idx) do { printf ("freeing p[%i]\n", (idx)); dlfree (p[idx]); } while (0)
628 PUT (1);
631 PUT (1);
632 PUT (0);
633 PUT (2);
  /external/valgrind/VEX/priv/
main_util.c 327 # define PUT(_ch) \
332 do { Int _qq = (_n); for (; _qq > 0; _qq--) PUT(padchar); } \
336 do { const HChar* _qq = _str; for (; *_qq; _qq++) PUT(*_qq); } \
355 PUT(*format);
467 PAD(len1); PUT('0'); PUT('x'); PUTSTR(intbuf); PAD(len3);
471 PUT('%');
478 PUT(*saved_format);
490 # undef PUT
host_generic_simd64.c     [all...]
  /external/curl/docs/cmdline-opts/
request.d 9 details and explanations. Common additional HTTP requests include PUT and
13 Normally you don't need this option. All sorts of GET, HEAD, POST and PUT
  /external/pcre/dist2/src/
pcre2_intmodedep.h 76 #undef PUT
104 #define PUT(a,n,d) \
112 #define PUT(a,n,d) \
121 #define PUT(a,n,d) \
142 #define PUT(a,n,d) \
151 #define PUT(a,n,d) \
168 #define PUT(a,n,d) \
337 it is. This is called only in UTF-8 mode - we don't put a test within the macro
442 it is. This is called only in UTF-16 mode - we don't put a test within the
513 it is. This is called only in UTF-32 mode - we don't put a test within th
    [all...]
  /external/libffi/src/
closures.c 653 #define PUT(idx) do { printf ("freeing p[%i]\n", (idx)); dlfree (p[idx]); } while (0)
656 PUT (1);
659 PUT (1);
660 PUT (0);
661 PUT (2);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
OdexedFieldInstructionMapper.java 44 private static final int PUT = 1;
221 opcodeMap[isGet(fieldOpcode.normalOpcode)?GET:PUT]
226 opcodeValueTypeMap.put(fieldOpcode.quickOpcode, getValueType(fieldOpcode.type));
229 opcodeValueTypeMap.put(fieldOpcode.volatileOpcode, getValueType(fieldOpcode.type));
236 FieldOpcode fieldOpcode = opcodeMap[isGet(odexedOpcode)?GET:PUT]
  /external/volley/src/test/java/com/android/volley/mock/
TestRequest.java 64 mPostParams.put("requestpost", "foo");
96 mParams.put("testKey", "testValue");
106 * Test example of a PUT request in the new style. In the new style, it is possible to have a
107 * PUT with no body.
109 public static class Put extends Base {
110 public Put() {
111 super(Method.PUT, TEST_URL, null);
115 /** Test example of a PUT request in the new style with a body. */
116 public static class PutWithBody extends Put {
121 mParams.put("testKey", "testValue")
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/httputil/
example_test.go 55 req, err := http.NewRequest("PUT", "http://www.example.org", strings.NewReader(body))
68 // "PUT / HTTP/1.1\r\nHost: www.example.org\r\nUser-Agent: Go-http-client/1.1\r\nContent-Length: 75\r\nAccept-Encoding: gzip\r\n\r\nGo is a general-purpose language designed with systems programming in mind."
  /prebuilts/go/linux-x86/src/net/http/httputil/
example_test.go 55 req, err := http.NewRequest("PUT", "http://www.example.org", strings.NewReader(body))
68 // "PUT / HTTP/1.1\r\nHost: www.example.org\r\nUser-Agent: Go-http-client/1.1\r\nContent-Length: 75\r\nAccept-Encoding: gzip\r\n\r\nGo is a general-purpose language designed with systems programming in mind."

Completed in 779 milliseconds

1 2 3 4 5 6