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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/editing/
SplitTextNodeContainingElementCommand.h 48 int m_offset; member in class:blink::FINAL
DeleteFromTextNodeCommand.h 51 unsigned m_offset; member in class:blink::FINAL
InsertIntoTextNodeCommand.h 51 unsigned m_offset; member in class:blink::FINAL
SplitTextNodeCommand.h 54 unsigned m_offset; member in class:blink::FINAL
RenderedPosition.h 81 bool atLeftmostOffsetInBox() const { return m_inlineBox && m_offset == m_inlineBox->caretLeftmostOffset(); }
82 bool atRightmostOffsetInBox() const { return m_inlineBox && m_offset == m_inlineBox->caretRightmostOffset(); }
88 int m_offset; member in class:blink::RenderedPosition
100 , m_offset(0)
109 , m_offset(offset)
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGStopElement.h 37 SVGAnimatedNumber* offset() { return m_offset.get(); }
49 RefPtr<SVGAnimatedNumber> m_offset; member in class:blink::FINAL
SVGComponentTransferFunctionElement.h 44 SVGAnimatedNumber* offset() { return m_offset.get(); }
62 RefPtr<SVGAnimatedNumber> m_offset; member in class:blink::SVGComponentTransferFunctionElement
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSReflectValue.h 46 CSSPrimitiveValue* offset() const { return m_offset.get(); }
59 , m_offset(offset)
65 RefPtrWillBeMember<CSSPrimitiveValue> m_offset; member in class:blink::CSSReflectValue
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
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:blink::MediaQueryInputStream
  /external/chromium_org/third_party/WebKit/Source/platform/
Clock.h 56 double m_offset; member in class:blink::Clock
  /external/opencv/otherlibs/highgui/
grfmt_pxm.h 66 int m_offset; member in class:GrFmtPxMReader
grfmt_bmp.h 73 int m_offset; member in class:GrFmtBmpReader
grfmt_sunras.h 79 int m_offset; member in class:GrFmtSunRasterReader
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderGeometryMapStep.h 42 , m_offset(o.m_offset)
60 LayoutSize m_offset; member in struct:blink::RenderGeometryMapStep
  /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;
57 int offset() const { return m_offset; }
58 void setOffset(int offset) { m_offset = offset; }
64 int m_offset; member in class:blink::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:blink::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:blink::TextRunIterator
    [all...]
  /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/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
  /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:blink::RasterShapeIntervals
    [all...]
  /external/lldb/include/lldb/Symbol/
ObjectContainer.h 58 m_offset (file_offset),
129 { return m_offset; }
226 lldb::addr_t m_offset; ///< The offset in bytes into the file, or the address in memory member in class:lldb_private::ObjectContainer
  /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:blink::Keyframe::PropertySpecificKeyframe
83 : m_offset(nullValue())
89 : m_offset(offset)
95 double m_offset; member in class:blink::Keyframe
  /external/chromium_org/third_party/WebKit/Source/core/frame/
PinchViewport.h 83 FloatPoint location() const { return m_offset; }
120 virtual IntPoint scrollPosition() const OVERRIDE { return flooredIntPoint(m_offset); }
159 FloatPoint m_offset; member in class:blink::FINAL
  /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/deqp/framework/opengl/
gluTexture.hpp 274 size_t getOffset (void) const { return m_offset; }
293 size_t m_offset; member in class:glu::TextureBuffer

Completed in 512 milliseconds

1 2 3