| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Computer, Inc. | 2 * Copyright (C) 2007 Apple Computer, Inc. |
| 3 * | 3 * |
| 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Lesser General Public | 7 * modify it under the terms of the GNU Lesser General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2.1 of the License, or (at your option) any later version. | 9 * version 2.1 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| 11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 * Lesser General Public License for more details. | 14 * Lesser General Public License for more details. |
| 15 * | 15 * |
| 16 * You should have received a copy of the GNU Lesser General Public | 16 * You should have received a copy of the GNU Lesser General Public |
| 17 * License along with this library; if not, write to the Free Software | 17 * License along with this library; if not, write to the Free Software |
| 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 US
A | 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 19 * | 19 * |
| 20 * Alternatively, the contents of this file may be used under the terms | 20 * Alternatively, the contents of this file may be used under the terms |
| 21 * of either the Mozilla Public License Version 1.1, found at | 21 * of either the Mozilla Public License Version 1.1, found at |
| 22 * http://www.mozilla.org/MPL/ (the "MPL") or the GNU General Public | 22 * http://www.mozilla.org/MPL/ (the "MPL") or the GNU General Public |
| 23 * License Version 2.0, found at http://www.fsf.org/copyleft/gpl.html | 23 * License Version 2.0, found at http://www.fsf.org/copyleft/gpl.html |
| 24 * (the "GPL"), in which case the provisions of the MPL or the GPL are | 24 * (the "GPL"), in which case the provisions of the MPL or the GPL are |
| 25 * applicable instead of those above. If you wish to allow use of your | 25 * applicable instead of those above. If you wish to allow use of your |
| 26 * version of this file only under the terms of one of those two | 26 * version of this file only under the terms of one of those two |
| 27 * licenses (the MPL or the GPL) and not to allow others to use your | 27 * licenses (the MPL or the GPL) and not to allow others to use your |
| 28 * version of this file under the LGPL, indicate your decision by | 28 * version of this file under the LGPL, indicate your decision by |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 const unsigned char cRangeBoxBlockGeometrics = 51; | 102 const unsigned char cRangeBoxBlockGeometrics = 51; |
| 103 const unsigned char cRangeMiscSymbols = 52; | 103 const unsigned char cRangeMiscSymbols = 52; |
| 104 const unsigned char cRangeDingbats = 53; | 104 const unsigned char cRangeDingbats = 53; |
| 105 const unsigned char cRangeBraillePattern = 54; | 105 const unsigned char cRangeBraillePattern = 54; |
| 106 const unsigned char cRangeYi = 55; | 106 const unsigned char cRangeYi = 55; |
| 107 const unsigned char cRangeCombiningDiacriticalMarks = 56; | 107 const unsigned char cRangeCombiningDiacriticalMarks = 56; |
| 108 const unsigned char cRangeSpecials = 57; | 108 const unsigned char cRangeSpecials = 57; |
| 109 | 109 |
| 110 const unsigned char cRangeTableBase = | 110 const unsigned char cRangeTableBase = |
| 111 128; // values over 127 are reserved for internal use only | 111 128; // values over 127 are reserved for internal use only |
| 112 const unsigned char cRangeTertiaryTable = | 112 const unsigned char cRangeTertiaryTable = 145; // leave room for 16 subtable |
| 113 145; // leave room for 16 subtable indices (cRangeTableBase + 1 .. cRangeTa
bleBase + 16) | 113 // indices (cRangeTableBase + 1 |
| 114 // .. cRangeTableBase + 16) |
| 114 | 115 |
| 115 PLATFORM_EXPORT unsigned findCharUnicodeRange(UChar32); | 116 PLATFORM_EXPORT unsigned findCharUnicodeRange(UChar32); |
| 116 | 117 |
| 117 } // namespace blink | 118 } // namespace blink |
| 118 | 119 |
| 119 #endif // UnicodeRange_h | 120 #endif // UnicodeRange_h |
| OLD | NEW |