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

  /external/webkit/WebCore/editing/
InsertIntoTextNodeCommand.h 49 unsigned m_offset; member in class:WebCore::InsertIntoTextNodeCommand
SplitTextNodeCommand.h 50 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
TextIterator.h 104 int m_offset; member in class:WebCore::TextIterator
178 int m_offset; member in class:WebCore::SimplifiedBackwardsTextIterator
224 int characterOffset() const { return m_offset; }
228 int m_offset; member in class:WebCore::CharacterIterator
247 int m_offset; member in class:WebCore::BackwardsCharacterIterator
  /external/webkit/WebCore/css/
CSSReflectValue.h 47 CSSPrimitiveValue* offset() const { return m_offset.get(); }
58 , m_offset(offset)
64 RefPtr<CSSPrimitiveValue> m_offset; member in class:WebCore::CSSReflectValue
  /external/webkit/WebCore/rendering/
LayoutState.h 68 IntSize m_offset; // x/y offset from container. member in class:WebCore::LayoutState
  /external/webkit/JavaScriptCore/runtime/
PutPropertySlot.h 51 m_offset = offset;
58 m_offset = offset;
67 return m_offset;
72 size_t m_offset; member in class:JSC::PutPropertySlot
PropertySlot.h 74 bool isCacheable() const { return m_offset != WTF::notFound; }
78 return m_offset;
104 m_offset = offset;
185 m_offset = WTF::notFound;
205 size_t m_offset; member in class:JSC::PropertySlot
Structure.h 105 unsigned propertyStorageSize() const { return m_anonymousSlotCount + (m_propertyTable ? m_propertyTable->keyCount + (m_propertyTable->deletedOffsets ? m_propertyTable->deletedOffsets->size() : 0) : static_cast<unsigned>(m_offset + 1)); }
133 bool isEmpty() const { return m_propertyTable ? !m_propertyTable->keyCount : m_offset == noOffset; }
179 // Since the number of transitions is always the same as m_offset, we keep the size of Structure down by not storing both.
180 return m_offset == noOffset ? 0 : m_offset + 1;
210 // m_offset does not account for anonymous slots
211 signed char m_offset; member in class:JSC::Structure
  /external/webkit/WebCore/rendering/style/
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/WebCore/platform/graphics/chromium/
FontCustomPlatformData.cpp 131 , m_offset(0)
141 m_offset = 0;
158 size_t left = m_buffer->size() - m_offset;
160 std::memcpy(buffer, m_buffer->data() + m_offset, toRead);
161 m_offset += toRead;
167 size_t m_offset; member in class:WebCore::RemoteFontStream
VDMXParser.cpp 49 , m_offset(0) { }
53 if (m_offset + numBytes > m_length)
55 m_offset += numBytes;
61 if (m_offset + sizeof(uint8_t) > m_length)
63 *value = m_buffer[m_offset];
64 m_offset += sizeof(uint8_t);
70 if (m_offset + sizeof(uint16_t) > m_length)
72 memcpy(value, m_buffer + m_offset, sizeof(uint16_t));
74 m_offset += sizeof(uint16_t);
85 return m_offset;
96 size_t m_offset; member in class:Buffer
    [all...]
  /cts/tools/annotation-helper/src/spechelper/
MyCompletion.java 29 private int m_offset; field in class:MyCompletion
43 m_offset = replacementOffset;
62 document.replace(m_offset, m_replacelen, replace);
69 return new Point(m_offset + m_cursorpos, 0);
  /external/webkit/WebKit/mac/Plugins/
WebBaseNetscapePluginStream.h 108 int32 m_offset; member in class:WebNetscapePluginStream
  /external/webkit/WebCore/dom/
Position.h 65 : m_offset(0)
81 void clear() { m_anchorNode.clear(); m_offset = 0; m_anchorType = PositionIsOffsetInAnchor; m_isLegacyEditingPosition = false; }
92 return m_offset;
99 return m_offset;
180 // m_offset can be the offset inside m_anchorNode, or if editingIgnoresContent(m_anchorNode)
181 // returns true, then other places in editing will treat m_offset == 0 as "before the anchor"
182 // and m_offset > 0 as "after the anchor node". See rangeCompliantEquivalent for more info.
183 int m_offset; member in class:WebCore::Position
  /external/webkit/WebCore/plugins/
