| 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 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
| 5 * Copyright (C) 2009 - 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserve
d. | 5 * Copyright (C) 2009 - 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserve
d. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 | 312 |
| 313 void startDeclarationsForMarginBox(); | 313 void startDeclarationsForMarginBox(); |
| 314 void endDeclarationsForMarginBox(); | 314 void endDeclarationsForMarginBox(); |
| 315 | 315 |
| 316 MediaQueryExp* createFloatingMediaQueryExp(const AtomicString&, CSSParserVal
ueList*); | 316 MediaQueryExp* createFloatingMediaQueryExp(const AtomicString&, CSSParserVal
ueList*); |
| 317 PassOwnPtr<MediaQueryExp> sinkFloatingMediaQueryExp(MediaQueryExp*); | 317 PassOwnPtr<MediaQueryExp> sinkFloatingMediaQueryExp(MediaQueryExp*); |
| 318 Vector<OwnPtr<MediaQueryExp> >* createFloatingMediaQueryExpList(); | 318 Vector<OwnPtr<MediaQueryExp> >* createFloatingMediaQueryExpList(); |
| 319 PassOwnPtr<Vector<OwnPtr<MediaQueryExp> > > sinkFloatingMediaQueryExpList(Ve
ctor<OwnPtr<MediaQueryExp> >*); | 319 PassOwnPtr<Vector<OwnPtr<MediaQueryExp> > > sinkFloatingMediaQueryExpList(Ve
ctor<OwnPtr<MediaQueryExp> >*); |
| 320 MediaQuery* createFloatingMediaQuery(MediaQuery::Restrictor, const String&,
PassOwnPtr<Vector<OwnPtr<MediaQueryExp> > >); | 320 MediaQuery* createFloatingMediaQuery(MediaQuery::Restrictor, const String&,
PassOwnPtr<Vector<OwnPtr<MediaQueryExp> > >); |
| 321 MediaQuery* createFloatingMediaQuery(PassOwnPtr<Vector<OwnPtr<MediaQueryExp>
> >); | 321 MediaQuery* createFloatingMediaQuery(PassOwnPtr<Vector<OwnPtr<MediaQueryExp>
> >); |
| 322 MediaQuery* createFloatingNotAllQuery(); |
| 322 PassOwnPtr<MediaQuery> sinkFloatingMediaQuery(MediaQuery*); | 323 PassOwnPtr<MediaQuery> sinkFloatingMediaQuery(MediaQuery*); |
| 323 | 324 |
| 324 Vector<RefPtr<StyleKeyframe> >* createFloatingKeyframeVector(); | 325 Vector<RefPtr<StyleKeyframe> >* createFloatingKeyframeVector(); |
| 325 PassOwnPtr<Vector<RefPtr<StyleKeyframe> > > sinkFloatingKeyframeVector(Vecto
r<RefPtr<StyleKeyframe> >*); | 326 PassOwnPtr<Vector<RefPtr<StyleKeyframe> > > sinkFloatingKeyframeVector(Vecto
r<RefPtr<StyleKeyframe> >*); |
| 326 | 327 |
| 327 void addNamespace(const AtomicString& prefix, const AtomicString& uri); | 328 void addNamespace(const AtomicString& prefix, const AtomicString& uri); |
| 328 QualifiedName determineNameInNamespace(const AtomicString& prefix, const Ato
micString& localName); | 329 QualifiedName determineNameInNamespace(const AtomicString& prefix, const Ato
micString& localName); |
| 329 | 330 |
| 330 CSSParserSelector* rewriteSpecifiersWithElementName(const AtomicString& name
spacePrefix, const AtomicString& elementName, CSSParserSelector*, bool isNamespa
cePlaceholder = false); | 331 CSSParserSelector* rewriteSpecifiersWithElementName(const AtomicString& name
spacePrefix, const AtomicString& elementName, CSSParserSelector*, bool isNamespa
cePlaceholder = false); |
| 331 CSSParserSelector* rewriteSpecifiersWithNamespaceIfNeeded(CSSParserSelector*
); | 332 CSSParserSelector* rewriteSpecifiersWithNamespaceIfNeeded(CSSParserSelector*
); |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 736 } | 737 } |
| 737 | 738 |
| 738 inline int cssyylex(void* yylval, CSSParser* parser) | 739 inline int cssyylex(void* yylval, CSSParser* parser) |
| 739 { | 740 { |
| 740 return parser->lex(yylval); | 741 return parser->lex(yylval); |
| 741 } | 742 } |
| 742 | 743 |
| 743 } // namespace WebCore | 744 } // namespace WebCore |
| 744 | 745 |
| 745 #endif // CSSParser_h | 746 #endif // CSSParser_h |
| OLD | NEW |