Symbol: control_point
src/apps/icon-o-matic/shape/PathManipulator.cpp
1698
BStackOrHeapArray<control_point, 64> points(count);
src/apps/icon-o-matic/shape/commands/NudgePointsCommand.cpp
42
const control_point* points,
src/apps/icon-o-matic/shape/commands/NudgePointsCommand.cpp
60
fPoints = new (nothrow) control_point[fCount];
src/apps/icon-o-matic/shape/commands/NudgePointsCommand.cpp
61
memcpy((void*)fPoints, points, fCount * sizeof(control_point));
src/apps/icon-o-matic/shape/commands/NudgePointsCommand.h
20
struct control_point;
src/apps/icon-o-matic/shape/commands/NudgePointsCommand.h
31
const control_point* points,
src/apps/icon-o-matic/shape/commands/NudgePointsCommand.h
48
control_point* fPoints;
src/apps/icon-o-matic/shape/commands/TransformPointsCommand.cpp
25
const control_point* points,
src/apps/icon-o-matic/shape/commands/TransformPointsCommand.cpp
46
new (nothrow) control_point[count] : NULL),
src/apps/icon-o-matic/shape/commands/TransformPointsCommand.cpp
53
memcpy((void*)fPoints, points, fCount * sizeof(control_point));
src/apps/icon-o-matic/shape/commands/TransformPointsCommand.h
18
struct control_point;
src/apps/icon-o-matic/shape/commands/TransformPointsCommand.h
34
const control_point* points,
src/apps/icon-o-matic/shape/commands/TransformPointsCommand.h
65
control_point* fPoints;
src/apps/icon-o-matic/transformable/TransformPointsBox.cpp
32
fPoints(count > 0 ? new (nothrow) control_point[count] : NULL)
src/apps/icon-o-matic/transformable/TransformPointsBox.cpp
60
memset((void*)&fPoints[i], 0, sizeof(control_point));
src/apps/icon-o-matic/transformable/TransformPointsBox.h
21
struct control_point;
src/apps/icon-o-matic/transformable/TransformPointsBox.h
55
control_point* fPoints;
src/libs/icon/shape/VectorPath.cpp
1072
fPath = obj_renew(fPath, control_point, fAllocCount);
src/libs/icon/shape/VectorPath.cpp
1074
fPath = obj_new(control_point, fAllocCount);
src/libs/icon/shape/VectorPath.cpp
1078
(fAllocCount - fPointCount) * sizeof(control_point));
src/libs/icon/shape/VectorPath.cpp
149
memset((void*)fPath, 0, fAllocCount * sizeof(control_point));
src/libs/icon/shape/VectorPath.cpp
307
memcpy((void*)fPath, from.fPath, fPointCount * sizeof(control_point));
src/libs/icon/shape/VectorPath.cpp
51
get_path_storage(agg::path_storage& path, const control_point* points,
src/libs/icon/shape/VectorPath.h
205
control_point* fPath;