| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 const UChar whiteCircleCharacter = 0x25CB; | 102 const UChar whiteCircleCharacter = 0x25CB; |
| 103 const UChar whiteSesameDotCharacter = 0xFE46; | 103 const UChar whiteSesameDotCharacter = 0xFE46; |
| 104 const UChar whiteUpPointingTriangleCharacter = 0x25B3; | 104 const UChar whiteUpPointingTriangleCharacter = 0x25B3; |
| 105 const UChar yenSignCharacter = 0x00A5; | 105 const UChar yenSignCharacter = 0x00A5; |
| 106 const UChar zeroWidthJoinerCharacter = 0x200D; | 106 const UChar zeroWidthJoinerCharacter = 0x200D; |
| 107 const UChar zeroWidthNonJoinerCharacter = 0x200C; | 107 const UChar zeroWidthNonJoinerCharacter = 0x200C; |
| 108 const UChar zeroWidthSpaceCharacter = 0x200B; | 108 const UChar zeroWidthSpaceCharacter = 0x200B; |
| 109 const UChar zeroWidthNoBreakSpaceCharacter = 0xFEFF; | 109 const UChar zeroWidthNoBreakSpaceCharacter = 0xFEFF; |
| 110 const UChar32 kMaxCodepoint = 0x10ffff; | 110 const UChar32 kMaxCodepoint = 0x10ffff; |
| 111 | 111 |
| 112 } // namespace Unicode | 112 } // namespace Unicode |
| 113 } // namespace WTF | 113 } // namespace WTF |
| 114 | 114 |
| 115 using WTF::Unicode::aegeanWordSeparatorLineCharacter; | 115 using WTF::Unicode::aegeanWordSeparatorLineCharacter; |
| 116 using WTF::Unicode::aegeanWordSeparatorDotCharacter; | 116 using WTF::Unicode::aegeanWordSeparatorDotCharacter; |
| 117 using WTF::Unicode::activateArabicFormShapingCharacter; | 117 using WTF::Unicode::activateArabicFormShapingCharacter; |
| 118 using WTF::Unicode::activateSymmetricSwappingCharacter; | 118 using WTF::Unicode::activateSymmetricSwappingCharacter; |
| 119 using WTF::Unicode::arabicLetterMarkCharacter; | 119 using WTF::Unicode::arabicLetterMarkCharacter; |
| 120 using WTF::Unicode::blackCircleCharacter; | 120 using WTF::Unicode::blackCircleCharacter; |
| 121 using WTF::Unicode::blackSquareCharacter; | 121 using WTF::Unicode::blackSquareCharacter; |
| 122 using WTF::Unicode::blackUpPointingTriangleCharacter; | 122 using WTF::Unicode::blackUpPointingTriangleCharacter; |
| 123 using WTF::Unicode::bulletCharacter; | 123 using WTF::Unicode::bulletCharacter; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 using WTF::Unicode::whiteCircleCharacter; | 178 using WTF::Unicode::whiteCircleCharacter; |
| 179 using WTF::Unicode::whiteSesameDotCharacter; | 179 using WTF::Unicode::whiteSesameDotCharacter; |
| 180 using WTF::Unicode::whiteUpPointingTriangleCharacter; | 180 using WTF::Unicode::whiteUpPointingTriangleCharacter; |
| 181 using WTF::Unicode::yenSignCharacter; | 181 using WTF::Unicode::yenSignCharacter; |
| 182 using WTF::Unicode::zeroWidthJoinerCharacter; | 182 using WTF::Unicode::zeroWidthJoinerCharacter; |
| 183 using WTF::Unicode::zeroWidthNonJoinerCharacter; | 183 using WTF::Unicode::zeroWidthNonJoinerCharacter; |
| 184 using WTF::Unicode::zeroWidthSpaceCharacter; | 184 using WTF::Unicode::zeroWidthSpaceCharacter; |
| 185 using WTF::Unicode::zeroWidthNoBreakSpaceCharacter; | 185 using WTF::Unicode::zeroWidthNoBreakSpaceCharacter; |
| 186 using WTF::Unicode::kMaxCodepoint; | 186 using WTF::Unicode::kMaxCodepoint; |
| 187 | 187 |
| 188 #endif // CharacterNames_h | 188 #endif // CharacterNames_h |
| OLD | NEW |