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

1 2 3 4

  /toolchain/binutils/binutils-2.25/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" "" }
list-insns.s 275 PUT rJ,34
276 PUT rJ,$134
  /external/oauth/core/src/main/java/net/oauth/http/
HttpClient.java 37 static final String PUT = OAuthMessage.PUT;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
pr12815-2.s 11 PUT rJ,$0
  /toolchain/binutils/binutils-2.25/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...]
  /external/jetty/src/java/org/eclipse/jetty/http/
HttpMethods.java 34 PUT= "PUT",
57 PUT_BUFFER= CACHE.add(PUT, PUT_ORDINAL),
  /frameworks/base/packages/Osu/src/com/android/hotspot2/utils/
HTTPMessage.java 27 public enum Method {GET, PUT, POST}
  /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)
devices.py 146 def PUT(self, *args, **kwargs):
151 PUT http://<server-host>/devices/<device-id>
169 This PUT has no API key, but comes with an OAUTH access token.
registration_tickets.py 182 def PUT(self, *args, **kwargs):
186 PUT .../ticket_number
  /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...]
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
ObexTest.java 192 /* Create a sequence of put/get operations with different payload sizes */
202 step = sequencer.addStep(OPTYPE.PUT, sDataValidator);
210 step = sequencer.addStep(OPTYPE.PUT, sDataValidator);
219 step = sequencer.addStep(OPTYPE.PUT, sDataValidator);
230 step = sequencer.addStep(OPTYPE.PUT, sDataValidator);
250 step = sequencer.addStep(OPTYPE.PUT, sDataValidator);
274 * Use this validator to validate (and read/write data) for OBEX PUT and GET operations.
314 * Use this validator to validate (and read/write data) for OBEX PUT and GET operations.
325 } else if (step.mType == OPTYPE.PUT) {
TestSequencer.java 40 public enum OPTYPE {CONNECT, PUT, GET, SET_PATH, DISCONNECT};
155 case PUT: {
161 Operation op = mClientSession.put(reqHeaders);
  /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]
  /frameworks/base/cmds/settings/src/com/android/commands/settings/
SettingsCmd.java 42 PUT,
88 } else if ("put".equalsIgnoreCase(arg)) {
89 mVerb = CommandVerb.PUT;
121 // keep going; there's another PUT arg
122 } else { // PUT, final arg
159 case PUT:
235 System.err.println("Invalid table; no put performed");
260 System.err.println("Invalid table; no put performed");
297 System.err.println(" settings [--user <USER_ID> | current] put namespace key value");
  /frameworks/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...]
  /frameworks/volley/src/test/java/com/android/volley/toolbox/
HttpClientStackTest.java 82 TestRequest.Put request = new TestRequest.Put();
83 assertEquals(request.getMethod(), Method.PUT);
91 assertEquals(request.getMethod(), Method.PUT);
HurlStackTest.java 85 TestRequest.Put request = new TestRequest.Put();
86 assertEquals(request.getMethod(), Method.PUT);
89 assertEquals("PUT", mMockConnection.getRequestMethod());
95 assertEquals(request.getMethod(), Method.PUT);
98 assertEquals("PUT", mMockConnection.getRequestMethod());
  /external/pcre/dist/
pcre_internal.h 429 #define PUT(a,n,d) \
441 #define PUT(a,n,d) \
454 #define PUT(a,n,d) \
478 #define PUT(a,n,d) \
492 #define PUT(a,n,d) \
513 #define PUT(a,n,d) \
528 #define PUTINC(a,n,d) PUT(a,n,d), a += LINK_SIZE
791 it is. This is called only in UTF-8 mode - we don't put a test within the macro
886 it is. This is called only in UTF-16 mode - we don't put a test within the
947 it is. This is called only in UTF-32 mode - we don't put a test within th
    [all...]

Completed in 799 milliseconds

1 2 3 4