Searched defs:m_location (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLUniformLocation.h53 GLint m_location; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/platform/scheduler/
H A DTracedTask.h37 TraceLocation m_location; member in class:blink::TracedTask
H A DScheduler.cpp29 , m_location(location)
37 "src_file", m_location.fileName(),
38 "src_func", m_location.functionName());
45 TraceLocation m_location; member in class:blink::__anon11339::MainThreadIdleTaskAdapter
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DShadowData.h40 : m_location(location)
53 float x() const { return m_location.x(); }
54 float y() const { return m_location.y(); }
55 FloatPoint location() const { return m_location; }
62 FloatPoint m_location; member in class:blink::ShadowData
/external/lldb/include/lldb/Symbol/
H A DVariable.h107 return m_location;
113 return m_location;
173 DWARFExpression m_location; // The location of this variable that can be fed to DWARFExpression::Evaluate() member in class:lldb_private::Variable
176 m_loc_is_const_data:1; // The m_location expression contains the constant variable value data, not a DWARF location
H A DUnwindPlan.h64 m_location()
141 m_location.offset = offset;
148 m_location.offset = offset;
155 m_location.reg_num = reg_num;
162 return m_location.reg_num;
176 return m_location.offset;
185 *opcodes = m_location.expr.opcodes;
186 len = m_location.expr.length;
205 return m_location.expr.opcodes;
213 return m_location
237 } m_location; member in class:lldb_private::UnwindPlan::Row::RegisterLocation
[all...]
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DKeyboardEvent.h88 unsigned location() const { return m_location; }
114 unsigned m_location; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerGlobalScope.h158 mutable RefPtrWillBeMember<WorkerLocation> m_location; member in class:blink::WorkerGlobalScope
/external/chromium_org/third_party/WebKit/Source/platform/
H A DTimer.h59 const TraceLocation& location() const { return m_location; }
105 TraceLocation m_location; member in class:blink::TimerBase
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DLocalDOMWindow.h372 mutable RefPtrWillBeMember<Location> m_location; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DIntRect.h55 : m_location(location), m_size(size) { }
57 : m_location(IntPoint(x, y)), m_size(IntSize(width, height)) { }
62 IntPoint location() const { return m_location; }
65 void setLocation(const IntPoint& location) { m_location = location; }
68 int x() const { return m_location.x(); }
69 int y() const { return m_location.y(); }
75 void setX(int x) { m_location.setX(x); }
76 void setY(int y) { m_location.setY(y); }
86 void move(const IntSize& size) { m_location += size; }
87 void moveBy(const IntPoint& offset) { m_location
170 IntPoint m_location; member in class:blink::IntRect
[all...]
H A DFloatRect.h56 : m_location(location), m_size(size) { }
58 : m_location(FloatPoint(x, y)), m_size(FloatSize(width, height)) { }
65 FloatPoint location() const { return m_location; }
68 void setLocation(const FloatPoint& location) { m_location = location; }
71 float x() const { return m_location.x(); }
72 float y() const { return m_location.y(); }
78 void setX(float x) { m_location.setX(x); }
79 void setY(float y) { m_location.setY(y); }
89 void move(const FloatSize& delta) { m_location += delta; }
90 void moveBy(const FloatPoint& delta) { m_location
176 FloatPoint m_location; member in class:blink::FloatRect
[all...]
H A DLayoutRect.h47 : m_location(location), m_size(size) { }
49 : m_location(LayoutPoint(x, y)), m_size(LayoutSize(width, height)) { }
51 : m_location(location), m_size(size) { }
52 LayoutRect(const IntRect& rect) : m_location(rect.location()), m_size(rect.size()) { }
56 LayoutPoint location() const { return m_location; }
59 IntPoint pixelSnappedLocation() const { return roundedIntPoint(m_location); }
60 IntSize pixelSnappedSize() const { return IntSize(snapSizeToPixel(m_size.width(), m_location.x()), snapSizeToPixel(m_size.height(), m_location.y())); }
62 void setLocation(const LayoutPoint& location) { m_location = location; }
65 ALWAYS_INLINE LayoutUnit x() const { return m_location
178 LayoutPoint m_location; member in class:blink::LayoutRect
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFilterOperation.h277 int x() const { return m_location.x(); }
278 int y() const { return m_location.y(); }
279 IntPoint location() const { return m_location; }
294 return m_location == other->m_location && m_stdDeviation == other->m_stdDeviation && m_color == other->m_color;
299 , m_location(location)
305 IntPoint m_location; // FIXME: should location be in Lengths? member in class:blink::DropShadowFilterOperation
/external/deqp/modules/glshared/
H A DglsAttributeLocationTests.hpp122 deUint32 getLocation (void) const { return m_location; }
126 deUint32 m_location; member in class:deqp::gls::AttributeLocationTestUtil::Bind
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
H A DFlyoutControlComposite.java992 private final int m_location; field in class:FlyoutControlComposite.DockAction
1001 m_location = location;
1011 return getDockLocation() == m_location;
1016 setDockLocation(m_location);
/external/lldb/source/DataFormatters/
H A DCXXFormatterFunctions.cpp262 m_location(0),
288 m_location = l;
295 return m_location;
378 uint64_t m_location; member in class:ReadUTFBufferAndDumpToStreamOptions
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorCSSAgent.cpp331 , m_location(location)
349 CSSStyleRule* cssStyleRule = m_styleSheet->addRule(m_ruleText, m_location, exceptionState);
369 SourceRange m_location; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderInline.cpp801 HitTestCulledInlinesGeneratorContext(Region& region, const HitTestLocation& location) : m_intersected(false), m_region(region), m_location(location) { }
804 m_intersected = m_intersected || m_location.intersects(rect);
811 const HitTestLocation& m_location; member in class:blink::__anon11139::HitTestCulledInlinesGeneratorContext

Completed in 471 milliseconds