Searched refs:m_start (Results 1 - 25 of 40) sorted by relevance

12

/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DPlatformTimeRanges.h85 : m_start(start)
90 MediaTime m_start; member in struct:WebCore::PlatformTimeRanges::Range
95 return m_start <= point && point < m_end;
100 return isPointInRange(range.m_start) || isPointInRange(range.m_end) || range.isPointInRange(m_start);
105 return range.m_start == m_end || range.m_end == m_start;
112 ret.m_start = std::min(m_start, range.m_start);
[all...]
H A DPathTraversalState.h57 FloatPoint m_start; member in class:WebCore::PathTraversalState
H A DPlatformTimeRanges.cpp68 add(other.m_ranges[i].m_start, other.m_ranges[i].m_end);
82 MediaTime start = m_ranges.first().m_start;
87 inverted.add(m_ranges[index].m_end, m_ranges[index + 1].m_start);
113 unioned.add(range.m_start, range.m_end);
133 return m_ranges[index].m_start;
158 return m_ranges[index].m_end - m_ranges[index].m_start;
H A DPathTraversalState.cpp162 float distance = distanceLine(m_current, m_start);
163 m_current = m_control1 = m_control2 = m_start;
169 m_current = m_start = m_control1 = m_control2 = point;
/macosx-10.10/WebCore-7600.1.25/editing/
H A DVisibleSelection.cpp130 Position start = m_start.parentAnchoredEquivalent();
144 m_start.anchorNode()->document().updateLayout();
155 s = m_start.upstream().parentAnchoredEquivalent();
170 s = m_start.downstream();
275 m_start = m_base;
278 m_start = m_extent;
292 VisiblePosition start = VisiblePosition(m_start, m_affinity);
297 m_start = startOfWord(start, side).deepEquivalent();
305 if (isEndOfParagraph(originalEnd) && !isEmptyTableCell(m_start.deprecatedNode())) {
327 if (m_start
[all...]
H A DVisibleSelection.h67 Position start() const { return m_start; }
70 VisiblePosition visibleStart() const { return VisiblePosition(m_start, isRange() ? DOWNSTREAM : affinity()); }
135 Position m_start; // Leftmost position when expanded to respect granularity member in class:WebCore::VisibleSelection
/macosx-10.10/WTF-7600.1.24/wtf/
H A DMetaAllocatorHandle.h50 return m_start;
60 return reinterpret_cast<uintptr_t>(m_start);
103 return m_start;
110 void* m_start; member in class:WTF::MetaAllocatorHandle
H A DDeque.h61 size_t size() const { return m_start <= m_end ? m_end - m_start : m_end + m_buffer.capacity() - m_start; }
62 bool isEmpty() const { return m_start == m_end; }
64 iterator begin() { return iterator(this, m_start); }
66 const_iterator begin() const { return const_iterator(this, m_start); }
73 T& first() { ASSERT(m_start != m_end); return m_buffer.buffer()[m_start]; }
74 const T& first() const { ASSERT(m_start != m_end); return m_buffer.buffer()[m_start]; }
108 size_t m_start; member in class:WTF::Deque
[all...]
H A DMetaAllocator.cpp76 , m_start(start)
104 uintptr_t freeStart = reinterpret_cast<uintptr_t>(m_start) + newSizeInBytes;
220 result = node->m_start;
222 m_freeSpaceStartAddressMap.remove(node->m_start);
223 m_freeSpaceEndAddressMap.remove(reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(node->m_start) + node->m_sizeInBytes));
233 uintptr_t firstPage = reinterpret_cast<uintptr_t>(node->m_start) >> m_logPageSize;
234 uintptr_t lastPage = (reinterpret_cast<uintptr_t>(node->m_start) + node->m_sizeInBytes - 1) >> m_logPageSize;
236 uintptr_t lastPageForLeftAllocation = (reinterpret_cast<uintptr_t>(node->m_start) + sizeInBytes - 1) >> m_logPageSize;
237 uintptr_t firstPageForRightAllocation = (reinterpret_cast<uintptr_t>(node->m_start) + node->m_sizeInBytes - sizeInBytes) >> m_logPageSize;
241 result = node->m_start;
[all...]
H A DBumpPointerAllocator.h83 if ((position >= m_start) && (position <= static_cast<void*>(this))) {
101 , m_start(allocation.base())
133 m_current = m_start;
175 ASSERT((position < pool->m_start) || (position > static_cast<void*>(pool)));
179 pool->m_current = pool->m_start;
186 if ((position >= pool->m_start) && (position <= static_cast<void*>(pool))) {
195 void* m_start; member in class:WTF::BumpPointerPool
H A DMetaAllocator.h129 : m_start(start)
139 void* m_start; member in class:WTF::MetaAllocator::FreeSpaceNode
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLOListElement.h35 int start() const { return m_hasExplicitStart ? m_start : (m_isReversed ? itemCount() : 1); }
60 int m_start; member in class:WebCore::final
H A DHTMLOListElement.cpp38 , m_start(0xBADBEEF)
88 m_start = canParse ? parsedStart : 0xBADBEEF;
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderTextFragment.cpp34 , m_start(startOffset)
42 , m_start(startOffset)
50 , m_start(0)
87 m_start = 0;
H A DRenderMarquee.cpp63 , m_start(0), m_end(0), m_speed(0), m_reset(false)
161 m_layer->scrollToOffset(IntSize(m_start, 0));
163 m_layer->scrollToOffset(IntSize(0, m_start));
190 m_start = computePosition(direction(), behavior == MALTERNATE);
251 m_layer->scrollToXOffset(m_start);
253 m_layer->scrollToYOffset(m_start);
260 int range = m_end - m_start;
269 endPoint = m_start;
H A DRenderTextFragment.h46 unsigned start() const { return m_start; }
67 unsigned m_start; member in class:WebCore::final
H A DInlineTextBox.h45 , m_start(0)
63 unsigned start() const { return m_start; }
64 unsigned end() const { return m_len ? m_start + m_len - 1 : m_start; }
67 void setStart(unsigned start) { m_start = start; }
70 void offsetRun(int d) { ASSERT(!isDirty()); m_start += d; }
184 int m_start; member in class:WebCore::InlineTextBox
H A DRenderMarquee.h88 int m_start; member in class:WebCore::RenderMarquee
H A DInlineTextBox.cpp146 m_start = 0;
201 int sPos = std::max(startPos - m_start, 0);
202 int ePos = std::min(endPos - m_start, static_cast<int>(m_len));
215 bool start = (state != RenderObject::SelectionEnd && startPos >= m_start && startPos < m_start + m_len);
216 bool end = (state != RenderObject::SelectionStart && endPos > m_start && endPos <= lastSelectable);
223 else if ((state == RenderObject::SelectionEnd || startPos < m_start) &&
261 int sPos = std::max(startPos - m_start, 0);
262 int ePos = std::min(endPos - m_start, (int)m_len);
371 float widthOfVisibleText = renderer().width(m_start, offse
[all...]
H A DRenderTableSection.h46 : m_start(start)
51 unsigned start() const { return m_start; }
54 unsigned& start() { return m_start; }
58 unsigned m_start; member in class:WebCore::CellSpan
H A DRenderBlockLineLayout.cpp317 text->setStart(r->m_start);
318 text->setLen(r->m_stop - r->m_start);
485 int lastEndOffset = run->m_start;
518 measuredWidth = renderer->width(run->m_start, run->m_stop - run->m_start, xPos, lineInfo.isFirstLine(), &fallbackFonts, &glyphOverflow);
681 opportunitiesInRun = Font::expansionOpportunityCount(rt.characters8() + r->m_start, r->m_stop - r->m_start, r->box()->direction(), isAfterExpansion);
683 opportunitiesInRun = Font::expansionOpportunityCount(rt.characters16() + r->m_start, r->m_stop - r->m_start, r->box()->direction(), isAfterExpansion);
689 if (!r->m_start
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/
H A DRange.cpp65 , m_start(&ownerDocument)
82 , m_start(&ownerDocument)
136 m_start.setToStartOfNode(&document);
143 if (!m_start.container()) {
148 return m_start.container();
153 if (!m_start.container()) {
158 return m_start.offset();
163 if (!m_start.container()) {
173 if (!m_start.container()) {
183 if (!m_start
[all...]
H A DRange.h67 Node* startContainer() const { return m_start.container(); }
68 int startOffset() const { return m_start.offset(); }
115 const Position startPosition() const { return m_start.toPosition(); }
187 RangeBoundaryPoint m_start; member in class:WebCore::Range
/macosx-10.10/WebCore-7600.1.25/html/track/
H A DVTTScanner.h59 : m_start(start), m_end(end), m_is8Bit(is8Bit) { }
61 Position start() const { return m_start; }
64 bool isEmpty() const { return m_start == m_end; }
68 Position m_start; member in class:WebCore::VTTScanner::Run
156 return m_end - m_start;
157 return reinterpret_cast<const UChar*>(m_end) - reinterpret_cast<const UChar*>(m_start);
/macosx-10.10/JavaScriptCore-7600.1.17/assembler/
H A DRepatchBuffer.h52 m_start = code->start();
55 ExecutableAllocator::makeWritable(m_start, m_size);
62 ExecutableAllocator::makeExecutable(m_start, m_size);
192 void* m_start; member in class:JSC::RepatchBuffer

Completed in 302 milliseconds

12