| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 Yandex LLC. All rights reserved. | 2 * Copyright (c) 2013 Yandex LLC. 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "platform/text/UnicodeUtilities.h" | 32 #include "platform/text/UnicodeUtilities.h" |
| 33 | 33 |
| 34 #include "wtf/Vector.h" | 34 #include "wtf/Vector.h" |
| 35 #include "wtf/text/WTFString.h" | 35 #include "wtf/text/WTFString.h" |
| 36 #include "wtf/unicode/CharacterNames.h" | 36 #include "wtf/unicode/CharacterNames.h" |
| 37 #include <gtest/gtest.h> | 37 #include <gtest/gtest.h> |
| 38 #include <unicode/uchar.h> | 38 #include <unicode/uchar.h> |
| 39 | 39 |
| 40 using namespace WebCore; | 40 using namespace blink; |
| 41 | 41 |
| 42 namespace { | 42 namespace { |
| 43 | 43 |
| 44 static const UChar32 kMaxLatinCharCount = 256; | 44 static const UChar32 kMaxLatinCharCount = 256; |
| 45 | 45 |
| 46 static bool isTestFirstAndLastCharsInCategoryFailed = false; | 46 static bool isTestFirstAndLastCharsInCategoryFailed = false; |
| 47 UBool U_CALLCONV testFirstAndLastCharsInCategory(const void *context, UChar32 st
art, UChar32 limit, UCharCategory type) | 47 UBool U_CALLCONV testFirstAndLastCharsInCategory(const void *context, UChar32 st
art, UChar32 limit, UCharCategory type) |
| 48 { | 48 { |
| 49 if (start >= kMaxLatinCharCount | 49 if (start >= kMaxLatinCharCount |
| 50 && U_MASK(type) & (U_GC_S_MASK | U_GC_P_MASK | U_GC_Z_MASK | U_GC_CF_MAS
K) | 50 && U_MASK(type) & (U_GC_S_MASK | U_GC_P_MASK | U_GC_Z_MASK | U_GC_CF_MAS
K) |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 voicedKanaString1, WTF_ARRAY_LENGTH(voicedKanaString1), | 239 voicedKanaString1, WTF_ARRAY_LENGTH(voicedKanaString1), |
| 240 voicedKanaString2, WTF_ARRAY_LENGTH(voicedKanaString2))); | 240 voicedKanaString2, WTF_ARRAY_LENGTH(voicedKanaString2))); |
| 241 | 241 |
| 242 voicedKanaString2[0] = 0x3043; | 242 voicedKanaString2[0] = 0x3043; |
| 243 EXPECT_FALSE(checkKanaStringsEqual( | 243 EXPECT_FALSE(checkKanaStringsEqual( |
| 244 voicedKanaString1, WTF_ARRAY_LENGTH(voicedKanaString1), | 244 voicedKanaString1, WTF_ARRAY_LENGTH(voicedKanaString1), |
| 245 voicedKanaString2, WTF_ARRAY_LENGTH(voicedKanaString2))); | 245 voicedKanaString2, WTF_ARRAY_LENGTH(voicedKanaString2))); |
| 246 } | 246 } |
| 247 | 247 |
| 248 } // namespace | 248 } // namespace |
| OLD | NEW |