| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2008, 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Google Inc. All rights reserved. | 3 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 class CORE_EXPORT ScriptRegexp { | 40 class CORE_EXPORT ScriptRegexp { |
| 41 USING_FAST_MALLOC(ScriptRegexp); | 41 USING_FAST_MALLOC(ScriptRegexp); |
| 42 WTF_MAKE_NONCOPYABLE(ScriptRegexp); | 42 WTF_MAKE_NONCOPYABLE(ScriptRegexp); |
| 43 | 43 |
| 44 public: | 44 public: |
| 45 enum CharacterMode { | 45 enum CharacterMode { |
| 46 BMP, // NOLINT | 46 BMP, // NOLINT |
| 47 UTF16, // NOLINT | 47 UTF16, // NOLINT |
| 48 }; | 48 }; |
| 49 | 49 |
| 50 // For TextCaseSensitivity argument, TextCaseASCIIInsensitive and |
| 51 // TextCaseUnicodeInsensitive has identical behavior. They just add "i" flag. |
| 50 ScriptRegexp(const String&, | 52 ScriptRegexp(const String&, |
| 51 TextCaseSensitivity, | 53 TextCaseSensitivity, |
| 52 MultilineMode = MultilineDisabled, | 54 MultilineMode = MultilineDisabled, |
| 53 CharacterMode = BMP); | 55 CharacterMode = BMP); |
| 54 | 56 |
| 55 int match(const String&, int startFrom = 0, int* matchLength = 0) const; | 57 int match(const String&, int startFrom = 0, int* matchLength = 0) const; |
| 56 | 58 |
| 57 bool isValid() const { return !m_regex.isEmpty(); } | 59 bool isValid() const { return !m_regex.isEmpty(); } |
| 58 // exceptionMessage is available only if !isValid(). | 60 // exceptionMessage is available only if !isValid(). |
| 59 String exceptionMessage() const { return m_exceptionMessage; } | 61 String exceptionMessage() const { return m_exceptionMessage; } |
| 60 | 62 |
| 61 private: | 63 private: |
| 62 ScopedPersistent<v8::RegExp> m_regex; | 64 ScopedPersistent<v8::RegExp> m_regex; |
| 63 String m_exceptionMessage; | 65 String m_exceptionMessage; |
| 64 }; | 66 }; |
| 65 | 67 |
| 66 } // namespace blink | 68 } // namespace blink |
| 67 | 69 |
| 68 #endif // ScriptRegexp_h | 70 #endif // ScriptRegexp_h |
| OLD | NEW |