| OLD | NEW |
| 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 20 matching lines...) Expand all Loading... |
| 31 namespace WTF { | 31 namespace WTF { |
| 32 namespace Unicode { | 32 namespace Unicode { |
| 33 | 33 |
| 34 // Names here are taken from the Unicode standard. | 34 // Names here are taken from the Unicode standard. |
| 35 | 35 |
| 36 // Most of these are UChar constants, not UChar32, which makes them | 36 // Most of these are UChar constants, not UChar32, which makes them |
| 37 // more convenient for WebCore code that mostly uses UTF-16. | 37 // more convenient for WebCore code that mostly uses UTF-16. |
| 38 | 38 |
| 39 const UChar32 aegeanWordSeparatorLine = 0x10100; | 39 const UChar32 aegeanWordSeparatorLine = 0x10100; |
| 40 const UChar32 aegeanWordSeparatorDot = 0x10101; | 40 const UChar32 aegeanWordSeparatorDot = 0x10101; |
| 41 const UChar apostrophe = 0x0027; |
| 41 const UChar blackCircle = 0x25CF; | 42 const UChar blackCircle = 0x25CF; |
| 42 const UChar blackSquare = 0x25A0; | 43 const UChar blackSquare = 0x25A0; |
| 43 const UChar blackUpPointingTriangle = 0x25B2; | 44 const UChar blackUpPointingTriangle = 0x25B2; |
| 44 const UChar bullet = 0x2022; | 45 const UChar bullet = 0x2022; |
| 45 const UChar bullseye = 0x25CE; | 46 const UChar bullseye = 0x25CE; |
| 46 const UChar carriageReturn = 0x000D; | 47 const UChar carriageReturn = 0x000D; |
| 47 const UChar ethiopicPrefaceColon = 0x1366; | 48 const UChar ethiopicPrefaceColon = 0x1366; |
| 48 const UChar ethiopicWordspace = 0x1361; | 49 const UChar ethiopicWordspace = 0x1361; |
| 49 const UChar fisheye = 0x25C9; | 50 const UChar fisheye = 0x25C9; |
| 51 const UChar quotationMark = 0x0022; |
| 50 const UChar hebrewPunctuationGeresh = 0x05F3; | 52 const UChar hebrewPunctuationGeresh = 0x05F3; |
| 51 const UChar hebrewPunctuationGershayim = 0x05F4; | 53 const UChar hebrewPunctuationGershayim = 0x05F4; |
| 52 const UChar HiraganaLetterSmallA = 0x3041; | 54 const UChar HiraganaLetterSmallA = 0x3041; |
| 53 const UChar horizontalEllipsis = 0x2026; | 55 const UChar horizontalEllipsis = 0x2026; |
| 54 const UChar hyphen = 0x2010; | 56 const UChar hyphen = 0x2010; |
| 55 const UChar hyphenMinus = 0x002D; | 57 const UChar hyphenMinus = 0x002D; |
| 56 const UChar ideographicComma = 0x3001; | 58 const UChar ideographicComma = 0x3001; |
| 57 const UChar ideographicFullStop = 0x3002; | 59 const UChar ideographicFullStop = 0x3002; |
| 58 const UChar ideographicSpace = 0x3000; | 60 const UChar ideographicSpace = 0x3000; |
| 59 const UChar leftDoubleQuotationMark = 0x201C; | 61 const UChar leftDoubleQuotationMark = 0x201C; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 using WTF::Unicode::whiteCircle; | 140 using WTF::Unicode::whiteCircle; |
| 139 using WTF::Unicode::whiteSesameDot; | 141 using WTF::Unicode::whiteSesameDot; |
| 140 using WTF::Unicode::whiteUpPointingTriangle; | 142 using WTF::Unicode::whiteUpPointingTriangle; |
| 141 using WTF::Unicode::yenSign; | 143 using WTF::Unicode::yenSign; |
| 142 using WTF::Unicode::zeroWidthJoiner; | 144 using WTF::Unicode::zeroWidthJoiner; |
| 143 using WTF::Unicode::zeroWidthNonJoiner; | 145 using WTF::Unicode::zeroWidthNonJoiner; |
| 144 using WTF::Unicode::zeroWidthSpace; | 146 using WTF::Unicode::zeroWidthSpace; |
| 145 using WTF::Unicode::zeroWidthNoBreakSpace; | 147 using WTF::Unicode::zeroWidthNoBreakSpace; |
| 146 | 148 |
| 147 #endif // CharacterNames_h | 149 #endif // CharacterNames_h |
| OLD | NEW |