OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LineSegment
(Results
1 - 13
of
13
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
LineWidth.h
43
struct
LineSegment
;
81
const
LineSegment
* m_segment;
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
Shape.h
42
struct
LineSegment
{
43
LineSegment
(float logicalLeft, float logicalRight)
53
typedef Vector<
LineSegment
> SegmentList;
BoxShape.cpp
84
result.append(
LineSegment
(marginBounds.rect().x(), marginBounds.rect().maxX()));
104
result.append(
LineSegment
(x1, x2));
119
result.append(
LineSegment
(rect.x(), rect.maxX()));
ShapeInsideInfo.h
83
const
LineSegment
* currentSegment() const
RectangleShape.cpp
108
result.append(
LineSegment
(x1, x2));
156
result.append(
LineSegment
(x1, x2));
PolygonShape.cpp
390
result.append(
LineSegment
(interval.x1(), interval.x2()));
418
result.append(
LineSegment
(interval.x1(), interval.x2()));
RasterShape.cpp
280
result.append(
LineSegment
(intervals[i].x1(), intervals[i].x2() + 1));
/external/replicaisland/src/com/replica/replicaisland/
CollisionSystem.java
48
private FixedSizeArray<
LineSegment
> mTemporarySegments;
49
private FixedSizeArray<
LineSegment
> mPendingTemporarySegments;
59
mTemporarySegments = new FixedSizeArray<
LineSegment
>(MAX_TEMPORARY_SEGMENTS);
60
mPendingTemporarySegments = new FixedSizeArray<
LineSegment
>(MAX_TEMPORARY_SEGMENTS);
237
LineSegment
newSegment = mSegmentPool.allocate();
260
FixedSizeArray<
LineSegment
> swap = mTemporarySegments;
431
protected static boolean testSegmentAgainstList(FixedSizeArray<
LineSegment
> segments,
443
LineSegment
segment = (
LineSegment
)segmentArray[x];
475
protected static boolean testBoxAgainstList(FixedSizeArray<
LineSegment
> segments,
[
all
...]
/external/jmonkeyengine/engine/src/core/com/jme3/math/
LineSegment.java
39
* <p>
LineSegment
represents a segment in the space. This is a portion of a Line
41
* <p>A
LineSegment
is defined by an origin, a direction and an extent (or length).
44
* It is also possible to retrieve both end points of the segment {@link
LineSegment
#getPositiveEnd(Vector3f)}
45
* and {@link
LineSegment
#getNegativeEnd(Vector3f)}. There are also methods to check whether
52
public class
LineSegment
implements Cloneable, Savable, java.io.Serializable {
60
public
LineSegment
() {
65
public
LineSegment
(
LineSegment
ls) {
72
* <p>Creates a new
LineSegment
with the given origin, direction and extent.</p>
73
* <p>Note that the origin is not one of the ends of the
LineSegment
, but its center.</p>
[
all
...]
/external/chromium_org/ui/gfx/
render_text.h
116
struct
LineSegment
{
117
LineSegment
();
118
~
LineSegment
();
136
std::vector<
LineSegment
> segments;
render_text_win.cc
233
const internal::
LineSegment
* previous_segment = NULL;
237
const internal::
LineSegment
* segment = &lines[i].segments[j];
371
LineSegment
* SegmentFromHandle(const SegmentHandle& handle) {
404
LineSegment
* segment = SegmentFromHandle(rtl_segments_[i - 1]);
450
LineSegment
segment;
819
const internal::
LineSegment
* segment = &line.segments[j];
[
all
...]
render_text.cc
332
LineSegment
::
LineSegment
() : run(0) {}
334
LineSegment
::~
LineSegment
() {}
[
all
...]
render_text_unittest.cc
[
all
...]
Completed in 365 milliseconds