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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
TextRunIterator.h 40 , m_offset(0)
46 , m_offset(offset)
52 , m_offset(other.m_offset)
56 unsigned offset() const { return m_offset; }
57 void increment() { m_offset++; }
58 bool atEnd() const { return !m_textRun || m_offset >= m_textRun->length(); }
59 UChar current() const { return (*m_textRun)[m_offset]; }
64 return m_offset == other.m_offset && m_textRun == other.m_textRun
71 int m_offset; member in class:WebCore::TextRunIterator
    [all...]
ShadowBlur.h 59 FloatSize m_offset; member in class:WebCore::ShadowBlur
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
OutlineValue.h 36 : m_offset(0)
42 return m_width == o.m_width && m_style == o.m_style && m_color == o.m_color && m_colorIsValid == o.m_colorIsValid && m_offset == o.m_offset && m_isAuto == o.m_isAuto;
50 int offset() const { return m_offset; }
54 int m_offset; member in class:WebCore::OutlineValue
StyleReflection.h 44 return m_direction == o.m_direction && m_offset == o.m_offset && m_mask == o.m_mask;
49 Length offset() const { return m_offset; }
53 void setOffset(const Length& l) { m_offset = l; }
59 , m_offset(0, Fixed)
65 Length m_offset; member in class:WebCore::StyleReflection
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/skia/
SkiaSharedBufferStream.cpp 43 const size_t bytesLeft = m_buffer->size() - m_offset;
48 unsigned byteOffset = m_offset;
55 m_offset += bytesRead;
65 m_offset += bytesToConsume;
71 return this->getLength() == m_offset;
76 m_offset = 0;
87 return m_offset;
92 m_offset = std::min(position, static_cast<size_t>(m_buffer->size()));
98 return this->seek(m_offset + offset);
104 that->m_offset = this->m_offset
    [all...]
SkiaSharedBufferStream.h 70 , m_offset(0)
75 size_t m_offset; member in class:WebCore::SkiaSharedBufferStream
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringView.h 41 : m_offset(0)
48 , m_offset(0)
55 , m_offset(offset)
64 m_offset += offset;
78 return m_impl->characters8() + m_offset;
86 return m_impl->characters16() + m_offset;
91 unsigned m_offset; member in class:WTF::StringView
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSReflectValue.cpp 38 return m_direction->cssText() + ' ' + m_offset->cssText() + ' ' + m_mask->cssText();
39 return m_direction->cssText() + ' ' + m_offset->cssText();
45 return m_direction->customSerializeResolvingVariables(variables) + ' ' + m_offset->customSerializeResolvingVariables(variables) + ' ' + m_mask->serializeResolvingVariables(variables);
46 return m_direction->customSerializeResolvingVariables(variables) + ' ' + m_offset->customSerializeResolvingVariables(variables);
58 && compareCSSValuePtr(m_offset, other.m_offset)
CSSReflectValue.h 46 CSSPrimitiveValue* offset() const { return m_offset.get(); }
60 , m_offset(offset)
66 RefPtr<CSSPrimitiveValue> m_offset; member in class:WebCore::CSSReflectValue
  /external/chromium_org/third_party/WebKit/Source/core/editing/
