Home
last modified time | relevance | path

Searched refs:_quote (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/http/
Dcookies.py174 def _quote(str): function
413 append("%s=%s" % (self._reserved[key], _quote(value)))
612 return strval, _quote(strval)
/third_party/node/deps/v8/bazel/
Ddefs.bzl461 def _quote(val):
467 return _quote(k) + ": " + v
518 cpu = _quote("x64")
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
Dcommon.py234 _quote = re.compile("[\t\n #$%&'()*;<=>?[{|}~]|^$") variable
276 quote = '"' if _quote.search(argument) else ""
/third_party/node/tools/gyp/pylib/gyp/
Dcommon.py238 _quote = re.compile("[\t\n #$%&'()*;<=>?[{|}~]|^$") variable
280 if _quote.search(argument):
/third_party/python/Lib/
Dimaplib.py610 typ, dat = self._simple_command('LOGIN', user, self._quote(password))
1220 def _quote(self, arg): member in IMAP4