HomeSort by relevance Sort by last modified time
    Searched defs:CSSValueList (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSValueList.cpp 22 #include "core/css/CSSValueList.h"
29 CSSValueList::CSSValueList(ClassType classType, ValueListSeparator listSeparator)
35 CSSValueList::CSSValueList(ValueListSeparator listSeparator)
41 bool CSSValueList::removeAll(CSSValue* val)
55 bool CSSValueList::hasValue(CSSValue* val) const
65 PassRefPtrWillBeRawPtr<CSSValueList> CSSValueList::copy()
67 RefPtrWillBeRawPtr<CSSValueList> newList = nullptr
    [all...]
CSSValueList.h 30 class CSSValueList : public CSSValue {
32 static PassRefPtrWillBeRawPtr<CSSValueList> createCommaSeparated()
34 return adoptRefWillBeNoop(new CSSValueList(CommaSeparator));
36 static PassRefPtrWillBeRawPtr<CSSValueList> createSpaceSeparated()
38 return adoptRefWillBeNoop(new CSSValueList(SpaceSeparator));
40 static PassRefPtrWillBeRawPtr<CSSValueList> createSlashSeparated()
42 return adoptRefWillBeNoop(new CSSValueList(SlashSeparator));
54 PassRefPtrWillBeRawPtr<CSSValueList> copy();
57 bool equals(const CSSValueList&) const;
62 PassRefPtrWillBeRawPtr<CSSValueList> cloneForCSSOM() const
    [all...]

Completed in 49 milliseconds