Home
last modified time | relevance | path

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

/external/selinux/python/semanage/
Dsemanage805 squote = "\'"
827 cnt = len(re.findall(squote, l[i]))
829 ret.append(l[i].strip(squote))
833 quote = [l[i].strip(squote)]
835 while i < len(l) and squote not in l[i]:
839 quote.append(l[i].strip(squote))
/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()
12964 case '\'': squote++; break; in unicode_repr()
12994 if (squote) { in unicode_repr()
12999 osize += squote; in unicode_repr()