OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:smartset
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/editing/
SmartReplaceICU.cpp
40
static void addAllCodePoints(USet*
smartSet
, const String& string)
44
uset_add(
smartSet
, characters[i]);
53
USet*
smartSet
= isPreviousCharacter ? preSmartSet : postSmartSet;
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
, 0xAC00, 0xAC00 + 11183); // Hangul Syllables (0xAC00 - 0xD7AF
[
all
...]
SmartReplaceCF.cpp
41
CFMutableCharacterSetRef
smartSet
= isPreviousCharacter ? preSmartSet : postSmartSet;
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
, CFRangeMake(0xAC00, 11183)); // Hangul Syllables (0xAC00 - 0xD7AF
[
all
...]
/external/protobuf/python/
stubout.py
42
def
SmartSet
(self, obj, attr_name, new_attr):
97
"""Reverses all the
SmartSet
() calls, restoring things to their original
99
have no effect if no
SmartSet
() calls have been made.
Completed in 2914 milliseconds