Searched refs:smartSet (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/editing/
H A DSmartReplaceCF.cpp41 CFMutableCharacterSetRef smartSet = isPreviousCharacter ? preSmartSet : postSmartSet; local
42 if (!smartSet) {
43 smartSet = CFCharacterSetCreateMutable(kCFAllocatorDefault);
44 CFCharacterSetAddCharactersInString(smartSet, isPreviousCharacter ? CFSTR("([\"\'#$/-`{") : CFSTR(")].,;:?\'!\"%*-/}"));
45 CFCharacterSetUnion(smartSet, CFCharacterSetGetPredefined(kCFCharacterSetWhitespaceAndNewline));
47 CFCharacterSetAddCharactersInRange(smartSet, CFRangeMake(0x1100, 256)); // Hangul Jamo (0x1100 - 0x11FF)
48 CFCharacterSetAddCharactersInRange(smartSet, CFRangeMake(0x2E80, 352)); // CJK & Kangxi Radicals (0x2E80 - 0x2FDF)
49 CFCharacterSetAddCharactersInRange(smartSet, CFRangeMake(0x2FF0, 464)); // Ideograph Descriptions, CJK Symbols, Hiragana, Katakana, Bopomofo, Hangul Compatibility Jamo, Kanbun, & Bopomofo Ext (0x2FF0 - 0x31BF)
50 CFCharacterSetAddCharactersInRange(smartSet, CFRangeMake(0x3200, 29392)); // Enclosed CJK, CJK Ideographs (Uni Han & Ext A), & Yi (0x3200 - 0xA4CF)
51 CFCharacterSetAddCharactersInRange(smartSet, CFRangeMak
[all...]
H A DSmartReplaceICU.cpp40 static void addAllCodePoints(USet* smartSet, const String& string) argument
44 uset_add(smartSet, characters[i]);
53 USet* smartSet = isPreviousCharacter ? preSmartSet : postSmartSet; local
54 if (!smartSet) {
58 smartSet = uset_openPattern(whitespaceAndNewline.characters(), whitespaceAndNewline.length(), &ec);
62 uset_addRange(smartSet, 0x1100, 0x1100 + 256); // Hangul Jamo (0x1100 - 0x11FF)
63 uset_addRange(smartSet, 0x2E80, 0x2E80 + 352); // CJK & Kangxi Radicals (0x2E80 - 0x2FDF)
64 uset_addRange(smartSet, 0x2FF0, 0x2FF0 + 464); // Ideograph Descriptions, CJK Symbols, Hiragana, Katakana, Bopomofo, Hangul Compatibility Jamo, Kanbun, & Bopomofo Ext (0x2FF0 - 0x31BF)
65 uset_addRange(smartSet, 0x3200, 0x3200 + 29392); // Enclosed CJK, CJK Ideographs (Uni Han & Ext A), & Yi (0x3200 - 0xA4CF)
66 uset_addRange(smartSet,
[all...]

Completed in 119 milliseconds