| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2005, 2006, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2005, 2006, 2009 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 #include "wtf/MainThread.h" | 32 #include "wtf/MainThread.h" |
| 33 #include "wtf/StaticConstructors.h" | 33 #include "wtf/StaticConstructors.h" |
| 34 | 34 |
| 35 namespace blink { | 35 namespace blink { |
| 36 | 36 |
| 37 struct SameSizeAsQualifiedNameImpl : public RefCounted<SameSizeAsQualifiedNameIm
pl> { | 37 struct SameSizeAsQualifiedNameImpl : public RefCounted<SameSizeAsQualifiedNameIm
pl> { |
| 38 unsigned bitfield; | 38 unsigned bitfield; |
| 39 void* pointers[4]; | 39 void* pointers[4]; |
| 40 }; | 40 }; |
| 41 | 41 |
| 42 COMPILE_ASSERT(sizeof(QualifiedName::QualifiedNameImpl) == sizeof(SameSizeAsQual
ifiedNameImpl), qualified_name_impl_should_stay_small); | 42 static_assert(sizeof(QualifiedName::QualifiedNameImpl) == sizeof(SameSizeAsQuali
fiedNameImpl), "QualifiedNameImpl should stay small"); |
| 43 | 43 |
| 44 static const int staticQualifiedNamesCount = HTMLNames::HTMLTagsCount + HTMLName
s::HTMLAttrsCount | 44 static const int staticQualifiedNamesCount = HTMLNames::HTMLTagsCount + HTMLName
s::HTMLAttrsCount |
| 45 + MathMLNames::MathMLTagsCount + MathMLNames::MathMLAttrsCount | 45 + MathMLNames::MathMLTagsCount + MathMLNames::MathMLAttrsCount |
| 46 + SVGNames::SVGTagsCount + SVGNames::SVGAttrsCount | 46 + SVGNames::SVGTagsCount + SVGNames::SVGAttrsCount |
| 47 + XLinkNames::XLinkAttrsCount | 47 + XLinkNames::XLinkAttrsCount |
| 48 + XMLNSNames::XMLNSAttrsCount | 48 + XMLNSNames::XMLNSAttrsCount |
| 49 + XMLNames::XMLAttrsCount; | 49 + XMLNames::XMLAttrsCount; |
| 50 | 50 |
| 51 struct QualifiedNameHashTraits : public HashTraits<QualifiedName::QualifiedNameI
mpl*> { | 51 struct QualifiedNameHashTraits : public HashTraits<QualifiedName::QualifiedNameI
mpl*> { |
| 52 static const unsigned minimumTableSize = WTF::HashTableCapacityForSize<stati
cQualifiedNamesCount>::value; | 52 static const unsigned minimumTableSize = WTF::HashTableCapacityForSize<stati
cQualifiedNamesCount>::value; |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 { | 143 { |
| 144 new (targetAddress) QualifiedName(nullAtom, AtomicString(name), nameNamespac
e, true); | 144 new (targetAddress) QualifiedName(nullAtom, AtomicString(name), nameNamespac
e, true); |
| 145 } | 145 } |
| 146 | 146 |
| 147 void QualifiedName::createStatic(void* targetAddress, StringImpl* name) | 147 void QualifiedName::createStatic(void* targetAddress, StringImpl* name) |
| 148 { | 148 { |
| 149 new (targetAddress) QualifiedName(nullAtom, AtomicString(name), nullAtom, tr
ue); | 149 new (targetAddress) QualifiedName(nullAtom, AtomicString(name), nullAtom, tr
ue); |
| 150 } | 150 } |
| 151 | 151 |
| 152 } | 152 } |
| OLD | NEW |