Searched refs:m_offset (Results 1 - 25 of 58) sorted by relevance

123

/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/editing/
H A DInsertIntoTextNodeCommand.cpp37 , m_offset(offset)
41 ASSERT(m_offset <= m_node->length());
51 m_node->insertData(m_offset, m_text, ec);
54 document()->axObjectCache()->nodeTextChangeNotification(m_node->renderer(), AXObjectCache::AXTextInserted, m_offset, m_text.length());
64 document()->axObjectCache()->nodeTextChangeNotification(m_node->renderer(), AXObjectCache::AXTextDeleted, m_offset, m_text.length());
67 m_node->deleteData(m_offset, m_text.length(), ec);
H A DDeleteFromTextNodeCommand.cpp37 , m_offset(offset)
41 ASSERT(m_offset <= m_node->length());
42 ASSERT(m_offset + m_count <= m_node->length());
53 m_text = m_node->substringData(m_offset, m_count, ec);
59 document()->axObjectCache()->nodeTextChangeNotification(m_node->renderer(), AXObjectCache::AXTextDeleted, m_offset, m_count);
61 m_node->deleteData(m_offset, m_count, ec);
72 m_node->insertData(m_offset, m_text, ec);
75 document()->axObjectCache()->nodeTextChangeNotification(m_node->renderer(), AXObjectCache::AXTextInserted, m_offset, m_count);
H A DSplitTextNodeCommand.cpp39 , m_offset(offset)
47 ASSERT(m_offset > 0);
48 ASSERT(m_offset < m_text2->length());
58 String prefixText = m_text2->substringData(0, m_offset, ec);
64 document()->markers()->copyMarkers(m_text2.get(), 0, m_offset, m_text1.get(), 0);
104 m_text2->deleteData(0, m_offset, ec);
H A DSplitTextNodeContainingElementCommand.cpp37 : CompositeEditCommand(text->document()), m_text(text), m_offset(offset)
46 ASSERT(m_offset > 0);
48 splitTextNode(m_text.get(), m_offset);
H A DSplitTextNodeContainingElementCommand.h46 int m_offset; member in class:WebCore::SplitTextNodeContainingElementCommand
H A DDeleteFromTextNodeCommand.h49 unsigned m_offset; member in class:WebCore::DeleteFromTextNodeCommand
H A DInsertIntoTextNodeCommand.h49 unsigned m_offset; member in class:WebCore::InsertIntoTextNodeCommand
H A DSplitTextNodeCommand.h52 unsigned m_offset; member in class:WebCore::SplitTextNodeCommand
/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/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/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
H A DCSSReflectValue.cpp56 result += m_offset->cssText() + " ";
/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/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/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()); }
/external/webkit/Source/WebCore/dom/
H A DPosition.cpp76 , m_offset(offset)
77 , m_anchorType(anchorTypeForLegacyEditingPosition(m_anchorNode.get(), m_offset))
84 , m_offset(0)
93 , m_offset(offset)
106 m_offset = offset;
108 m_anchorType = anchorTypeForLegacyEditingPosition(m_anchorNode.get(), m_offset);
113 m_offset = offset;
115 m_anchorType = anchorTypeForLegacyEditingPosition(m_anchorNode.get(), m_offset);
141 return std::min(lastOffsetInNode(m_anchorNode.get()), m_offset);
166 if (m_offset <
[all...]
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/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/JavaScriptCore/assembler/
H A DMIPSAssembler.h173 : m_offset(-1)
179 : m_offset(offset)
183 int m_offset; member in class:JSC::MIPSAssembler::JmpSrc
190 : m_offset(-1)
196 bool isSet() const { return (m_offset != -1); }
200 : m_offset(offset)
203 ASSERT(m_offset == offset);
206 int m_offset : 31;
679 ASSERT(jump.m_offset != -1);
680 void* b = reinterpret_cast<void*>((reinterpret_cast<intptr_t>(code)) + jump.m_offset);
[all...]
/external/opencv/otherlibs/highgui/
H A Dgrfmt_bmp.h73 int m_offset; member in class:GrFmtBmpReader
H A Dgrfmt_pxm.h66 int m_offset; member in class:GrFmtPxMReader
H A Dgrfmt_sunras.h79 int m_offset; member in class:GrFmtSunRasterReader

Completed in 759 milliseconds

123