OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LayoutPoint
(Results
1 - 2
of
2
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutPoint.java
27
* A {@link
LayoutPoint
} is a coordinate in the Android canvas (in other words,
31
public final class
LayoutPoint
{
42
* Constructs a new {@link
LayoutPoint
} from the given event. The event
48
* @param event The mouse event to construct the {@link
LayoutPoint
}
50
* @return A {@link
LayoutPoint
} which corresponds to the given
53
public static
LayoutPoint
create(LayoutCanvas canvas, MouseEvent event) {
61
* Constructs a new {@link
LayoutPoint
} from the given event. The event
67
* @param event The mouse event to construct the {@link
LayoutPoint
}
69
* @return A {@link
LayoutPoint
} which corresponds to the given
72
public static
LayoutPoint
create(LayoutCanvas canvas, DragSourceEvent event)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutPoint.h
40
class
LayoutPoint
{
42
LayoutPoint
() { }
43
LayoutPoint
(LayoutUnit x, LayoutUnit y) : m_x(x), m_y(y) { }
44
LayoutPoint
(const IntPoint& point) : m_x(point.x()), m_y(point.y()) { }
45
explicit
LayoutPoint
(const FloatPoint& size) : m_x(size.x()), m_y(size.y()) { }
46
explicit
LayoutPoint
(const LayoutSize& size) : m_x(size.width()), m_y(size.height()) { }
48
static
LayoutPoint
zero() { return
LayoutPoint
(); }
57
void moveBy(const
LayoutPoint
& offset) { move(offset.x(), offset.y()); }
65
LayoutPoint
expandedTo(const LayoutPoint& other) cons
[
all
...]
Completed in 29 milliseconds