Home
last modified time | relevance | path

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

/external/selinux/python/semanage/
Dsemanage803 squote = "\'"
825 cnt = len(re.findall(squote, l[i]))
827 ret.append(l[i].strip(squote))
831 quote = [l[i].strip(squote)]
833 while i < len(l) and squote not in l[i]:
837 quote.append(l[i].strip(squote))
/external/u-boot/scripts/
DKbuild.include7 squote := '
30 escsq = $(subst $(squote),'\$(squote)',$1)
/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()
12634 case '\'': squote++; break; in unicode_repr()
12664 if (squote) { in unicode_repr()
12669 osize += squote; in unicode_repr()