HomeSort by relevance Sort by last modified time
    Searched refs:m_end (Results 26 - 50 of 56) sorted by null

12 3

  /external/webkit/Source/JavaScriptCore/heap/
HandleStack.cpp 60 m_frame.m_end = block + m_blockStack.blockLength;
MarkStack.cpp 96 JSValue* end = current.m_end;
MarkStack.h 95 , m_end(end)
101 JSValue* m_end; member in struct:JSC::MarkStack::MarkSet
  /external/webkit/Source/WebCore/platform/graphics/
WidthIterator.h 49 int m_end; member in struct:WebCore::WidthIterator
WidthIterator.cpp 47 , m_end(run.length())
66 unsigned expansionOpportunityCount = Font::expansionOpportunityCount(m_run.characters(), m_end, m_run.ltr() ? LTR : RTL, isAfterExpansion);
79 if (offset > m_end)
80 offset = m_end;
237 if (currentCharacter + 1 < m_end) {
  /external/webkit/Source/JavaScriptCore/jit/
ExecutableAllocator.h 130 ASSERT(m_freePtr <= m_end);
136 if (static_cast<ptrdiff_t>(n) < (m_end - m_freePtr)) {
161 size_t available() const { return (m_pools.size() > 1) ? 0 : m_end - m_freePtr; }
172 char* m_end; member in class:JSC::ExecutablePool
352 m_end = m_freePtr + allocSize;
363 ASSERT(m_end >= m_freePtr);
364 if ((allocSize - n) > static_cast<size_t>(m_end - m_freePtr)) {
367 m_end = static_cast<char*>(result.base()) + allocSize;
  /external/webkit/Source/JavaScriptCore/runtime/
LiteralParser.h 76 , m_end(s.characters() + s.length())
98 const UChar* m_end; member in class:JSC::LiteralParser::Lexer
  /external/webkit/Source/WebCore/rendering/
RenderMarquee.cpp 64 , m_start(0), m_end(0), m_speed(0), m_reset(false)
207 m_end = computePosition(reverseDirection(), behavior == MALTERNATE || behavior == MSLIDE);
280 int endPoint = m_end;
281 int range = m_end - m_start;
284 newPos = m_end;
  /external/webkit/Source/WebCore/platform/graphics/mac/
ComplexTextController.cpp 58 , m_end(run.length())
78 unsigned expansionOpportunityCount = Font::expansionOpportunityCount(m_run.characters(), m_end, m_run.ltr() ? LTR : RTL, isAfterExpansion);
97 return m_run.ltr() ? m_end : 0;
101 return m_run.ltr() ? 0 : m_end;
180 if (!m_end)
187 m_smallCapsBuffer.resize(m_end);
189 unsigned indexOfFontTransition = m_run.rtl() ? m_end - 1 : 0;
190 const UChar* curr = m_run.rtl() ? cp + m_end - 1 : cp;
191 const UChar* end = m_run.rtl() ? cp - 1 : cp + m_end;
256 int itemLength = m_run.rtl() ? indexOfFontTransition + 1 : m_end - indexOfFontTransition
    [all...]
ComplexTextController.h 168 int m_end; member in class:WebCore::ComplexTextController
  /external/webkit/Source/WebCore/platform/graphics/wince/
PlatformPathWinCE.h 75 PathPoint m_end; member in struct:WebCore::PlatformPathElement::MoveTo
79 PathPoint m_end; member in struct:WebCore::PlatformPathElement::LineTo
83 PathPoint m_end; member in struct:WebCore::PlatformPathElement::ArcTo
PlatformPathWinCE.cpp 217 double endAngle = data.m_end - data.m_center;
220 if (endAngle <= curAngle || startPoint == data.m_end)
224 if (endAngle >= curAngle || startPoint == data.m_end)
231 if (poly.isEmpty() || poly.last() != data.m_end)
232 poly.append(data.m_end);
420 PathPoint endPoint = data.m_end;
  /external/opencv/otherlibs/highgui/
bitstrm.h 80 uchar* m_end; member in class:RBaseStream
176 uchar* m_end; member in class:WBaseStream
  /external/webkit/Source/WebCore/html/
TimeRanges.cpp 45 newSession->add(m_ranges[i].m_start, m_ranges[i].m_end);
65 return m_ranges[index].m_end;
HTMLViewSourceDocument.cpp 156 index = addRange(source, index, iter->m_nameRange.m_end - token.startIndex(), "webkit-html-attribute-name");
164 index = addRange(source, index, iter->m_valueRange.m_end - token.startIndex(), "webkit-html-attribute-value", isLink, tagName == aTag);
  /external/webkit/Source/WebCore/dom/
Range.h 52 Node* endContainer() const { return m_end.container(); }
53 int endOffset() const { return m_end.offset(); }
99 const Position endPosition() const { return m_end.toPosition(); }
159 RangeBoundaryPoint m_end; member in class:WebCore::Range
  /external/webkit/Source/WebCore/platform/graphics/win/
UniscribeController.h 77 int m_end; member in class:WebCore::UniscribeController
UniscribeController.cpp 49 , m_end(run.length())
87 m_offsetPosition = m_end;
101 if (static_cast<int>(offset) > m_end)
102 offset = m_end;
  /external/emma/lib/internal/
stamptool.jar 
  /external/webkit/Source/JavaScriptCore/dfg/
DFGSpeculativeJIT.h 346 , m_end(m_speculationChecks.end())
352 while (m_iter != m_end) {
364 SpeculationCheckVector::Iterator m_end; member in class:JSC::DFG::SpeculationCheckIndexIterator
  /external/webkit/Source/WebCore/bindings/js/
JSDOMBinding.cpp 100 , m_end(static_cast<WebCoreJSClientData*>(globalData->clientData)->m_worldSet.end())
106 return m_pos != m_end;
111 ASSERT(m_pos != m_end);
117 ASSERT(m_pos != m_end);
129 HashSet<DOMWrapperWorld*>::iterator m_end; member in class:WebCore::JSGlobalDataWorldIterator
SerializedScriptValue.cpp 840 , m_end(buffer.data() + buffer.size())
858 if (m_failed || !readLittleEndian(m_ptr, m_end, value)) {
1012 if (!readString(m_ptr, m_end, str, length)) {
1023 if (m_ptr >= m_end)
1189 const uint8_t* m_end; member in class:WebCore::CloneDeserializer
    [all...]
  /external/webkit/Source/WebCore/editing/
ApplyStyleCommand.h 125 Position m_end; member in class:WebCore::ApplyStyleCommand
ApplyStyleCommand.cpp 127 , m_end(endingSelection().end().upstream())
141 , m_end(end)
155 , m_end(endingSelection().end().upstream())
169 , m_end(endingSelection().end().upstream())
181 if (!m_useEndingSelection && (newStart != m_start || newEnd != m_end))
186 m_end = newEnd;
202 return m_end;
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLTreeBuilder.cpp 253 , m_end(m_current + token.characters().size())
260 , m_end(m_current + string.length())
270 bool isEmpty() const { return m_current == m_end; }
291 m_current = m_end;
297 recipient.append(m_current, m_end - m_current);
298 m_current = m_end;
309 } while (m_current < m_end);
324 if (++m_current == m_end)
341 const UChar* m_end; member in class:WebCore::HTMLTreeBuilder::ExternalCharacterTokenBuffer
    [all...]

Completed in 1737 milliseconds

12 3