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

1 2

  /external/webkit/Source/WebCore/editing/
InsertIntoTextNodeCommand.h 49 unsigned m_offset; member in class:WebCore::InsertIntoTextNodeCommand
SplitTextNodeCommand.h 52 unsigned m_offset; member in class:WebCore::SplitTextNodeCommand
SplitTextNodeContainingElementCommand.h 46 int m_offset; member in class:WebCore::SplitTextNodeContainingElementCommand
DeleteFromTextNodeCommand.h 49 unsigned m_offset; member in class:WebCore::DeleteFromTextNodeCommand
  /external/opencv/otherlibs/highgui/
grfmt_pxm.h 66 int m_offset; member in class:GrFmtPxMReader
grfmt_bmp.h 73 int m_offset; member in class:GrFmtBmpReader
grfmt_sunras.h 79 int m_offset; member in class:GrFmtSunRasterReader
grfmt_jpeg.h 121 int m_offset; // offset of first scan member in class:GrFmtJpegReader
  /external/webkit/Source/WebCore/rendering/style/
OutlineValue.h 36 : m_offset(0)
43 return m_width == o.m_width && m_style == o.m_style && m_color == o.m_color && m_offset == o.m_offset && m_isAuto == o.m_isAuto;
51 int offset() const { return m_offset; }
55 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)
64 Length m_offset; member in class:WebCore::StyleReflection
  /external/webkit/Source/WebCore/css/
CSSReflectValue.h 47 CSSPrimitiveValue* offset() const { return m_offset.get(); }
58 , m_offset(offset)
66 RefPtr<CSSPrimitiveValue> m_offset; member in class:WebCore::CSSReflectValue
  /external/webkit/Source/JavaScriptCore/runtime/
PutPropertySlot.h 52 m_offset = offset;
59 m_offset = offset;
69 return m_offset;
75 size_t m_offset; member in class:JSC::PutPropertySlot
  /external/webkit/Source/WebCore/platform/graphics/
ContextShadow.h 83 FloatSize m_offset; member in class:WebCore::ContextShadow
123 QPointF offset() const { return QPointF(m_offset.width(), m_offset.height()); }
ShadowBlur.h 91 FloatSize m_offset; member in class:WebCore::ShadowBlur
  /external/webkit/Source/WebCore/platform/graphics/chromium/
VDMXParser.cpp 48 , m_offset(0) { }
52 if (m_offset + numBytes > m_length)
54 m_offset += numBytes;
60 if (m_offset + sizeof(uint8_t) > m_length)
62 *value = m_buffer[m_offset];
63 m_offset += sizeof(uint8_t);
69 if (m_offset + sizeof(uint16_t) > m_length)
71 memcpy(value, m_buffer + m_offset, sizeof(uint16_t));
73 m_offset += sizeof(uint16_t);
84 return m_offset;
95 size_t m_offset; member in class:Buffer
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
FontCustomPlatformData.cpp 132 , m_offset(0)
142 m_offset = 0;
155 size_t left = m_buffer->size() - m_offset;
158 std::memcpy(buffer, m_buffer->data() + m_offset, bytesToConsume);
159 m_offset += bytesToConsume;
165 size_t m_offset; member in class:WebCore::RemoteFontStream
  /external/webkit/Source/WebKit/android/nav/
SelectText.cpp 64 , m_offset(0)
70 , m_offset(offset)
76 , m_offset(other.m_offset)
80 unsigned offset() const { return m_offset; }
81 void increment() { m_offset++; }
82 bool atEnd() const { return !m_textRun || m_offset >= m_textRun->length(); }
83 UChar current() const { return (*m_textRun)[m_offset]; }
88 return m_offset == other.m_offset && m_textRun == other.m_textRun
95 int m_offset; member in class:WebCore::TextRunIterator
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginStream.h 109 int32_t m_offset; member in class:WebNetscapePluginStream
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapePluginStream.h 89 int32_t m_offset; member in class:WebKit::NetscapePluginStream
  /external/webkit/Source/WebCore/dom/
Position.h 61 : m_offset(0)
77 void clear() { m_anchorNode.clear(); m_offset = 0; m_anchorType = PositionIsOffsetInAnchor; m_isLegacyEditingPosition = false; }
89 return m_offset;
96 return m_offset;
188 // m_offset can be the offset inside m_anchorNode, or if editingIgnoresContent(m_anchorNode)
189 // returns true, then other places in editing will treat m_offset == 0 as "before the anchor"
190 // and m_offset > 0 as "after the anchor node". See parentAnchoredEquivalent for more info.
191 int m_offset; member in class:WebCore::Position
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapper.h 78 inline void setOffset(const IntPoint& o) { m_offset = o; }
79 inline IntPoint offset() const { return m_offset; }
87 IntPoint m_offset; member in class:WebCore::BitmapTexture
  /external/webkit/Source/WebCore/platform/graphics/win/
FontCustomPlatformData.cpp 103 , m_offset(0)
116 size_t m_offset; member in class:WebCore::EOTStream
124 size_t bytesFromHeader = min(m_eotHeader.size() - m_offset, count);
125 memcpy(buffer, m_eotHeader.data() + m_offset, bytesFromHeader);
126 m_offset += bytesFromHeader;
128 if (m_offset == m_eotHeader.size()) {
130 m_offset = 0;
134 size_t bytesFromData = min(m_fontData->size() - m_offset, bytesToRead);
135 memcpy(buffer, m_fontData->data() + m_offset, bytesFromData);
136 if (m_offset < m_overlayDst + m_overlayLength && m_offset + bytesFromData >= m_overlayDst)
    [all...]
  /external/webkit/Source/WebCore/plugins/
PluginStream.h 115 int32_t m_offset; member in class:WebCore::PluginStream
  /frameworks/av/libvideoeditor/vss/common/inc/
M4PCMR_CoreReader.h 107 M4OSA_UInt32 m_offset; /**< Offset of the PCM read (i.e m_offset of the member in struct:__anon18849
  /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)

Completed in 621 milliseconds

1 2