Searched refs:isPreviousCharacter (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/editing/
H A DSmartReplace.h36 bool isCharacterSmartReplaceExempt(UChar32 c, bool isPreviousCharacter);
H A DSmartReplaceCF.cpp37 static CFMutableCharacterSetRef getSmartSet(bool isPreviousCharacter) argument
41 CFMutableCharacterSetRef smartSet = isPreviousCharacter ? preSmartSet : postSmartSet;
44 CFCharacterSetAddCharactersInString(smartSet, isPreviousCharacter ? CFSTR("([\"\'#$/-`{") : CFSTR(")].,;:?\'!\"%*-/}"));
58 if (isPreviousCharacter)
68 bool isCharacterSmartReplaceExempt(UChar32 c, bool isPreviousCharacter) argument
70 return CFCharacterSetIsLongCharacterMember(getSmartSet(isPreviousCharacter), c);
H A DSmartReplace.cpp49 static USet* getSmartSet(bool isPreviousCharacter) argument
53 USet* smartSet = isPreviousCharacter ? preSmartSet : postSmartSet;
74 if (isPreviousCharacter) {
96 bool isCharacterSmartReplaceExempt(UChar32 c, bool isPreviousCharacter) argument
98 return uset_contains(getSmartSet(isPreviousCharacter), c);
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebView.h748 + (BOOL)isCharacterSmartReplaceExempt:(unichar)character isPreviousCharacter:(BOOL)b;
H A DWebView.mm1352 + (BOOL)isCharacterSmartReplaceExempt:(unichar)character isPreviousCharacter:(BOOL)b

Completed in 81 milliseconds