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

/external/webkit/Source/WebCore/editing/
H A DSmartReplace.cpp36 bool isCharacterSmartReplaceExempt(UChar32 c, bool isPreviousCharacter) argument
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 DSmartReplaceICU.cpp49 static USet* getSmartSet(bool isPreviousCharacter) argument
53 USet* smartSet = isPreviousCharacter ? preSmartSet : postSmartSet;
73 if (isPreviousCharacter) {
93 bool isCharacterSmartReplaceExempt(UChar32 c, bool isPreviousCharacter) argument
95 return uset_contains(getSmartSet(isPreviousCharacter), c);
/external/webkit/Source/WebCore/editing/qt/
H A DSmartReplaceQt.cpp35 bool isCharacterSmartReplaceExempt(UChar32 c, bool isPreviousCharacter) argument
40 if (!isPreviousCharacter && d.isPunct())
57 const char* str = (isPreviousCharacter) ? prev : next;

Completed in 84 milliseconds