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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
OutlineValue.h 36 : m_offset(0)
42 return BorderValue::operator==(o) && 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/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/css/parser/
MediaQueryInputStream.cpp 13 : m_offset(0)
20 ASSERT((m_offset + lookaheadOffset) <= maxLength());
21 if ((m_offset + lookaheadOffset) >= m_string.length())
23 return m_string[m_offset + lookaheadOffset];
28 ASSERT(m_offset + offset <= maxLength());
29 m_offset += offset;
34 --m_offset;
40 ASSERT(start <= end && ((m_offset + end) <= m_string.length()));
45 result = charactersToUInt64Strict(m_string.characters8() + m_offset + start, end - start, &isResultOK);
47 result = charactersToUInt64Strict(m_string.characters16() + m_offset + start, end - start, &isResultOK)
    [all...]
MediaQueryInputStream.h 34 return m_string.length() - m_offset;
44 while ((m_offset + offset) < m_string.length() && characterPredicate(m_string[m_offset + offset]))
50 size_t m_offset; member in class:WebCore::MediaQueryInputStream
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSReflectValue.cpp 36 return m_direction->cssText() + ' ' + m_offset->cssText() + ' ' + m_mask->cssText();
37 return m_direction->cssText() + ' ' + m_offset->cssText();
43 && compareCSSValuePtr(m_offset, other.m_offset)
50 visitor->trace(m_offset);
CSSReflectValue.h 46 CSSPrimitiveValue* offset() const { return m_offset.get(); }
59 , m_offset(offset)
65 RefPtrWillBeMember<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);
SplitTextNodeContainingElementCommand.cpp 37 : CompositeEditCommand(text->document()), m_text(text), m_offset(offset)
46 ASSERT(m_offset > 0);
48 splitTextNode(m_text.get(), m_offset);
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.h 48 int m_offset; member in class:WebCore::FINAL
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 51 unsigned m_offset; member in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
RasterShape.h 44 : m_offset(offset)
55 ASSERT(y + m_offset >= 0 && static_cast<unsigned>(y + m_offset) < m_intervals.size());
56 return m_intervals[y + m_offset];
61 ASSERT(y + m_offset >= 0 && static_cast<unsigned>(y + m_offset) < m_intervals.size());
62 return m_intervals[y + m_offset];
71 int offset() const { return m_offset; }
72 int minY() const { return -m_offset; }
73 int maxY() const { return -m_offset + m_intervals.size();
77 int m_offset; member in class:WebCore::RasterShapeIntervals
    [all...]
  /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/svg/
SVGStopElement.h 36 SVGAnimatedNumber* offset() { return m_offset.get(); }
48 RefPtr<SVGAnimatedNumber> m_offset; member in class:WebCore::FINAL
SVGComponentTransferFunctionElement.h 43 SVGAnimatedNumber* offset() { return m_offset.get(); }
61 RefPtr<SVGAnimatedNumber> m_offset; member in class:WebCore::SVGComponentTransferFunctionElement
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIOutput.cpp 63 , m_offset(0) { }
106 bool isEndOfData() { return m_offset >= m_length; }
107 bool isSysex() { return m_data[m_offset] == 0xf0; }
108 bool isSystemMessage() { return m_data[m_offset] >= 0xf0; }
109 bool isEndOfSysex() { return m_data[m_offset] == 0xf7; }
110 bool isRealTimeMessage() { return m_data[m_offset] >= 0xf8; }
111 bool isStatusByte() { return m_data[m_offset] & 0x80; }
112 bool isReservedStatusByte() { return m_data[m_offset] == 0xf4 || m_data[m_offset] == 0xf5 || m_data[m_offset] == 0xf9 || m_data[m_offset] == 0xfd;
171 size_t m_offset; member in class:WebCore::__anon15122::MessageValidator
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
Keyframe.h 24 void setOffset(double offset) { m_offset = offset; }
25 double offset() const { return m_offset; }
56 double offset() const { return m_offset; }
74 double m_offset; member in class:WebCore::Keyframe::PropertySpecificKeyframe
83 : m_offset(nullValue())
89 : m_offset(offset)
95 double m_offset; member in class:WebCore::Keyframe
  /external/lldb/include/lldb/Core/
Address.h 104 m_offset (LLDB_INVALID_ADDRESS)
119 m_offset(rhs.m_offset.load())
138 m_offset (offset)
186 m_offset = LLDB_INVALID_ADDRESS;
336 GetOffset () const { return m_offset; }
371 return m_offset != LLDB_INVALID_ADDRESS;
463 bool changed = m_offset != offset;
464 m_offset = offset;
472 m_offset = addr
542 std::atomic<lldb::addr_t> m_offset; \/\/\/< Offset into section if \\a m_section_wp is valid... member in class:lldb_private::Address
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugAbbrev.h 30 m_offset(DW_INVALID_OFFSET),
37 m_offset(offset),
44 dw_offset_t GetOffset() const { return m_offset; }
52 dw_offset_t m_offset; member in class:DWARFAbbreviationDeclarationSet

Completed in 287 milliseconds

1 2 3 4