HomeSort by relevance Sort by last modified time
    Searched refs:types_map (Results 1 - 8 of 8) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimetypes.py 17 types_map -- dictionary mapping suffixes to types
69 self.types_map = ({}, {}) # dict for (non-strict, strict)
71 for (ext, type) in types_map.items():
90 self.types_map[strict][ext] = type
142 types_map = self.types_map[True]
143 if ext in types_map:
144 return types_map[ext], encoding
145 elif ext.lower() in types_map:
146 return types_map[ext.lower()], encodin
    [all...]
SimpleHTTPServer.py 205 extensions_map = mimetypes.types_map.copy()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimetypes.py 17 types_map -- dictionary mapping suffixes to types
69 self.types_map = ({}, {}) # dict for (non-strict, strict)
71 for (ext, type) in types_map.items():
90 self.types_map[strict][ext] = type
142 types_map = self.types_map[True]
143 if ext in types_map:
144 return types_map[ext], encoding
145 elif ext.lower() in types_map:
146 return types_map[ext.lower()], encodin
    [all...]
SimpleHTTPServer.py 205 extensions_map = mimetypes.types_map.copy()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_mimetypes.py 72 self.original_types_map = mimetypes.types_map.copy()
73 mimetypes.types_map.clear()
79 mimetypes.types_map.clear()
80 mimetypes.types_map.update(self.original_types_map)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_mimetypes.py 72 self.original_types_map = mimetypes.types_map.copy()
73 mimetypes.types_map.clear()
79 mimetypes.types_map.clear()
80 mimetypes.types_map.update(self.original_types_map)
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
generate-inspector-protocol-version 168 def extract_type(typed_object, types_map, errors):
178 if not ref in types_map:
180 types_map[ref] = { "id": "<transient>", "type": "object" }
181 return types_map[ref]
  /external/chromium_org/media/tools/constrained_network_server/
cns.py 37 mimetypes.types_map['.webm'] = 'video/webm'

Completed in 410 milliseconds