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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/platform/text/
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]; }
65 return m_offset == other.m_offset && m_textRun == other.m_textRun
72 int m_offset; member in class:WebCore::TextRunIterator
    [all...]
  /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/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 39 , m_offset(offset)
43 ASSERT(m_offset <= m_node->length());
44 ASSERT(m_offset + m_count <= m_node->length());
55 m_text = m_node->substringData(m_offset, m_count, exceptionState);
59 m_node->deleteData(m_offset, m_count, exceptionState, CharacterData::DeprecatedRecalcStyleImmediatlelyForEditing);
69 m_node->insertData(m_offset, m_text, IGNORE_EXCEPTION, CharacterData::DeprecatedRecalcStyleImmediatlelyForEditing);
InsertIntoTextNodeCommand.cpp 40 , m_offset(offset)
44 ASSERT(m_offset <= m_node->length());
60 renderText->momentarilyRevealLastTypedCharacter(m_offset + m_text.length() - 1);
63 m_node->insertData(m_offset, m_text, IGNORE_EXCEPTION, CharacterData::DeprecatedRecalcStyleImmediatlelyForEditing);
71 m_node->deleteData(m_offset, m_text.length(), IGNORE_EXCEPTION, CharacterData::DeprecatedRecalcStyleImmediatlelyForEditing);
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, exceptionState, CharacterData::DeprecatedRecalcStyleImmediatlelyForEditing);
SplitTextNodeContainingElementCommand.cpp 37 : CompositeEditCommand(text->document()), m_text(text), m_offset(offset)
46 ASSERT(m_offset > 0);
48 splitTextNode(m_text.get(), m_offset);
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 49 unsigned m_offset; member in class:WebCore::DeleteFromTextNodeCommand
InsertIntoTextNodeCommand.h 49 unsigned m_offset; member in class:WebCore::InsertIntoTextNodeCommand
SplitTextNodeCommand.h 52 unsigned m_offset; member in class:WebCore::SplitTextNodeCommand
RenderedPosition.cpp 69 , m_offset(0)
75 position.getInlineBoxAndOffset(m_inlineBox, m_offset);
85 , m_offset(0)
91 position.getInlineBoxAndOffset(affinity, m_inlineBox, m_offset);
114 return (m_renderer == other.m_renderer && m_inlineBox == other.m_inlineBox && m_offset == other.m_offset)
210 return createLegacyEditingPosition(m_renderer->node(), m_offset);
220 return createLegacyEditingPosition(m_renderer->node(), m_offset);
230 IntRect localRect = pixelSnappedIntRect(m_renderer->localCaretRect(m_inlineBox, m_offset, extraWidthToEndOfLine));
  /external/chromium_org/third_party/WebKit/Source/platform/
Clock.cpp 36 , m_offset(0)
44 m_offset = time;
49 return currentDelta() + m_offset;
54 m_offset += currentDelta();
73 m_offset += currentDelta();
Clock.h 56 double m_offset; member in class:WebCore::Clock
  /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;
100 unsigned m_offset; member in class:WTF::StringView
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
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...]
  /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; }
71 double m_offset; member in class:WebCore::Keyframe
107 double offset() const { return m_offset; }
113 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)
66 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
grfmt_pxm.h 66 int m_offset; member in class:GrFmtPxMReader
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.h 64 : m_offset(0)
73 int value() const { return m_offset; }
76 explicit LegacyEditingOffset(int offset) : m_offset(offset) { }
80 int m_offset; member in class:WebCore::Position::LegacyEditingOffset
94 void clear() { m_anchorNode.clear(); m_offset = 0; m_anchorType = PositionIsOffsetInAnchor; m_isLegacyEditingPosition = false; }
108 return m_offset;
115 return m_offset;
218 // m_offset can be the offset inside m_anchorNode, or if editingIgnoresContent(m_anchorNode)
219 // returns true, then other places in editing will treat m_offset == 0 as "before the anchor"
220 // and m_offset > 0 as "after the anchor node". See parentAnchoredEquivalent for more info
221 int m_offset; member in class:WebCore::Position
    [all...]

Completed in 1284 milliseconds

1 2 3