Home
last modified time | relevance | path

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

/external/selinux/python/semanage/
Dsemanage802 dquote = "\""
808 cnt = len(re.findall(dquote, l[i]))
810 ret.append(l[i].strip(dquote))
814 quote = [l[i].strip(dquote)]
817 while i < len(l) and dquote not in l[i]:
820 quote.append(l[i].strip(dquote))
/external/python/cpython3/Objects/
Dunicodeobject.c12613 Py_ssize_t osize, squote, dquote, i, o; in unicode_repr() local
12628 squote = dquote = 0; in unicode_repr()
12635 case '"': dquote++; break; in unicode_repr()
12666 if (dquote) in unicode_repr()