Searched refs:_quote (Results 1 – 4 of 4) sorted by relevance
/external/chromium-trace/catapult/third_party/uritemplate/uritemplate/ |
D | __init__.py | 56 def _quote(value, safe, prefix=None): function 64 return ",".join([_quote(x, safe) for x in value]) 68 return ",".join([_quote(key, safe) + "=" + \ 69 _quote(value[key], safe) for key in keys]) 71 return ",".join([_quote(key, safe) + "," + \ 72 _quote(value[key], safe) for key in keys]) 76 return _quote(value, safe, prefix) 83 out = [_quote(x, safe) for x in value if value is not None] 86 out = [_quote(x, safe) for x in value if value is not None] 94 out = [_quote(key, safe) + "=" + \ [all …]
|
/external/autotest/tko/ |
D | db.py | 192 def _quote(self, field): member in db_sql 204 quoted_field = self._quote(field) 317 (table, ','.join(self._quote(field) for field in fields), 347 data_refs = [self._quote(field) + '=%s' for field in fields]
|
/external/v8/tools/gyp/pylib/gyp/ |
D | common.py | 232 _quote = re.compile('[\t\n #$%&\'()*;<=>?[{|}~]|^$') variable 273 if _quote.search(argument):
|
/external/autotest/frontend/tko/ |
D | graphing_utils.py | 87 def _quote(string): function 754 hostnames = ','.join(_quote(hostname) for hostname in names)
|