OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CSSNamespace
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/css/
CSSNamespace.h
29
struct
CSSNamespace
{
30
WTF_MAKE_NONCOPYABLE(
CSSNamespace
); WTF_MAKE_FAST_ALLOCATED;
34
OwnPtr<
CSSNamespace
> parent;
36
CSSNamespace
(const AtomicString& prefix, const AtomicString& uri, PassOwnPtr<
CSSNamespace
> parent)
43
CSSNamespace
* namespaceForPrefix(const AtomicString& prefix)
45
for (
CSSNamespace
* candidate = this; candidate; candidate = candidate->parent.get()) {
CSSStyleSheet.h
29
struct
CSSNamespace
;
115
OwnPtr<
CSSNamespace
> m_namespaces;
CSSStyleSheet.cpp
25
#include "
CSSNamespace
.h"
174
m_namespaces = adoptPtr(new
CSSNamespace
(prefix, uri, m_namespaces.release()));
189
if (
CSSNamespace
* namespaceForPrefix = m_namespaces->namespaceForPrefix(prefix))
Completed in 3419 milliseconds