/external/webkit/Source/WebCore/html/parser/ |
D | HTMLInputStream.h | 54 : m_last(&m_first) in HTMLInputStream() 65 m_first.append(string); in insertAtCurrentInsertionPoint() 70 return &m_first != m_last; in hasInsertionPoint() 87 SegmentedString& current() { return m_first; } in current() 88 const SegmentedString& current() const { return m_first; } in current() 92 next = m_first; in splitInto() 93 m_first = SegmentedString(); in splitInto() 94 if (m_last == &m_first) { in splitInto() 104 m_first.append(next); in mergeFrom() 109 m_last = &m_first; in mergeFrom() [all …]
|
D | HTMLEntitySearch.cpp | 46 , m_first(HTMLEntityTable::firstEntry()) in HTMLEntitySearch() 63 const HTMLEntityTableEntry* left = m_first; in findFirst() 88 const HTMLEntityTableEntry* left = m_first; in findLast() 115 m_first = HTMLEntityTable::firstEntryStartingWith(nextCharacter); in advance() 117 if (!m_first || !m_last) in advance() 120 m_first = findFirst(nextCharacter); in advance() 122 if (m_first == m_last && compare(m_first, nextCharacter) != Prefix) in advance() 126 if (m_first->length != m_currentLength) { in advance() 130 m_mostRecentMatch = m_first; in advance()
|
D | HTMLEntitySearch.h | 41 bool isEntityPrefix() const { return !!m_first; } in isEntityPrefix() 61 m_first = 0; in fail() 69 const HTMLEntityTableEntry* m_first; variable
|
/external/webkit/Source/WebCore/css/ |
D | Pair.h | 46 CSSPrimitiveValue* first() const { return m_first.get(); } in first() 49 void setFirst(PassRefPtr<CSSPrimitiveValue> first) { m_first = first; } in setFirst() 53 Pair() : m_first(0), m_second(0) { } in Pair() 55 : m_first(first), m_second(second) { } in Pair() 57 RefPtr<CSSPrimitiveValue> m_first; variable
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
D | EditCommandQt.cpp | 29 , m_first(true) in EditCommandQt() 35 , m_first(true) in EditCommandQt() 47 if (m_first) { in redo() 48 m_first = false; in redo()
|
D | EditCommandQt.h | 45 bool m_first; variable
|
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
D | LoopBlinnPathProcessor.cpp | 365 m_first = &m_sentinel; in Contour() 366 m_first->setNext(m_first); in Contour() 367 m_first->setPrev(m_first); in Contour() 375 if (m_first == &m_sentinel) { in add() 378 segment->setNext(m_first); in add() 379 segment->setPrev(m_first); in add() 380 m_first->setNext(segment); in add() 381 m_first->setPrev(segment); in add() 382 m_first = segment; in add() 385 ASSERT(m_first->prev() == &m_sentinel); in add() [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | EncodingInfo.java | 199 m_first, in isInEncoding() 246 m_first, in isInEncoding() 291 final private int m_first; field in EncodingInfo.EncodingImpl 346 m_first = first; in EncodingImpl()
|
/external/emma/core/java12/com/vladium/emma/instr/ |
D | InstrVisitor.java | 983 block.m_first = leader; // m_first set in visit() 1141 …jumpAdjOffsets [l + 1] = _blocks [l].m_first + _blocks [l].m_length; // implies the insertion goes… in visit() 1149 jumpAdjMap [l + 1] = emitctx.m_out.size () - _blocks [l + 1].m_first; in visit() 1183 final int jump = _blocks [patchData [3]].m_first - patchData [2]; in visit() 1417 int m_first; // inclusive offset of the leader instruction [first instr in the block] field in InstrVisitor.Block 1439 final int first = m_first; in emit() 1441 m_first = out.size (); // update position to be within new code array in emit() 1506 … final int jumpOffset = ((Block) ctx.m_blocks.m_blocks.get (targetBlockID)).m_first - ip; in emitJumpOffset2() 1530 … final int jumpOffset = ((Block) ctx.m_blocks.m_blocks.get (targetBlockID)).m_first - ip; in emitJumpOffset4()
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderLayer.h | 169 RenderLayer* firstChild() const { return m_first; } in firstChild() 493 void setFirstChild(RenderLayer* first) { m_first = first; } in setFirstChild() 654 RenderLayer* m_first; variable
|
D | RenderLayer.cpp | 140 , m_first(0) in RenderLayer() 1071 if (m_first == oldChild) in removeChild() 1072 m_first = oldChild->nextSibling(); in removeChild() 1121 RenderLayer* current = m_first; in removeOnlyThisLayer()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2005-12-19 | 9964 moved to new function, and only call function when m_first 10358 * khtml/rendering/render_container.cpp: Assert that m_first is anonymous
|
D | ChangeLog-2006-05-10 | 29593 (WebCore::ContainerNodeImpl::removeChildren): Updated for m_first/lastChild.
|
D | ChangeLog-2006-12-31 | 43745 REGRESSION: Reproducible crash: RenderMenuList.cpp:58: failed assertion `!m_first'
|
D | ChangeLog-2007-10-14 | 68166 * rendering/RenderContainer.h: Renamed m_first and m_last to m_firstChild
|