PluginStream.h 115 int32 m_offset; member in class:WebCore::PluginStream
  /external/webkit/WebCore/platform/graphics/win/
FontCustomPlatformData.cpp 131 , m_offset(0)
144 size_t m_offset; member in class:WebCore::EOTStream
152 size_t bytesFromHeader = min(m_eotHeader.size() - m_offset, count);
153 memcpy(buffer, m_eotHeader.data() + m_offset, bytesFromHeader);
154 m_offset += bytesFromHeader;
156 if (m_offset == m_eotHeader.size()) {
158 m_offset = 0;
162 size_t bytesFromData = min(m_fontData->size() - m_offset, bytesToRead);
163 memcpy(buffer, m_fontData->data() + m_offset, bytesFromData);
164 if (m_offset < m_overlayDst + m_overlayLength && m_offset + bytesFromData >= m_overlayDst)
    [all...]
  /external/webkit/WebCore/platform/graphics/wince/
FontWince.cpp 82 int m_offset; member in class:WebCore::TextRunComponent
92 , m_offset(o)
102 , m_offset(o)
227 pt.setX(point.x() + w - comp.m_offset - comp.m_width);
229 pt.setX(point.x() + comp.m_offset);
257 int xe = w - comp.m_offset;
269 int xs = comp.m_offset;
294 int xs = comp.m_offset;
  /external/webkit/WebCore/svg/animation/
SVGSMILElement.h 129 SMILTime m_offset; member in struct:WebCore::SVGSMILElement::Condition
  /external/webkit/WebCore/platform/graphics/
GraphicsContext.cpp 42 , m_offset(0)
48 , m_offset(offset)
54 , m_offset(other.m_offset)
58 unsigned offset() const { return m_offset; }
59 void increment() { m_offset++; }
60 bool atEnd() const { return !m_textRun || m_offset >= m_textRun->length(); }
61 UChar current() const { return (*m_textRun)[m_offset]; }
66 return m_offset == other.m_offset && m_textRun == other.m_textRun
73 int m_offset; member in class:WebCore::TextRunIterator
    [all...]
  /external/webkit/JavaScriptCore/assembler/
ARMAssembler.h 192 : m_offset(-1)
198 : m_offset(offset)
202 int m_offset; member in class:JSC::ARMAssembler::JmpSrc
209 : m_offset(-1)
218 : m_offset(offset)
221 ASSERT(m_offset == offset);
224 int m_offset : 31;
677 patchPointerInternal(reinterpret_cast<intptr_t>(code) + from.m_offset, to);
705 ARMWord* insn = reinterpret_cast<ARMWord*>(m_buffer.data()) + (from.m_offset / sizeof(ARMWord));
707 *addr = static_cast<ARMWord>(to.m_offset);
    [all...]
ARMv7Assembler.h 451 : m_offset(-1)
457 : m_offset(offset)
461 int m_offset; member in class:JSC::ARMv7Assembler::JmpSrc
469 : m_offset(-1)
478 : m_offset(offset)
481 ASSERT(m_offset == offset);
484 int m_offset : 31;
    [all...]
X86Assembler.h 226 : m_offset(-1)
232 : m_offset(offset)
236 int m_offset; member in class:JSC::X86Assembler::JmpSrc
244 : m_offset(-1)
253 : m_offset(offset)
256 ASSERT(m_offset == offset);
259 int m_offset : 31;
    [all...]
  /external/webkit/WebKit/android/nav/
SelectText.cpp 60 , m_offset(0)
66 , m_offset(offset)
72 , m_offset(other.m_offset)
76 unsigned offset() const { return m_offset; }
77 void increment() { m_offset++; }
78 bool atEnd() const { return !m_textRun || m_offset >= m_textRun->length(); }
79 UChar current() const { return (*m_textRun)[m_offset]; }
84 return m_offset == other.m_offset && m_textRun == other.m_textRun
91 int m_offset; member in class:WebCore::TextRunIterator
    [all...]

Completed in 402 milliseconds