Searched refs:m_first (Results 1 - 11 of 11) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLInputStream.h55 : m_last(&m_first)
66 m_first.append(string);
71 return &m_first != m_last;
90 SegmentedString& current() { return m_first; }
91 const SegmentedString& current() const { return m_first; }
95 next = m_first;
96 m_first = SegmentedString();
97 if (m_last == &m_first) {
99 // but now we have two. That means m_first is no longer also
107 m_first
122 SegmentedString m_first; member in class:WebCore::HTMLInputStream
[all...]
H A DHTMLEntitySearch.h41 bool isEntityPrefix() const { return !!m_first; }
59 m_first = 0;
66 const HTMLEntityTableEntry* m_first; member in class:WebCore::HTMLEntitySearch
H A DHTMLEntitySearch.cpp41 , m_first(HTMLEntityTable::firstEntry())
58 const HTMLEntityTableEntry* left = m_first;
83 const HTMLEntityTableEntry* left = m_first;
110 m_first = HTMLEntityTable::firstEntryStartingWith(nextCharacter);
112 if (!m_first || !m_last)
115 m_first = findFirst(nextCharacter);
117 if (m_first == m_last && compare(m_first, nextCharacter) != Prefix)
121 if (m_first->length != m_currentLength) {
124 m_mostRecentMatch = m_first;
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DListableHandler.h62 : m_first(0)
75 return !!m_first;
80 return m_first;
85 T* current = m_first;
88 m_first = next;
103 handler->m_nextAndFlag = reinterpret_cast<uintptr_t>(m_first) | 1;
104 m_first = handler;
108 T* m_first; member in class:JSC::ListableHandler::List
H A DConservativeRoots.cpp126 : m_first(first)
133 m_first.mark(address);
138 T& m_first; member in class:JSC::CompositeMarkHook
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DPair.h47 CSSPrimitiveValue* first() const { return m_first.get(); }
50 void setFirst(PassRefPtr<CSSPrimitiveValue> first) { m_first = first; }
59 bool equals(const Pair& other) const { return compareCSSValuePtr(m_first, other.m_first) && compareCSSValuePtr(m_second, other.m_second); }
72 Pair() : m_first(0), m_second(0) { }
74 : m_first(first), m_second(second) { }
83 RefPtr<CSSPrimitiveValue> m_first; member in class:WebCore::Pair
/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DUndoStepQt.h41 bool m_first; member in class:UndoStepQt
H A DUndoStepQt.cpp116 , m_first(true)
128 if (m_first) {
129 m_first = false;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/blackberry/
H A DLayerUtilities.h52 : m_first(first)
62 return determinant(m_second - m_first, p - m_first) > -epsilon;
67 const FloatPoint& p3 = m_first;
78 FloatPoint m_first; member in class:WebCore::LayerClipEdge
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderLayer.cpp198 , m_first(0)
1792 if (m_first == oldChild)
1793 m_first = oldChild->nextSibling();
1847 RenderLayer* current = m_first;
H A DRenderLayer.h331 RenderLayer* firstChild() const { return m_first; }
914 void setFirstChild(RenderLayer* first) { m_first = first; }
1219 RenderLayer* m_first; member in class:WebCore::RenderLayer

Completed in 235 milliseconds