Searched defs:m_offset (Results 1 - 25 of 52) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGStopElement.h37 SVGAnimatedNumber* offset() { return m_offset.get(); }
49 RefPtr<SVGAnimatedNumber> m_offset; member in class:blink::FINAL
H A DSVGComponentTransferFunctionElement.h44 SVGAnimatedNumber* offset() { return m_offset.get(); }
62 RefPtr<SVGAnimatedNumber> m_offset; member in class:blink::SVGComponentTransferFunctionElement
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSplitTextNodeCommand.h54 unsigned m_offset; member in class:blink::FINAL
H A DSplitTextNodeContainingElementCommand.h48 int m_offset; member in class:blink::FINAL
H A DDeleteFromTextNodeCommand.h51 unsigned m_offset; member in class:blink::FINAL
H A DInsertIntoTextNodeCommand.h51 unsigned m_offset; member in class:blink::FINAL
H A DRenderedPosition.h81 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/opencv/otherlibs/highgui/
H A Dgrfmt_pxm.h66 int m_offset; member in class:GrFmtPxMReader
H A Dgrfmt_bmp.h73 int m_offset; member in class:GrFmtBmpReader
H A Dgrfmt_sunras.h79 int m_offset; member in class:GrFmtSunRasterReader
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSReflectValue.h46 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/
H A DMediaQueryInputStream.h34 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/core/rendering/style/
H A DOutlineValue.h36 : 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
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)
65 Length m_offset; member in class:blink::StyleReflection
/external/chromium_org/third_party/WebKit/Source/platform/
H A DClock.h56 double m_offset; member in class:blink::Clock
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextRunIterator.h40 , 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
72 int m_offset; member in class:blink::TextRunIterator
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringView.h41 : 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/core/rendering/
H A DRenderGeometryMapStep.h42 , m_offset(o.m_offset)
60 LayoutSize m_offset; member in struct:blink::RenderGeometryMapStep
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAbbrev.h30 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
H A DDWARFDebugArangeSet.h40 void SetOffset(uint32_t offset) { m_offset = offset; }
71 uint32_t m_offset; member in class:DWARFDebugArangeSet
H A DDWARFDebugPubnamesSet.h60 dw_offset_t GetOffset() const { return m_offset; }
61 void SetOffset(dw_offset_t offset) { m_offset = offset; }
88 dw_offset_t m_offset; member in class:DWARFDebugPubnamesSet
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DPinchViewport.h83 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/core/rendering/shapes/
H A DRasterShape.h44 : 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
77 int m_offset; member in class:blink::RasterShapeIntervals
[all...]
/external/deqp/modules/glshared/
H A DglsTextureBufferCase.hpp88 const size_t m_offset; member in class:deqp::gls::TextureBufferCase
/external/lldb/include/lldb/Symbol/
H A DObjectContainer.h58 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

Completed in 2134 milliseconds

123