/external/python/cpython2/Lib/ |
D | cgi.py | 149 ctype, pdict = parse_header(environ['CONTENT_TYPE']) 151 return parse_multipart(fp, pdict) 193 def parse_multipart(fp, pdict): argument 219 if 'boundary' in pdict: 220 boundary = pdict['boundary'] 311 pdict = {} 320 pdict[name] = value 321 return key, pdict 457 cdisp, pdict = "", {} 459 cdisp, pdict = parse_header(self.headers['content-disposition']) [all …]
|
/external/python/cpython3/Lib/ |
D | cgi.py | 155 ctype, pdict = parse_header(environ['CONTENT_TYPE']) 157 return parse_multipart(fp, pdict) 184 def parse_multipart(fp, pdict, encoding="utf-8", errors="replace"): argument 199 boundary = pdict['boundary'].decode('ascii') 204 headers['Content-Length'] = pdict['CONTENT-LENGTH'] 231 pdict = {} 240 pdict[name] = value 241 return key, pdict 419 cdisp, pdict = "", {} 421 cdisp, pdict = parse_header(self.headers['content-disposition']) [all …]
|
/external/selinux/python/sepolgen/src/sepolgen/ |
D | yacc.py | 1375 def bind(self, pdict): argument 1377 self.callable = pdict[self.func] 1400 def bind(self, pdict): argument 1402 self.callable = pdict[self.func] 2028 def bind_callables(self, pdict): argument 2030 p.bind(pdict) 2939 def __init__(self, pdict, log=None): argument 2940 self.pdict = pdict 3025 self.start = self.pdict.get('start') 3035 self.error_func = self.pdict.get('p_error') [all …]
|
/external/ply/ply/ply/ |
D | yacc.py | 1375 def bind(self, pdict): argument 1377 self.callable = pdict[self.func] 1400 def bind(self, pdict): argument 1402 self.callable = pdict[self.func] 2028 def bind_callables(self, pdict): argument 2030 p.bind(pdict) 2939 def __init__(self, pdict, log=None): argument 2940 self.pdict = pdict 3025 self.start = self.pdict.get('start') 3035 self.error_func = self.pdict.get('p_error') [all …]
|
/external/python/pycparser/pycparser/ply/ |
D | yacc.py | 1373 def bind(self, pdict): argument 1375 self.callable = pdict[self.func] 1398 def bind(self, pdict): argument 1400 self.callable = pdict[self.func] 2026 def bind_callables(self, pdict): argument 2028 p.bind(pdict) 2937 def __init__(self, pdict, log=None): argument 2938 self.pdict = pdict 3023 self.start = self.pdict.get('start') 3033 self.error_func = self.pdict.get('p_error') [all …]
|
/external/libchrome/third_party/ply/ |
D | yacc.py | 1217 def bind(self,pdict): argument 1219 self.callable = pdict[self.func] 1240 def bind(self,pdict): argument 1242 self.callable = pdict[self.func] 1870 def bind_callables(self,pdict): argument 1872 p.bind(pdict) 2763 def __init__(self,pdict,log=None): argument 2764 self.pdict = pdict 2856 self.start = self.pdict.get('start') 2866 self.error_func = self.pdict.get('p_error') [all …]
|
/external/python/cpython3/Doc/library/ |
D | cgi.rst | 287 .. function:: parse_multipart(fp, pdict, encoding="utf-8", errors="replace") 290 Arguments are *fp* for the input file, *pdict* for a dictionary containing
|
/external/python/cpython2/Doc/library/ |
D | cgi.rst | 305 .. function:: parse_multipart(fp, pdict) 308 Arguments are *fp* for the input file and *pdict* for a dictionary containing
|
/external/mesa3d/src/imgui/ |
D | imstb_truetype.h | 1340 stbtt__buf pdict; in stbtt__get_subrs() local 1343 pdict = stbtt__buf_range(&cff, private_loc[1], private_loc[0]); in stbtt__get_subrs() 1344 stbtt__dict_get_ints(&pdict, 19, 1, &subrsoff); in stbtt__get_subrs()
|
/external/python/cpython3/Lib/test/ |
D | test_decimal.py | 5558 pdict = {C: {'other': C.Decimal(1), 5590 args.append(pdict[module][name]) 5592 kwargs[name] = pdict[module][name]
|