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

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/scheduler/
TracedTask.cpp 17 "src_file", m_location.fileName(),
18 "src_func", m_location.functionName());
25 , m_location(location)
36 "src_file", m_location.fileName(),
37 "src_func", m_location.functionName());
TracedTask.h 37 TraceLocation m_location; member in class:blink::TracedTask
Scheduler.cpp 29 , m_location(location)
37 "src_file", m_location.fileName(),
38 "src_func", m_location.functionName());
45 TraceLocation m_location; member in class:blink::__anon15964::MainThreadIdleTaskAdapter
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ShadowData.h 40 : 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
ShadowData.cpp 31 return m_location == o.m_location
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutRect.h 47 : 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.x();
178 LayoutPoint m_location; member in class:blink::LayoutRect
    [all...]
FloatRect.h 56 : 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.move(delta.x(), delta.y());
176 FloatPoint m_location; member in class:blink::FloatRect
    [all...]
IntRect.h 55 : 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.move(offset.x(), offset.y());
170 IntPoint m_location; member in class:blink::IntRect
    [all...]
IntRect.cpp 38 : m_location(clampToInteger(r.x()), clampToInteger(r.y()))
44 : m_location(r.x(), r.y())
78 m_location.setX(left);
79 m_location.setY(top);
99 m_location.setX(left);
100 m_location.setY(top);
120 m_location.setX(left);
121 m_location.setY(top);
128 m_location.setX((int)(x() * s));
129 m_location.setY((int)(y() * s))
    [all...]
LayoutRect.cpp 42 : m_location(LayoutPoint(r.location()))
72 m_location = newLocation;
89 m_location = newLocation;
106 m_location = newLocation;
112 m_location.scale(s, s);
118 m_location.scale(xAxisScale, yAxisScale);
FloatRect.cpp 41 FloatRect::FloatRect(const IntRect& r) : m_location(r.location()), m_size(r.size())
45 FloatRect::FloatRect(const LayoutRect& r) : m_location(r.location()), m_size(r.size())
49 FloatRect::FloatRect(const SkRect& r) : m_location(r.fLeft, r.fTop), m_size(r.width(), r.height())
152 m_location.setX(x() * sx);
153 m_location.setY(y() * sy);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLUniformLocation.cpp 40 , m_location(location)
60 return m_location;
WebGLUniformLocation.h 53 GLint m_location; member in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/mac/
FloatRectMac.mm 34 FloatRect::FloatRect(const NSRect& r) : m_location(r.origin), m_size(r.size)
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
FloatRectCG.cpp 34 FloatRect::FloatRect(const CGRect& r) : m_location(r.origin), m_size(r.size)
  /external/lldb/include/lldb/Symbol/
UnwindPlan.h 64 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.expr.length;
237 } m_location; member in class:lldb_private::UnwindPlan::Row::RegisterLocation
    [all...]
Variable.h 107 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
  /external/lldb/source/Symbol/
UnwindPlan.cpp 34 return m_location.offset == rhs.m_location.offset;
37 return m_location.reg_num == rhs.m_location.reg_num;
41 if (m_location.expr.length == rhs.m_location.expr.length)
42 return !memcmp (m_location.expr.opcodes, rhs.m_location.expr.opcodes, m_location.expr.length);
55 m_location.expr.opcodes = opcodes
    [all...]
Variable.cpp 55 m_location(location),
136 if (m_location.IsValid())
140 if (m_location.IsLocationList())
154 m_location.GetDescription(s, lldb::eDescriptionLevelBrief, loclist_base_addr, abi);
213 if (!m_location.IsLocationList())
232 return m_location.LocationListContainsAddress (loclist_base_load_addr,
251 if (!m_location.IsLocationList())
265 return m_location.LocationListContainsAddress (loclist_base_file_addr,
504 return m_location.DumpLocationForAddress (s,
511 return m_location.DumpLocationForAddress (s,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
KeyboardEvent.cpp 99 : m_location(DOM_KEY_LOCATION_STANDARD)
109 , m_location(keyLocationCode(key))
117 , m_location(initializer.location)
127 , m_location(location)
146 m_location = location;
KeyboardEvent.h 88 unsigned location() const { return m_location; }
114 unsigned m_location; member in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterOperation.h 277 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
FilterOperation.cpp 133 blink::blend(IntPoint(), m_location, progress),
140 blink::blend(fromOp->location(), m_location, progress),
  /external/chromium_org/third_party/WebKit/Source/platform/
Timer.h 59 const TraceLocation& location() const { return m_location; }
105 TraceLocation m_location; member in class:blink::TimerBase
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerGlobalScope.cpp 154 if (!m_location)
155 m_location = WorkerLocation::create(m_url);
156 return m_location.get();
331 visitor->trace(m_location);

Completed in 448 milliseconds

1 2