/external/chromium_org/net/server/ |
http_server_response_info.h | 37 typedef std::vector<std::pair<std::string, std::string> > Headers; 40 Headers headers_;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/ |
headers.py | 1 """Manage HTTP Response Headers 30 class Headers: 32 """Manage a collection of HTTP response headers""" 34 def __init__(self,headers): 35 if type(headers) is not ListType: 36 raise TypeError("Headers must be a list of name/value tuples") 37 self._headers = headers 40 """Return the total number of headers, including duplicates.""" 126 return "Headers(%r)" % self._headers 129 """str() returns the formatted headers, complete with end line [all...] |
handlers.py | 5 from headers import Headers 62 headers_class = Headers # must be a Headers-like class 73 headers = None variable in class:BaseHandler 147 self.headers['Content-Length'] = str(self.bytes_sent) 157 if 'Content-Length' not in self.headers: 160 def start_response(self, status, headers,exc_info=None): 166 # Re-raise original exception if headers sent 170 elif self.headers is not None [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/ |
headers.py | 1 """Manage HTTP Response Headers 30 class Headers: 32 """Manage a collection of HTTP response headers""" 34 def __init__(self,headers): 35 if type(headers) is not ListType: 36 raise TypeError("Headers must be a list of name/value tuples") 37 self._headers = headers 40 """Return the total number of headers, including duplicates.""" 126 return "Headers(%r)" % self._headers 129 """str() returns the formatted headers, complete with end line [all...] |
handlers.py | 5 from headers import Headers 62 headers_class = Headers # must be a Headers-like class 73 headers = None variable in class:BaseHandler 147 self.headers['Content-Length'] = str(self.bytes_sent) 157 if 'Content-Length' not in self.headers: 160 def start_response(self, status, headers,exc_info=None): 166 # Re-raise original exception if headers sent 170 elif self.headers is not None [all...] |
/external/clang/include/clang/Lex/ |
ModuleMap.h | 11 // module as it relates to headers. 46 /// \brief The directory used for Clang-supplied, builtin include headers, 107 HeadersMap Headers; 109 /// \brief Mapping from directories with umbrella headers to the module 112 /// This mapping is used to map headers that haven't explicitly been named 174 /// \param FileMgr The file manager used to find module files and headers. 176 /// they will refer to the same headers.
|
/external/llvm/lib/Transforms/Utils/ |
LoopUnroll.cpp | 255 std::vector<BasicBlock*> Headers; 257 Headers.push_back(Header); 313 // Keep track of new headers and latches as we create them, so that 316 Headers.push_back(New); 358 BasicBlock *Dest = Headers[j]; 388 if (*SI == Headers[i])
|
/external/clang/lib/Frontend/ |
InitHeaderSearch.cpp | 44 HeaderSearch &Headers; 52 : Headers(HS), Verbose(verbose), IncludeSysroot(sysroot), 140 FileManager &FM = Headers.getFileMgr(); 165 if (const HeaderMap *HM = Headers.CreateHeaderMap(FE)) { 245 // Ignore the sys root, we *always* look for clang headers relative to 276 AddPath("/boot/develop/headers/os", System, false); 277 AddPath("/boot/develop/headers/os/app", System, false); 278 AddPath("/boot/develop/headers/os/arch", System, false); 279 AddPath("/boot/develop/headers/os/device", System, false); 280 AddPath("/boot/develop/headers/os/drivers", System, false) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_wsgiref.py | 4 from wsgiref.headers import Headers 131 "AssertionError: Headers (('Content-Type', 'text/plain')) must" 294 self.assertEqual(len(Headers([])),0) 295 self.assertEqual(len(Headers(test[:])),1) 296 self.assertEqual(Headers(test[:]).keys(), ['x']) 297 self.assertEqual(Headers(test[:]).values(), ['y']) 298 self.assertEqual(Headers(test[:]).items(), test) 299 self.assertFalse(Headers(test).items() is test) # must be copy! 301 h=Headers([]) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_wsgiref.py | 4 from wsgiref.headers import Headers 131 "AssertionError: Headers (('Content-Type', 'text/plain')) must" 294 self.assertEqual(len(Headers([])),0) 295 self.assertEqual(len(Headers(test[:])),1) 296 self.assertEqual(Headers(test[:]).keys(), ['x']) 297 self.assertEqual(Headers(test[:]).values(), ['y']) 298 self.assertEqual(Headers(test[:]).items(), test) 299 self.assertFalse(Headers(test).items() is test) # must be copy! 301 h=Headers([]) [all...] |
/frameworks/base/core/java/android/net/http/ |
Headers.java | 31 * Manages received headers 35 public final class Headers { 97 // keep any headers that require direct access in a presized 150 // Catch-all for headers not explicitly handled 154 public Headers() { 204 Log.v(LOGTAG, "Headers.headers(): error parsing" 440 * Reports all non-null headers to the callback 452 HttpLog.v("Headers.getHeaders() extra: " + i + " " +
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.osgi_3.6.1.R36x_v20100806.jar | |
org.eclipse.osgi_3.6.2.R36x_v20101103.jar | |
org.eclipse.pde.core_3.6.1.v20100902_r361.jar | |
/prebuilts/tools/common/eclipse/ |
org.eclipse.osgi_3.6.2.R36x_v20110210.jar | |