DeleteFromTextNodeCommand.cpp 40 , m_offset(offset)
44 ASSERT(m_offset <= m_node->length());
45 ASSERT(m_offset + m_count <= m_node->length());
56 m_text = m_node->substringData(m_offset, m_count, es);
62 cache->nodeTextChangeNotification(m_node.get(), AXObjectCache::AXTextDeleted, m_offset, m_text);
64 m_node->deleteData(m_offset, m_count, es);
74 m_node->insertData(m_offset, m_text, IGNORE_EXCEPTION);
77 cache->nodeTextChangeNotification(m_node.get(), AXObjectCache::AXTextInserted, m_offset, m_text);
InsertIntoTextNodeCommand.cpp 41 , m_offset(offset)
45 ASSERT(m_offset <= m_node->length());
61 renderText->momentarilyRevealLastTypedCharacter(m_offset + m_text.length() - 1);
64 m_node->insertData(m_offset, m_text, IGNORE_EXCEPTION);
67 cache->nodeTextChangeNotification(m_node.get(), AXObjectCache::AXTextInserted, m_offset, m_text);
77 cache->nodeTextChangeNotification(m_node.get(), AXObjectCache::AXTextDeleted, m_offset, m_text);
79 m_node->deleteData(m_offset, m_text.length(), IGNORE_EXCEPTION);
SplitTextNodeContainingElementCommand.cpp 37 : CompositeEditCommand(text->document()), m_text(text), m_offset(offset)
46 ASSERT(m_offset > 0);
48 splitTextNode(m_text.get(), m_offset);
SplitTextNodeCommand.cpp 41 , m_offset(offset)
49 ASSERT(m_offset > 0);
50 ASSERT(m_offset < m_text2->length());
59 String prefixText = m_text2->substringData(0, m_offset, IGNORE_EXCEPTION);
65 document()->markers()->copyMarkers(m_text2.get(), 0, m_offset, m_text1.get(), 0);
103 m_text2->deleteData(0, m_offset, es);
SplitTextNodeContainingElementCommand.h 46 int m_offset; member in class:WebCore::SplitTextNodeContainingElementCommand
RenderedPosition.h 78 bool atLeftmostOffsetInBox() const { return m_inlineBox && m_offset == m_inlineBox->caretLeftmostOffset(); }
79 bool atRightmostOffsetInBox() const { return m_inlineBox && m_offset == m_inlineBox->caretRightmostOffset(); }
85 int m_offset; member in class:WebCore::RenderedPosition
97 , m_offset(0)
106 , m_offset(offset)
DeleteFromTextNodeCommand.h 53 unsigned m_offset; member in class:WebCore::DeleteFromTextNodeCommand
SplitTextNodeCommand.h 56 unsigned m_offset; member in class:WebCore::SplitTextNodeCommand
InsertIntoTextNodeCommand.h 53 unsigned m_offset; member in class:WebCore::InsertIntoTextNodeCommand
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Clock.cpp 36 , m_offset(0)
44 m_offset = time;
51 return ((m_lastTime - m_startTime) * m_rate) + m_offset;
56 m_offset = now();
75 m_offset = now();
Clock.h 54 double m_offset; member in class:WebCore::Clock
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
VDMXParser.cpp 47 , m_offset(0) { }
51 if (m_offset + numBytes > m_length)
53 m_offset += numBytes;
59 if (m_offset + sizeof(uint8_t) > m_length)
61 *value = m_buffer[m_offset];
62 m_offset += sizeof(uint8_t);
68 if (m_offset + sizeof(uint16_t) > m_length)
70 memcpy(value, m_buffer + m_offset, sizeof(uint16_t));
72 m_offset += sizeof(uint16_t);
83 return m_offset;
94 size_t m_offset; member in class:Buffer
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
KeyframeAnimationEffect.h 58 void setOffset(double offset) { m_offset = offset; }
59 double offset() const { return m_offset; }
67 double m_offset; member in class:WebCore::Keyframe
92 double offset() const { return m_offset; }
98 double m_offset; member in class:WebCore::KeyframeAnimationEffect::PropertySpecificKeyframe
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderGeometryMap.h 48 , m_offset(o.m_offset)
65 LayoutSize m_offset; member in struct:WebCore::RenderGeometryMapStep
  /external/libppp/src/
mbuf.h 33 u_short m_offset; /* offset from header end to start position */ member in struct:mbuf
49 ((bp) ? (u_char *)((bp)+1) + (bp)->m_offset : (u_char *)bp)
52 ((bp) ? (const u_char *)((bp)+1) + (bp)->m_offset : (const u_char *)bp)
  /external/opencv/otherlibs/highgui/
grfmt_bmp.h 73 int m_offset; member in class:GrFmtBmpReader

Completed in 314 milliseconds

1 2 3