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

  /external/webkit/WebCore/rendering/style/
BindingURI.cpp 23 #include "BindingURI.h"
29 BindingURI::BindingURI(StringImpl* uri)
37 BindingURI::~BindingURI()
44 BindingURI* BindingURI::copy()
46 BindingURI* newBinding = new BindingURI(m_uri);
48 BindingURI* nextCopy = next()->copy()
    [all...]
BindingURI.h 35 struct BindingURI {
36 BindingURI(StringImpl*);
37 ~BindingURI();
39 BindingURI* copy();
41 bool operator==(const BindingURI& o) const;
42 bool operator!=(const BindingURI& o) const
47 BindingURI* next() { return m_next; }
48 void setNext(BindingURI* n) { m_next = n; }
52 BindingURI* m_next;

Completed in 11 milliseconds