Home
last modified time | relevance | path

Searched refs:dquote (Results 1 – 2 of 2) sorted by relevance

/external/selinux/python/semanage/
Dsemanage804 dquote = "\""
810 cnt = len(re.findall(dquote, l[i]))
812 ret.append(l[i].strip(dquote))
816 quote = [l[i].strip(dquote)]
819 while i < len(l) and dquote not in l[i]:
822 quote.append(l[i].strip(dquote))
/external/python/cpython3/Objects/
Dunicodeobject.c12942 Py_ssize_t osize, squote, dquote, i, o; in unicode_repr() local
12958 squote = dquote = 0; in unicode_repr()
12965 case '"': dquote++; break; in unicode_repr()
12996 if (dquote) in unicode_repr()