/external/llvm/lib/Support/ |
D | MD5.cpp | 69 #define GET(n) (block[(n)]) macro 113 STEP(G, a, b, c, d, GET(1), 0xf61e2562, 5) in body() 114 STEP(G, d, a, b, c, GET(6), 0xc040b340, 9) in body() 115 STEP(G, c, d, a, b, GET(11), 0x265e5a51, 14) in body() 116 STEP(G, b, c, d, a, GET(0), 0xe9b6c7aa, 20) in body() 117 STEP(G, a, b, c, d, GET(5), 0xd62f105d, 5) in body() 118 STEP(G, d, a, b, c, GET(10), 0x02441453, 9) in body() 119 STEP(G, c, d, a, b, GET(15), 0xd8a1e681, 14) in body() 120 STEP(G, b, c, d, a, GET(4), 0xe7d3fbc8, 20) in body() 121 STEP(G, a, b, c, d, GET(9), 0x21e1cde6, 5) in body() [all …]
|
/external/freetype/src/base/ |
D | md5.c | 76 #define GET(n) \ macro 85 #define GET(n) \ macro 131 STEP(G, a, b, c, d, GET(1), 0xf61e2562, 5) in body() 132 STEP(G, d, a, b, c, GET(6), 0xc040b340, 9) in body() 133 STEP(G, c, d, a, b, GET(11), 0x265e5a51, 14) in body() 134 STEP(G, b, c, d, a, GET(0), 0xe9b6c7aa, 20) in body() 135 STEP(G, a, b, c, d, GET(5), 0xd62f105d, 5) in body() 136 STEP(G, d, a, b, c, GET(10), 0x02441453, 9) in body() 137 STEP(G, c, d, a, b, GET(15), 0xd8a1e681, 14) in body() 138 STEP(G, b, c, d, a, GET(4), 0xe7d3fbc8, 20) in body() [all …]
|
/external/pdfium/third_party/freetype/src/base/ |
D | md5.c | 76 #define GET(n) \ macro 85 #define GET(n) \ macro 131 STEP(G, a, b, c, d, GET(1), 0xf61e2562, 5) in body() 132 STEP(G, d, a, b, c, GET(6), 0xc040b340, 9) in body() 133 STEP(G, c, d, a, b, GET(11), 0x265e5a51, 14) in body() 134 STEP(G, b, c, d, a, GET(0), 0xe9b6c7aa, 20) in body() 135 STEP(G, a, b, c, d, GET(5), 0xd62f105d, 5) in body() 136 STEP(G, d, a, b, c, GET(10), 0x02441453, 9) in body() 137 STEP(G, c, d, a, b, GET(15), 0xd8a1e681, 14) in body() 138 STEP(G, b, c, d, a, GET(4), 0xe7d3fbc8, 20) in body() [all …]
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_md5.cc | 29 #define GET(n) \ macro 75 STEP(G, a, b, c, d, GET(1), 0xf61e2562, 5) in body() 76 STEP(G, d, a, b, c, GET(6), 0xc040b340, 9) in body() 77 STEP(G, c, d, a, b, GET(11), 0x265e5a51, 14) in body() 78 STEP(G, b, c, d, a, GET(0), 0xe9b6c7aa, 20) in body() 79 STEP(G, a, b, c, d, GET(5), 0xd62f105d, 5) in body() 80 STEP(G, d, a, b, c, GET(10), 0x02441453, 9) in body() 81 STEP(G, c, d, a, b, GET(15), 0xd8a1e681, 14) in body() 82 STEP(G, b, c, d, a, GET(4), 0xe7d3fbc8, 20) in body() 83 STEP(G, a, b, c, d, GET(9), 0x21e1cde6, 5) in body() [all …]
|
/external/clang/test/SemaObjC/ |
D | atomoic-property-synnthesis-rules.m | 244 #define GET(x) \ 249 GET(GetSet) 251 GET(Get) // expected-warning {{writable atomic property 'Get' cannot pair a synthesized setter with… 253 GET(GetSet_Nonatomic) 255 GET(Get_Nonatomic) 258 GET(GetSet_ReadOnly) 260 GET(Get_ReadOnly) 262 GET(GetSet_Nonatomic_ReadOnly) 264 GET(Get_Nonatomic_ReadOnly) 267 GET(GetSet_ReadWriteInExt) [all …]
|
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/guide/ |
D | request.rst | 47 GET data 49 Query string variables are available in ``request.GET``. 51 ``.GET`` is a `MultiDict`_: it is like a dictionary but the same key can have 59 # GET([('check', 'a'), ('check', 'b'), ('name', 'Bob')]) 60 get_values = request.GET 63 check_value = request.GET['check'] 66 check_values = request.GET.getall('check') 70 request.GET.items() 72 The name ``GET`` is a bit misleading, but has historical reasons: 73 ``request.GET`` is not only available when the HTTP method is GET. It is [all …]
|
/external/pcre/dist/ |
D | pcre_study.c | 113 cs = cc + GET(cc, 1); in find_minlength() 136 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength() 172 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength() 204 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength() 334 cc += GET(cc, 1); in find_minlength() 395 do ce += GET(ce, 1); while (*ce == OP_ALT); in find_minlength() 420 do ce += GET(ce, 1); while (*ce == OP_ALT); in find_minlength() 475 cs = ce = (pcre_uchar *)startcode + GET(cc, 1); in find_minlength() 476 do ce += GET(ce, 1); while (*ce == OP_ALT); in find_minlength() 935 do tcode += GET(tcode, 1); while (*tcode == OP_ALT); in set_start_bits() [all …]
|
D | pcre_dfa_exec.c | 478 int back = GET(end_code, 2+LINK_SIZE); in internal_dfa_exec() 480 end_code += GET(end_code, 1); in internal_dfa_exec() 520 int back = GET(end_code, 2+LINK_SIZE); in internal_dfa_exec() 526 end_code += GET(end_code, 1); in internal_dfa_exec() 545 do { end_code += GET(end_code, 1); } while (*end_code == OP_ALT); in internal_dfa_exec() 562 end_code += GET(end_code, 1); in internal_dfa_exec() 780 ADD_ACTIVE(state_offset - GET(code, 1), 0); in internal_dfa_exec() 819 do { code += GET(code, 1); } while (*code == OP_ALT); in internal_dfa_exec() 829 code += GET(code, 1); in internal_dfa_exec() 838 code += GET(code, 1); in internal_dfa_exec() [all …]
|
D | pcre_compile.c | 1660 do code += GET(code, 1); while (*code == OP_ALT); in first_significant_code() 1747 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_fixedlength() 1775 cs = ce = (pcre_uchar *)cd->start_code + GET(cc, 1); /* Start subpattern */ in find_fixedlength() 1776 do ce += GET(ce, 1); while (*ce == OP_ALT); /* End subpattern */ in find_fixedlength() 1790 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_fixedlength() 1902 cc += GET(cc, 1); in find_fixedlength() 2062 if (c == OP_XCLASS) code += GET(code, 1); in PRIV() 2197 if (c == OP_XCLASS) code += GET(code, 1); in find_recurse() 2362 do code += GET(code, 1); while (*code == OP_ALT); in could_be_empty_branch() 2376 const pcre_uchar *scode = cd->start_code + GET(code, 1); in could_be_empty_branch() [all …]
|
D | pcre_printint.c | 395 if (print_lengths) fprintf(f, "%3d ", GET(code, 1)); in pcre_printint() 418 if (print_lengths) fprintf(f, "%3d ", GET(code, 1)); in pcre_printint() 599 if (print_lengths) fprintf(f, "%3d ", GET(code, 1)); in pcre_printint() 627 fprintf(f, " %s %d %d %d", priv_OP_names[*code], code[1], GET(code,2), in pcre_printint() 628 GET(code, 2 + LINK_SIZE)); in pcre_printint() 655 extra = GET(code, 1); in pcre_printint()
|
D | pcre_exec.c | 887 next = ecode + GET(ecode,1); in match() 894 ecode += GET(ecode,1); in match() 906 do ecode += GET(ecode, 1); while (*ecode == OP_ALT); in match() 1000 next = ecode + GET(ecode,1); in match() 1010 ecode += GET(ecode, 1); in match() 1070 else if (!md->hasthen && ecode[GET(ecode, 1)] != OP_ALT) in match() 1088 next = ecode + GET(ecode,1); in match() 1101 while (*scode == OP_ALT) scode += GET(scode, 1); in match() 1102 scode -= GET(scode, 1); in match() 1108 ecode += GET(ecode, 1); in match() [all …]
|
/external/oauth/core/src/main/java/net/oauth/http/ |
D | HttpClient.java | 35 static final String GET = OAuthMessage.GET; field
|
/external/llvm/test/MC/AsmParser/ |
D | macro-args.s | 3 .macro GET var,re2g macro 11 GET is_sse, %eax
|
/external/jetty/src/java/org/eclipse/jetty/http/ |
D | HttpMethods.java | 31 public final static String GET= "GET", field in HttpMethods 54 GET_BUFFER= CACHE.add(GET, GET_ORDINAL),
|
/external/valgrind/VEX/priv/ |
D | host_generic_simd64.c | 1434 #define GET( x, y ) ( ( ( x ) & ( 0x1UL << ( y ) ) ) >> ( y ) ) macro 1444 p = GET( chunk, 9 ); in dpb_to_bcd() 1445 q = GET( chunk, 8 ); in dpb_to_bcd() 1446 r = GET( chunk, 7 ); in dpb_to_bcd() 1447 s = GET( chunk, 6 ); in dpb_to_bcd() 1448 t = GET( chunk, 5 ); in dpb_to_bcd() 1449 u = GET( chunk, 4 ); in dpb_to_bcd() 1450 v = GET( chunk, 3 ); in dpb_to_bcd() 1451 w = GET( chunk, 2 ); in dpb_to_bcd() 1452 x = GET( chunk, 1 ); in dpb_to_bcd() [all …]
|
/external/chromium-trace/trace-viewer/third_party/Paste/tests/ |
D | test_request.py | 15 'Hello world!\n', 'The get is %s' % str(request.GET), 16 ' and Val is %s\n' % request.GET.get('name'),
|
/external/eigen/cmake/ |
D | EigenDetermineOSVersion.cmake | 35 list(GET ver_list 0 _major) 36 list(GET ver_list 1 _minor)
|
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/ |
D | index.txt | 76 The request method, e.g., ``'GET'``, ``'POST'`` 78 ``req.GET``: 89 ``req.GET`` and ``req.POST``. 156 always turns it into a GET (which is safer to share for 176 If it is set, then ``req.POST``, ``req.GET``, ``req.params``, and 313 In a multidict, when you do ``request.GET['pref']`` you'll get back 317 ``request.GET.getall('pref')``. If you want to be sure there is *one 318 and only one* value, use ``request.GET.getone('pref')``, which will 322 When you use operations like ``request.GET.items()`` you'll get back 324 key/value pairs will show up. Similarly ``request.GET.keys()``
|
D | reference.txt | 69 'REQUEST_METHOD': 'GET', 201 >>> req.GET 203 >>> req.GET['check'] 205 >>> req.GET.getall('check') 207 >>> req.GET.items() 247 The ``POST`` and ``GET`` nomenclature is historical -- ``req.GET`` can 248 be used for non-GET requests to access query parameters, and 257 >>> req.GET 276 >>> req.GET 702 >>> res.allow = ['GET', 'PUT'] [all …]
|
/external/compiler-rt/ |
D | CMakeLists.txt | 95 list(GET CONFIG_OUTPUT 0 LLVM_BINARY_DIR) 96 list(GET CONFIG_OUTPUT 1 LLVM_TOOLS_BINARY_DIR) 97 list(GET CONFIG_OUTPUT 2 LLVM_LIBRARY_DIR) 98 list(GET CONFIG_OUTPUT 3 LLVM_MAIN_SRC_DIR) 139 list(GET TARGET_TRIPLE_LIST 0 COMPILER_RT_TEST_TARGET_ARCH) 140 list(GET TARGET_TRIPLE_LIST 1 COMPILER_RT_TEST_TARGET_OS) 141 list(GET TARGET_TRIPLE_LIST 2 COMPILER_RT_TEST_TARGET_ABI)
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/ |
D | wsgiwrappers.py | 181 def GET(self): member in WSGIRequest 199 GET = property(GET, doc=GET.__doc__) variable in WSGIRequest 290 msg += '\nGET=%s,' % pf(self.GET)
|
/external/valgrind/memcheck/tests/ |
D | metadata.stdout.exp | 1 result of GET is 1 (1 for success)
|
/external/jetty/src/java/org/eclipse/jetty/server/handler/ |
D | DefaultHandler.java | 94 …if (_serveIcon && _favicon!=null && method.equals(HttpMethods.GET) && request.getRequestURI().equa… in handle() 111 if (!method.equals(HttpMethods.GET) || !request.getRequestURI().equals("/")) in handle()
|
/external/clang/ |
D | CMakeLists.txt | 52 list(GET CONFIG_OUTPUT 0 ENABLE_ASSERTIONS) 53 list(GET CONFIG_OUTPUT 1 TOOLS_BINARY_DIR) 54 list(GET CONFIG_OUTPUT 2 LIBRARY_DIR) 55 list(GET CONFIG_OUTPUT 3 INCLUDE_DIR) 56 list(GET CONFIG_OUTPUT 4 LLVM_OBJ_ROOT) 57 list(GET CONFIG_OUTPUT 5 MAIN_SRC_DIR)
|
/external/oauth/core/src/main/java/net/oauth/ |
D | OAuthAccessor.java | 79 method = OAuthMessage.GET; in newRequestMessage()
|