Home
last modified time | relevance | path

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

/haiku/src/apps/mail/
H A DContent.cpp1432 bool isAlpha, isApost, isCap; in MouseDown() local
1440 for (start = offset, c = text[start], isAlpha = isalpha(c), isApost = (c=='\''); in MouseDown()
1441 (start >= 0) && (isAlpha || (isApost in MouseDown()
1444 start--, c = text[start], isAlpha = isalpha(c), isApost = (c == '\'')) {} in MouseDown()
1447 for (end = offset, c = text[end], isAlpha = isalpha(c), isApost = (c == '\''); in MouseDown()
1448 (end < length) && (isAlpha || (isApost in MouseDown()
1450 end++, c = text[end], isAlpha = isalpha(c), isApost = (c == '\'')) {} in MouseDown()
2779 bool isApost; in CheckSpelling() local
2788 isApost = (*next == '\''); in CheckSpelling()
2794 } else if (word && (isAlpha || isApost) && !(isApost && !isalpha(next[1])) in CheckSpelling()
[all …]