| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009, 2010, 2012, 2013 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009, 2010, 2012, 2013 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2012 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 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 inline bool operator==(const StringBuilder& a, const String& b) { return equal(a
, b); } | 358 inline bool operator==(const StringBuilder& a, const String& b) { return equal(a
, b); } |
| 359 inline bool operator!=(const StringBuilder& a, const String& b) { return !equal(
a, b); } | 359 inline bool operator!=(const StringBuilder& a, const String& b) { return !equal(
a, b); } |
| 360 inline bool operator==(const String& a, const StringBuilder& b) { return equal(b
, a); } | 360 inline bool operator==(const String& a, const StringBuilder& b) { return equal(b
, a); } |
| 361 inline bool operator!=(const String& a, const StringBuilder& b) { return !equal(
b, a); } | 361 inline bool operator!=(const String& a, const StringBuilder& b) { return !equal(
b, a); } |
| 362 | 362 |
| 363 } // namespace WTF | 363 } // namespace WTF |
| 364 | 364 |
| 365 using WTF::StringBuilder; | 365 using WTF::StringBuilder; |
| 366 | 366 |
| 367 #endif // StringBuilder_h | 367 #endif // StringBuilder_h |
| OLD | NEW |