OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:points_
(Results
1 - 9
of
9
) sorted by null
/frameworks/base/media/mca/filterfw/native/core/
geometry.h
53
Quad() :
points_
(4) {}
57
:
points_
(4) {
58
points_
[0] = p0;
59
points_
[1] = p1;
60
points_
[2] = p2;
61
points_
[3] = p3;
64
const std::vector<Point>& points() const { return
points_
; }
68
std::vector<Point>
points_
;
member in class:android::filterfw::Quad
geometry.cpp
132
ALOG_ASSERT(ix < static_cast<int>(
points_
.size()), "Access out of bounds");
133
return
points_
[ix];
/frameworks/base/media/mca/filterpacks/native/base/
geometry.h
53
Quad() :
points_
(4) {}
57
:
points_
(4) {
58
points_
[0] = p0;
59
points_
[1] = p1;
60
points_
[2] = p2;
61
points_
[3] = p3;
64
const std::vector<Point>& points() const { return
points_
; }
68
std::vector<Point>
points_
;
member in class:android::filterfw::Quad
geometry.cpp
131
ALOG_ASSERT(ix < static_cast<int>(
points_
.size()), "Access out of bounds");
132
return
points_
[ix];
148
points_
[0] = center - dx - dy;
149
points_
[1] = center + dx - dy;
150
points_
[2] = center - dx + dy;
151
points_
[3] = center + dx + dy;
/external/chromium_org/ash/touch/
touch_hud_projection.h
38
std::map<int, TouchPointView*>
points_
;
member in class:ash::internal::TouchHudProjection
touch_hud_projection.cc
148
for (std::map<int, TouchPointView*>::iterator iter =
points_
.begin();
149
iter !=
points_
.end(); iter++)
151
points_
.clear();
159
points_
.insert(std::make_pair(event->touch_id(), point));
168
points_
.find(event->touch_id());
169
if (iter !=
points_
.end()) {
173
points_
.erase(iter);
touch_observer_hud_unittest.cc
292
return GetInternalTouchHudProjection()->
points_
.size();
/external/chromium_org/ui/events/gestures/
gesture_sequence.cc
511
GesturePoint* new_point = &
points_
[event.touch_id()];
765
GesturePoint& iter_point =
points_
[i];
795
if (!
points_
[i].in_use())
801
const gfx::Point& point =
points_
[i].last_touch_position();
813
if (
points_
[i].in_use())
814
points_
[i].ResetVelocity();
842
return
points_
[event.touch_id()];
848
GesturePoint& point =
points_
[i];
[
all
...]
gesture_sequence.h
64
const GesturePoint* points() const { return
points_
; }
83
// Do a linear scan through
points_
to find the GesturePoint
232
GesturePoint
points_
[kMaxGesturePoints];
member in class:ui::GestureSequence
Completed in 1056 milliseconds