HomeSort by relevance Sort by last modified time
    Searched refs:m_current (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketExtensionParser.cpp 43 m_parser->m_current = m_current;
49 return m_current >= m_end;
54 return m_current == m_end;
66 while (m_current < m_end && (*m_current == ' ' || *m_current == '\t'))
67 ++m_current;
74 const char* start = m_current;
75 while (m_current < m_end && isASCIIPrintable(*m_current) && !isSeparator(*m_current)
    [all...]
WebSocketExtensionParser.h 43 : m_current(start)
56 , m_current(parser->m_current)
63 const char* m_current; member in class:WebCore::WebSocketExtensionParser::ParserStateBackup
77 const char* m_current; member in class:WebCore::WebSocketExtensionParser
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathBuilder.cpp 39 m_current = mode == AbsoluteCoordinates ? targetPoint : m_current + targetPoint;
42 m_path->moveTo(m_current);
48 m_current = mode == AbsoluteCoordinates ? targetPoint : m_current + targetPoint;
49 m_path->addLineTo(m_current);
56 m_path->addBezierCurveTo(m_current + point1, m_current + point2, m_current + targetPoint);
57 m_current += targetPoint
    [all...]
SVGPathStringSource.cpp 37 m_current.m_character8 = string.characters8();
38 m_end.m_character8 = m_current.m_character8 + string.length();
40 m_current.m_character16 = string.characters16();
41 m_end.m_character16 = m_current.m_character16 + string.length();
48 return m_current.m_character8 < m_end.m_character8;
49 return m_current.m_character16 < m_end.m_character16;
55 return skipOptionalSVGSpaces(m_current.m_character8, m_end.m_character8);
56 return skipOptionalSVGSpaces(m_current.m_character16, m_end.m_character16);
130 return parseSVGSegmentTypeHelper(m_current.m_character8, pathSegType);
131 return parseSVGSegmentTypeHelper(m_current.m_character16, pathSegType)
    [all...]
SVGPathStringSource.h 61 } m_current; member in class:WebCore::SVGPathStringSource
SVGPathBuilder.h 60 FloatPoint m_current; member in class:WebCore::SVGPathBuilder
  /external/opencv/
WLNonFileByteStream.cpp 21 m_start = m_end = m_current = 0;
39 m_current = m_start;
57 m_current = m_start;
73 *m_current++ = (uchar)val;
81 assert( data && m_current && count >= 0 );
85 int l = (int)(m_end - m_current);
92 memcpy( m_current, data, l );
93 m_current += l;
103 uchar *current = m_current;
109 m_current = current + 2;
    [all...]
WLNonFileByteStream.h 46 uchar* m_current; member in class:WLNonFileByteStream
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
BackgroundHTMLInputStream.cpp 40 m_current.append(SegmentedString(input));
46 m_current.close();
52 m_checkpoints.append(Checkpoint(m_current, m_segments.size(), tokensExtractedSincePreviousCheckpoint));
85 bool isClosed = m_current.isClosed();
87 m_current = checkpoint.input;
91 m_current.append(SegmentedString(m_segments[i]));
95 m_current.prepend(SegmentedString(unparsedInput));
97 if (isClosed && !m_current.isClosed())
98 m_current.close();
100 ASSERT(m_current.isClosed() == isClosed)
    [all...]
BackgroundHTMLInputStream.h 45 SegmentedString& current() { return m_current; }
69 SegmentedString m_current; member in class:WebCore::BackgroundHTMLInputStream
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLViewSourceDocument.cpp 85 m_current = m_tbody;
91 if (!m_current)
119 m_current = addSpanWithClassName("webkit-html-doctype");
121 m_current = m_td;
126 m_current = addSpanWithClassName("webkit-html-end-of-file");
128 m_current = m_td;
133 m_current = addSpanWithClassName("webkit-html-tag");
163 m_current = m_td;
168 m_current = addSpanWithClassName("webkit-html-comment");
170 m_current = m_td
    [all...]
HTMLViewSourceDocument.h 66 RefPtr<Element> m_current; member in class:WebCore::FINAL
  /external/opencv/otherlibs/highgui/
bitstrm.cpp 92 m_current = m_end;
98 m_start = m_end = m_current = 0;
130 m_current -= m_block_size;
133 if( readed == 0 || m_current >= m_end )
173 m_start = m_end = m_current = 0;
197 if( m_current < m_end && block_pos == m_block_pos - m_block_size )
199 m_current = m_start + offset;
204 m_current = m_start + m_block_size + offset;
212 return m_block_pos - m_block_size + (int)(m_current - m_start);
218 m_current += bytes
    [all...]
bitstrm.h 81 uchar* m_current; member in class:RBaseStream
177 uchar* m_current; member in class:WBaseStream
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeWalker.cpp 38 , m_current(root())
49 m_current = node;
54 m_current = node;
55 return m_current.get();
60 RefPtr<Node> node = m_current;
76 for (RefPtr<Node> node = m_current->firstChild(); node; ) {
82 m_current = node.release();
83 return m_current.get();
99 if (!parent || parent == root() || parent == m_current)
109 for (RefPtr<Node> node = m_current->lastChild(); node; )
    [all...]
TreeWalker.h 45 Node* currentNode() const { return m_current.get(); }
61 RefPtr<Node> m_current; member in class:WebCore::TreeWalker
  /external/chromium_org/third_party/WebKit/Source/web/
WebNodeCollection.cpp 77 Node* node = m_private->item(m_current);
79 m_current++;
85 m_current = 0;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
BreakingContextInlineHeaders.h 210 , m_current(resolver.position())
213 , m_lastObject(m_current.object())
242 RenderObject* currentObject() { return m_current.object(); }
270 InlineIterator m_current; member in class:WebCore::BreakingContext
396 m_currentStyle = m_current.object()->style();
397 m_nextObject = bidiNextSkippingEmptyInlines(m_block, m_current.object());
398 if (m_nextObject && m_nextObject->parent() && !m_nextObject->parent()->isDescendantOf(m_current.object()->parent()))
401 m_currWS = m_current.object()->isReplaced() ? m_current.object()->parent()->style()->whiteSpace() : m_currentStyle->whiteSpace();
407 m_preservesNewline = m_current.object()->isSVGInlineText() ? false : RenderStyle::preserveNewline(m_currWS)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
PODArena.h 109 , m_current(0)
114 , m_current(0)
128 if (m_current)
129 ptr = m_current->allocate(roundedSize);
135 m_current = m_chunks.last().get();
136 ptr = m_current->allocate(roundedSize);
193 Chunk* m_current; member in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
PathTraversalState.cpp 137 traversalState.m_current = curve.end;
161 float distance = distanceLine(m_current, m_start);
162 m_current = m_control1 = m_control2 = m_start;
168 m_current = m_start = m_control1 = m_control2 = point;
174 float distance = distanceLine(m_current, point);
175 m_current = m_control1 = m_control2 = point;
181 float distance = curveLength<QuadraticBezier>(*this, QuadraticBezier(m_current, newControl, newEnd));
187 m_current = newEnd;
194 float distance = curveLength<CubicBezier>(*this, CubicBezier(m_current, newControl1, newControl2, newEnd));
200 m_current = newEnd
    [all...]
PathTraversalState.h 57 FloatPoint m_current; member in class:WebCore::PathTraversalState
  /external/chromium_org/third_party/WebKit/public/web/
WebNodeCollection.h 49 WebNodeCollection() : m_private(0), m_current(0) { }
73 mutable unsigned m_current; member in class:blink::WebNodeCollection
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSParserValues.h 171 : m_current(0)
182 unsigned currentIndex() { return m_current; }
183 CSSParserValue* current() { return m_current < m_values.size() ? &m_values[m_current] : 0; }
184 CSSParserValue* next() { ++m_current; return current(); }
187 if (!m_current)
189 --m_current;
198 unsigned m_current;
  /external/chromium_org/third_party/WebKit/Source/platform/text/
BidiResolver.h 182 const Iterator& position() const { return m_current; }
183 Iterator& position() { return m_current; }
184 void setPositionIgnoringNestedIsolates(const Iterator& position) { m_current = position; }
187 m_current = position;
230 bool isEndOfLine(const Iterator& end) { return m_current == end || m_current.atEnd(); }
240 void increment() { m_current.increment(); }
245 Iterator m_current; member in class:WebCore::BidiResolver
546 while (!m_current.atEnd()) {
551 if (m_current.atParagraphSeparator()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineIterator.h 337 , m_current(0)
341 m_current = bidiFirstIncludingEmptyInlines(m_root);
345 RenderObject* current() { return m_current; }
348 bool atEnd() const { return !m_current; }
353 m_current = bidiNextIncludingEmptyInlines(m_root, m_current, &m_atEndOfInline);
354 return m_current;
358 RenderObject* m_current; member in class:WebCore::InlineWalker
437 m_current.increment(this, InlineIterator::FastIncrementInIsolatedRenderer);
443 bool inEndOfLine = m_current == end || m_current.atEnd() || (inIsolate() && m_current.object() == end.object())
    [all...]

Completed in 1328 milliseconds

1 2