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

Side by Side Diff: third_party/WebKit/Source/wtf/text/CharacterNames.h

Issue 1964773002: Render Unicode control characters (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: w/Test changes Created 4 years, 5 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
« no previous file with comments | « third_party/WebKit/Source/platform/text/Character.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2009, 2010 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 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 const UChar leftDoubleQuotationMarkCharacter = 0x201C; 80 const UChar leftDoubleQuotationMarkCharacter = 0x201C;
81 const UChar leftSingleQuotationMarkCharacter = 0x2018; 81 const UChar leftSingleQuotationMarkCharacter = 0x2018;
82 const UChar32 leftSpeechBubbleCharacter = 0x1F5E8; 82 const UChar32 leftSpeechBubbleCharacter = 0x1F5E8;
83 const UChar leftToRightEmbedCharacter = 0x202A; 83 const UChar leftToRightEmbedCharacter = 0x202A;
84 const UChar leftToRightIsolateCharacter = 0x2066; 84 const UChar leftToRightIsolateCharacter = 0x2066;
85 const UChar leftToRightMarkCharacter = 0x200E; 85 const UChar leftToRightMarkCharacter = 0x200E;
86 const UChar leftToRightOverrideCharacter = 0x202D; 86 const UChar leftToRightOverrideCharacter = 0x202D;
87 const UChar lineSeparator = 0x2028; 87 const UChar lineSeparator = 0x2028;
88 const UChar minusSignCharacter = 0x2212; 88 const UChar minusSignCharacter = 0x2212;
89 const UChar newlineCharacter = 0x000A; 89 const UChar newlineCharacter = 0x000A;
90 const UChar formFeedCharacter = 0x000C;
90 const UChar nationalDigitShapesCharacter = 0x206E; 91 const UChar nationalDigitShapesCharacter = 0x206E;
91 const UChar nominalDigitShapesCharacter = 0x206F; 92 const UChar nominalDigitShapesCharacter = 0x206F;
92 const UChar noBreakSpaceCharacter = 0x00A0; 93 const UChar noBreakSpaceCharacter = 0x00A0;
93 const UChar objectReplacementCharacter = 0xFFFC; 94 const UChar objectReplacementCharacter = 0xFFFC;
94 const UChar paragraphSeparator = 0x2029; 95 const UChar paragraphSeparator = 0x2029;
95 const UChar popDirectionalFormattingCharacter = 0x202C; 96 const UChar popDirectionalFormattingCharacter = 0x202C;
96 const UChar popDirectionalIsolateCharacter = 0x2069; 97 const UChar popDirectionalIsolateCharacter = 0x2069;
97 const UChar replacementCharacter = 0xFFFD; 98 const UChar replacementCharacter = 0xFFFD;
98 const UChar rightDoubleQuotationMarkCharacter = 0x201D; 99 const UChar rightDoubleQuotationMarkCharacter = 0x201D;
99 const UChar rightSingleQuotationMarkCharacter = 0x2019; 100 const UChar rightSingleQuotationMarkCharacter = 0x2019;
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 using WTF::Unicode::bullseyeCharacter; 138 using WTF::Unicode::bullseyeCharacter;
138 using WTF::Unicode::carriageReturnCharacter; 139 using WTF::Unicode::carriageReturnCharacter;
139 using WTF::Unicode::combiningEnclosingKeycapCharacter; 140 using WTF::Unicode::combiningEnclosingKeycapCharacter;
140 using WTF::Unicode::combiningEnclosingCircleBackslashCharacter; 141 using WTF::Unicode::combiningEnclosingCircleBackslashCharacter;
141 using WTF::Unicode::ethiopicPrefaceColonCharacter; 142 using WTF::Unicode::ethiopicPrefaceColonCharacter;
142 using WTF::Unicode::ethiopicWordspaceCharacter; 143 using WTF::Unicode::ethiopicWordspaceCharacter;
143 using WTF::Unicode::eyeCharacter; 144 using WTF::Unicode::eyeCharacter;
144 using WTF::Unicode::familyCharacter; 145 using WTF::Unicode::familyCharacter;
145 using WTF::Unicode::firstStrongIsolateCharacter; 146 using WTF::Unicode::firstStrongIsolateCharacter;
146 using WTF::Unicode::fisheyeCharacter; 147 using WTF::Unicode::fisheyeCharacter;
148 using WTF::Unicode::formFeedCharacter;
147 using WTF::Unicode::fullstopCharacter; 149 using WTF::Unicode::fullstopCharacter;
148 using WTF::Unicode::hebrewPunctuationGereshCharacter; 150 using WTF::Unicode::hebrewPunctuationGereshCharacter;
149 using WTF::Unicode::hebrewPunctuationGershayimCharacter; 151 using WTF::Unicode::hebrewPunctuationGershayimCharacter;
150 using WTF::Unicode::hiraganaLetterSmallACharacter; 152 using WTF::Unicode::hiraganaLetterSmallACharacter;
151 using WTF::Unicode::horizontalEllipsisCharacter; 153 using WTF::Unicode::horizontalEllipsisCharacter;
152 using WTF::Unicode::hyphenCharacter; 154 using WTF::Unicode::hyphenCharacter;
153 using WTF::Unicode::hyphenMinusCharacter; 155 using WTF::Unicode::hyphenMinusCharacter;
154 using WTF::Unicode::ideographicCommaCharacter; 156 using WTF::Unicode::ideographicCommaCharacter;
155 using WTF::Unicode::ideographicFullStopCharacter; 157 using WTF::Unicode::ideographicFullStopCharacter;
156 #if defined(USING_SYSTEM_ICU) 158 #if defined(USING_SYSTEM_ICU)
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 using WTF::Unicode::whiteSesameDotCharacter; 201 using WTF::Unicode::whiteSesameDotCharacter;
200 using WTF::Unicode::whiteUpPointingTriangleCharacter; 202 using WTF::Unicode::whiteUpPointingTriangleCharacter;
201 using WTF::Unicode::yenSignCharacter; 203 using WTF::Unicode::yenSignCharacter;
202 using WTF::Unicode::zeroWidthJoinerCharacter; 204 using WTF::Unicode::zeroWidthJoinerCharacter;
203 using WTF::Unicode::zeroWidthNonJoinerCharacter; 205 using WTF::Unicode::zeroWidthNonJoinerCharacter;
204 using WTF::Unicode::zeroWidthSpaceCharacter; 206 using WTF::Unicode::zeroWidthSpaceCharacter;
205 using WTF::Unicode::zeroWidthNoBreakSpaceCharacter; 207 using WTF::Unicode::zeroWidthNoBreakSpaceCharacter;
206 using WTF::Unicode::kMaxCodepoint; 208 using WTF::Unicode::kMaxCodepoint;
207 209
208 #endif // CharacterNames_h 210 #endif // CharacterNames_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/text/Character.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698