Searched refs:smartSet (Results 1 – 2 of 2) sorted by relevance
/external/webkit/Source/WebCore/editing/ |
D | SmartReplaceCF.cpp | 41 CFMutableCharacterSetRef smartSet = isPreviousCharacter ? preSmartSet : postSmartSet; in getSmartSet() local 42 if (!smartSet) { in getSmartSet() 43 smartSet = CFCharacterSetCreateMutable(kCFAllocatorDefault); in getSmartSet() 44 …CFCharacterSetAddCharactersInString(smartSet, isPreviousCharacter ? CFSTR("([\"\'#$/-`{") : CFSTR(… in getSmartSet() 45 …CFCharacterSetUnion(smartSet, CFCharacterSetGetPredefined(kCFCharacterSetWhitespaceAndNewline)); … in getSmartSet() 47 …CFCharacterSetAddCharactersInRange(smartSet, CFRangeMake(0x1100, 256)); // Hangul Jamo (0x1100 - 0… in getSmartSet() 48 …CFCharacterSetAddCharactersInRange(smartSet, CFRangeMake(0x2E80, 352)); // CJK & Kangxi Radicals (… in getSmartSet() 49 …CFCharacterSetAddCharactersInRange(smartSet, CFRangeMake(0x2FF0, 464)); // Ideograph Descriptions,… in getSmartSet() 50 …CFCharacterSetAddCharactersInRange(smartSet, CFRangeMake(0x3200, 29392)); // Enclosed CJK, CJK Ide… in getSmartSet() 51 …CFCharacterSetAddCharactersInRange(smartSet, CFRangeMake(0xAC00, 11183)); // Hangul Syllables (0xA… in getSmartSet() [all …]
|
D | SmartReplaceICU.cpp | 40 static void addAllCodePoints(USet* smartSet, const String& string) in addAllCodePoints() argument 44 uset_add(smartSet, characters[i]); in addAllCodePoints() 53 USet* smartSet = isPreviousCharacter ? preSmartSet : postSmartSet; in getSmartSet() local 54 if (!smartSet) { in getSmartSet() 58 …smartSet = uset_openPattern(whitespaceAndNewline.characters(), whitespaceAndNewline.length(), &ec); in getSmartSet() 62 uset_addRange(smartSet, 0x1100, 0x1100 + 256); // Hangul Jamo (0x1100 - 0x11FF) in getSmartSet() 63 uset_addRange(smartSet, 0x2E80, 0x2E80 + 352); // CJK & Kangxi Radicals (0x2E80 - 0x2FDF) in getSmartSet() 64 …uset_addRange(smartSet, 0x2FF0, 0x2FF0 + 464); // Ideograph Descriptions, CJK Symbols, Hiragana, K… in getSmartSet() 65 …uset_addRange(smartSet, 0x3200, 0x3200 + 29392); // Enclosed CJK, CJK Ideographs (Uni Han & Ext A)… in getSmartSet() 66 uset_addRange(smartSet, 0xAC00, 0xAC00 + 11183); // Hangul Syllables (0xAC00 - 0xD7AF) in getSmartSet() [all …]
|