Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: Source/core/editing/SmartReplaceCF.cpp

Issue 1292303005: Make core/editing/ files to match Blink coding style (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2015-08-18T10:48:50 Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2007 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 18 matching lines...) Expand all
29 #include "config.h" 29 #include "config.h"
30 #include "core/editing/SmartReplace.h" 30 #include "core/editing/SmartReplace.h"
31 31
32 #include <CoreFoundation/CFCharacterSet.h> 32 #include <CoreFoundation/CFCharacterSet.h>
33 #include <CoreFoundation/CFString.h> 33 #include <CoreFoundation/CFString.h>
34 34
35 namespace blink { 35 namespace blink {
36 36
37 static CFMutableCharacterSetRef getSmartSet(bool isPreviousCharacter) 37 static CFMutableCharacterSetRef getSmartSet(bool isPreviousCharacter)
38 { 38 {
39 static CFMutableCharacterSetRef preSmartSet = NULL; 39 static CFMutableCharacterSetRef preSmartSet = nullptr;
40 static CFMutableCharacterSetRef postSmartSet = NULL; 40 static CFMutableCharacterSetRef postSmartSet = nullptr;
41 CFMutableCharacterSetRef smartSet = isPreviousCharacter ? preSmartSet : post SmartSet; 41 CFMutableCharacterSetRef smartSet = isPreviousCharacter ? preSmartSet : post SmartSet;
42 if (!smartSet) { 42 if (!smartSet) {
43 smartSet = CFCharacterSetCreateMutable(kCFAllocatorDefault); 43 smartSet = CFCharacterSetCreateMutable(kCFAllocatorDefault);
44 CFCharacterSetAddCharactersInString(smartSet, isPreviousCharacter ? CFST R("([\"\'#$/-`{") : CFSTR(")].,;:?\'!\"%*-/}")); 44 CFCharacterSetAddCharactersInString(smartSet, isPreviousCharacter ? CFST R("([\"\'#$/-`{") : CFSTR(")].,;:?\'!\"%*-/}"));
45 CFCharacterSetUnion(smartSet, CFCharacterSetGetPredefined(kCFCharacterSe tWhitespaceAndNewline)); 45 CFCharacterSetUnion(smartSet, CFCharacterSetGetPredefined(kCFCharacterSe tWhitespaceAndNewline));
46 // Adding CJK ranges 46 // Adding CJK ranges
47 CFCharacterSetAddCharactersInRange(smartSet, CFRangeMake(0x1100, 256)); // Hangul Jamo (0x1100 - 0x11FF) 47 CFCharacterSetAddCharactersInRange(smartSet, CFRangeMake(0x1100, 256)); // Hangul Jamo (0x1100 - 0x11FF)
48 CFCharacterSetAddCharactersInRange(smartSet, CFRangeMake(0x2E80, 352)); // CJK & Kangxi Radicals (0x2E80 - 0x2FDF) 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 Com patibility Jamo, Kanbun, & Bopomofo Ext (0x2FF0 - 0x31BF) 49 CFCharacterSetAddCharactersInRange(smartSet, CFRangeMake(0x2FF0, 464)); // Ideograph Descriptions, CJK Symbols, Hiragana, Katakana, Bopomofo, Hangul Com patibility Jamo, Kanbun, & Bopomofo Ext (0x2FF0 - 0x31BF)
50 CFCharacterSetAddCharactersInRange(smartSet, CFRangeMake(0x3200, 29392)) ; // Enclosed CJK, CJK Ideographs (Uni Han & Ext A), & Yi (0x3200 - 0xA4CF) 50 CFCharacterSetAddCharactersInRange(smartSet, CFRangeMake(0x3200, 29392)) ; // Enclosed CJK, CJK Ideographs (Uni Han & Ext A), & Yi (0x3200 - 0xA4CF)
(...skipping 13 matching lines...) Expand all
64 } 64 }
65 return smartSet; 65 return smartSet;
66 } 66 }
67 67
68 bool isCharacterSmartReplaceExempt(UChar32 c, bool isPreviousCharacter) 68 bool isCharacterSmartReplaceExempt(UChar32 c, bool isPreviousCharacter)
69 { 69 {
70 return CFCharacterSetIsLongCharacterMember(getSmartSet(isPreviousCharacter), c); 70 return CFCharacterSetIsLongCharacterMember(getSmartSet(isPreviousCharacter), c);
71 } 71 }
72 72
73 } 73 }
OLDNEW
« no previous file with comments | « Source/core/editing/SetNodeAttributeCommand.cpp ('k') | Source/core/editing/SmartReplaceICU.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698