Searched defs:m_offset (Results 1 - 25 of 35) sorted by relevance

12

/external/opencv/otherlibs/highgui/
H A Dgrfmt_pxm.h66 int m_offset; member in class:GrFmtPxMReader
H A Dgrfmt_bmp.h73 int m_offset; member in class:GrFmtBmpReader
H A Dgrfmt_sunras.h79 int m_offset; member in class:GrFmtSunRasterReader
H A Dgrfmt_jpeg.h121 int m_offset; // offset of first scan member in class:GrFmtJpegReader
/external/webkit/Source/WebCore/editing/
H A DInsertIntoTextNodeCommand.h49 unsigned m_offset; member in class:WebCore::InsertIntoTextNodeCommand
H A DSplitTextNodeCommand.h52 unsigned m_offset; member in class:WebCore::SplitTextNodeCommand
H A DSplitTextNodeContainingElementCommand.h46 int m_offset; member in class:WebCore::SplitTextNodeContainingElementCommand
H A DDeleteFromTextNodeCommand.h49 unsigned m_offset; member in class:WebCore::DeleteFromTextNodeCommand
/external/webkit/Source/WebCore/rendering/style/
H A DOutlineValue.h36 : 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
H A DStyleReflection.h44 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/
H A DCSSReflectValue.h47 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/
H A DPutPropertySlot.h52 m_offset = offset;
59 m_offset = offset;
69 return m_offset;
75 size_t m_offset; member in class:JSC::PutPropertySlot
H A DPropertySlot.h95 return m_offset;
113 m_offset = offset;
170 m_offset = offset;
209 m_offset = 0;
237 size_t m_offset; member in class:JSC::PropertySlot
/external/webkit/Source/WebCore/platform/graphics/
H A DContextShadow.h83 FloatSize m_offset; member in class:WebCore::ContextShadow
123 QPointF offset() const { return QPointF(m_offset.width(), m_offset.height()); }
H A DShadowBlur.h91 FloatSize m_offset; member in class:WebCore::ShadowBlur
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DNetscapePluginStream.h89 int32_t m_offset; member in class:WebKit::NetscapePluginStream
/external/webkit/Source/WebCore/dom/
H A DPosition.h61 : 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/chromium/
H A DVDMXParser.cpp48 , 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/
H A DFontCustomPlatformData.cpp132 , 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/
H A DSelectText.cpp64 , 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
95 int m_offset; member in class:WebCore::TextRunIterator
[all...]
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebNetscapePluginStream.h109 int32_t m_offset; member in class:WebNetscapePluginStream
/external/libppp/src/
H A Dmbuf.h33 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/webkit/Source/WebCore/platform/graphics/texmap/
H A DTextureMapper.h78 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/
H A DFontCustomPlatformData.cpp103 , 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_overlayDs
[all...]
/external/webkit/Source/WebCore/plugins/
H A DPluginStream.h115 int32_t m_offset; member in class:WebCore::PluginStream

Completed in 461 milliseconds

12