| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. | 3 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 CSSParserValue* previous() | 187 CSSParserValue* previous() |
| 188 { | 188 { |
| 189 if (!m_current) | 189 if (!m_current) |
| 190 return 0; | 190 return 0; |
| 191 --m_current; | 191 --m_current; |
| 192 return current(); | 192 return current(); |
| 193 } | 193 } |
| 194 | 194 |
| 195 CSSParserValue* valueAt(unsigned i) { return i < m_values.size() ? &m_values
[i] : 0; } | 195 CSSParserValue* valueAt(unsigned i) { return i < m_values.size() ? &m_values
[i] : 0; } |
| 196 | 196 |
| 197 void clear() { m_values.clear(); } | 197 void clear() { m_values.clear(); m_current = 0;} |
| 198 | 198 |
| 199 private: | 199 private: |
| 200 unsigned m_current; | 200 unsigned m_current; |
| 201 Vector<CSSParserValue, 4> m_values; | 201 Vector<CSSParserValue, 4> m_values; |
| 202 }; | 202 }; |
| 203 | 203 |
| 204 struct CSSParserFunction { | 204 struct CSSParserFunction { |
| 205 WTF_MAKE_FAST_ALLOCATED; | 205 WTF_MAKE_FAST_ALLOCATED; |
| 206 public: | 206 public: |
| 207 CSSParserString name; | 207 CSSParserString name; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 inline void CSSParserValue::setFromValueList(PassOwnPtr<CSSParserValueList> valu
eList) | 280 inline void CSSParserValue::setFromValueList(PassOwnPtr<CSSParserValueList> valu
eList) |
| 281 { | 281 { |
| 282 id = CSSValueInvalid; | 282 id = CSSValueInvalid; |
| 283 this->valueList = valueList.leakPtr(); | 283 this->valueList = valueList.leakPtr(); |
| 284 unit = ValueList; | 284 unit = ValueList; |
| 285 } | 285 } |
| 286 | 286 |
| 287 } | 287 } |
| 288 | 288 |
| 289 #endif | 289 #endif |
| OLD | NEW |