Searched refs:header_names (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython2/Lib/wsgiref/ |
D | validate.py | 386 header_names = {} 397 header_names[name.lower()] = None
|
/external/mesa3d/src/gallium/frontends/clover/api/ |
D | program.cpp | 235 const char **header_names, in clCompileProgram() argument 248 if (bool(num_headers) != bool(header_names)) in clCompileProgram() 262 range(header_names, num_headers), in clCompileProgram()
|
/external/python/cpython3/Lib/http/ |
D | client.py | 1259 header_names = frozenset(k.lower() for k in headers) 1261 if 'host' in header_names: 1263 if 'accept-encoding' in header_names: 1275 if 'content-length' not in header_names: 1279 if 'transfer-encoding' not in header_names:
|
/external/python/cpython2/Lib/ |
D | httplib.py | 1069 header_names = dict.fromkeys([k.lower() for k in headers]) 1071 if 'host' in header_names: 1073 if 'accept-encoding' in header_names: 1078 if 'content-length' not in header_names:
|
/external/OpenCL-CTS/test_conformance/compiler/ |
D | test_compile.cpp | 430 const char **header_names; in test_large_multiple_embedded_headers() local 446 header_names = (const char**)malloc( numLines*sizeof( const char * ) ); in test_large_multiple_embedded_headers() 447 if (header_names == NULL) { in test_large_multiple_embedded_headers() 462 header_names[i] = _strdup(buffer); in test_large_multiple_embedded_headers() 493 …error = clCompileProgram(program, 1, &deviceID, NULL, numLines, headers, header_names, NULL, NULL); in test_large_multiple_embedded_headers() 540 free( (void*)header_names[i] ); in test_large_multiple_embedded_headers() 547 free( header_names ); in test_large_multiple_embedded_headers()
|