Symbol: fPointCount
src/apps/icon-o-matic/import_export/flat_icon/FlatIconExporter.cpp
179
fPointCount = 0;
src/apps/icon-o-matic/import_export/flat_icon/FlatIconExporter.cpp
340
fPointCount += 3;
src/apps/icon-o-matic/import_export/flat_icon/FlatIconExporter.cpp
72
fPointCount,
src/apps/icon-o-matic/import_export/flat_icon/FlatIconExporter.h
106
int32 fPointCount;
src/libs/icon/shape/VectorPath.cpp
104
fPointCount(0),
src/libs/icon/shape/VectorPath.cpp
1077
memset((void*)(fPath + fPointCount), 0,
src/libs/icon/shape/VectorPath.cpp
1078
(fAllocCount - fPointCount) * sizeof(control_point));
src/libs/icon/shape/VectorPath.cpp
1084
fPointCount = count;
src/libs/icon/shape/VectorPath.cpp
1087
fPointCount = 0;
src/libs/icon/shape/VectorPath.cpp
120
fPointCount(0),
src/libs/icon/shape/VectorPath.cpp
137
fPointCount(0),
src/libs/icon/shape/VectorPath.cpp
155
for (int32 i = 0; i < fPointCount
src/libs/icon/shape/VectorPath.cpp
243
if (fPointCount > 0) {
src/libs/icon/shape/VectorPath.cpp
247
sizeof(BPoint), true, fPointCount);
src/libs/icon/shape/VectorPath.cpp
250
sizeof(BPoint), true, fPointCount);
src/libs/icon/shape/VectorPath.cpp
254
sizeof(BPoint), true, fPointCount);
src/libs/icon/shape/VectorPath.cpp
258
sizeof(bool), true, fPointCount);
src/libs/icon/shape/VectorPath.cpp
262
for (int32 i = 1; i < fPointCount && ret >= B_OK; i++) {
src/libs/icon/shape/VectorPath.cpp
304
_SetPointCount(from.fPointCount);
src/libs/icon/shape/VectorPath.cpp
307
memcpy((void*)fPath, from.fPath, fPointCount * sizeof(control_point));
src/libs/icon/shape/VectorPath.cpp
312
fPointCount = 0;
src/libs/icon/shape/VectorPath.cpp
327
if (fPointCount != other.fPointCount)
src/libs/icon/shape/VectorPath.cpp
336
for (int32 i = 0; i < fPointCount; i++) {
src/libs/icon/shape/VectorPath.cpp
362
int32 index = fPointCount;
src/libs/icon/shape/VectorPath.cpp
364
if (_SetPointCount(fPointCount + 1)) {
src/libs/icon/shape/VectorPath.cpp
378
int32 index = fPointCount;
src/libs/icon/shape/VectorPath.cpp
380
if (_SetPointCount(fPointCount + 1)) {
src/libs/icon/shape/VectorPath.cpp
395
if (index > fPointCount)
src/libs/icon/shape/VectorPath.cpp
396
index = fPointCount;
src/libs/icon/shape/VectorPath.cpp
398
if (_SetPointCount(fPointCount + 1)) {
src/libs/icon/shape/VectorPath.cpp
400
if (index < fPointCount - 1) {
src/libs/icon/shape/VectorPath.cpp
401
for (int32 i = fPointCount; i > index; i--) {
src/libs/icon/shape/VectorPath.cpp
419
if (index >= 0 && index < fPointCount) {
src/libs/icon/shape/VectorPath.cpp
420
if (index < fPointCount - 1) {
src/libs/icon/shape/VectorPath.cpp
422
for (int32 i = index; i < fPointCount - 1; i++) {
src/libs/icon/shape/VectorPath.cpp
429
fPointCount -= 1;
src/libs/icon/shape/VectorPath.cpp
443
if (index == fPointCount)
src/libs/icon/shape/VectorPath.cpp
445
if (index >= 0 && index < fPointCount) {
src/libs/icon/shape/VectorPath.cpp
464
if (index == fPointCount)
src/libs/icon/shape/VectorPath.cpp
466
if (index >= 0 && index < fPointCount) {
src/libs/icon/shape/VectorPath.cpp
484
if (i == fPointCount)
src/libs/icon/shape/VectorPath.cpp
486
if (i >= 0 && i < fPointCount) {
src/libs/icon/shape/VectorPath.cpp
517
if (i == fPointCount)
src/libs/icon/shape/VectorPath.cpp
519
if (i >= 0 && i < fPointCount) {
src/libs/icon/shape/VectorPath.cpp
554
if (index >= 0 && index < fPointCount) {
src/libs/icon/shape/VectorPath.cpp
569
if (index == fPointCount)
src/libs/icon/shape/VectorPath.cpp
571
if (index >= 0 && index < fPointCount) {
src/libs/icon/shape/VectorPath.cpp
582
if (index == fPointCount)
src/libs/icon/shape/VectorPath.cpp
584
if (index >= 0 && index < fPointCount) {
src/libs/icon/shape/VectorPath.cpp
595
if (index == fPointCount)
src/libs/icon/shape/VectorPath.cpp
597
if (index >= 0 && index < fPointCount) {
src/libs/icon/shape/VectorPath.cpp
609
if (index >= 0 && index < fPointCount) {
src/libs/icon/shape/VectorPath.cpp
626
return fPointCount;
src/libs/icon/shape/VectorPath.cpp
677
if (fPointCount > 1) {
src/libs/icon/shape/VectorPath.cpp
682
for (int32 i = 0; i < fPointCount - 1; i++) {
src/libs/icon/shape/VectorPath.cpp
691
float segDist = distance_to_curve(p, fPath[fPointCount - 1].point,
src/libs/icon/shape/VectorPath.cpp
692
fPath[fPointCount - 1].point_out, fPath[0].point_in,
src/libs/icon/shape/VectorPath.cpp
696
*index = fPointCount;
src/libs/icon/shape/VectorPath.cpp
708
if (index >= 0 && index < fPointCount && scale) {
src/libs/icon/shape/VectorPath.cpp
739
if (index >= 0 && index < fPointCount) {
src/libs/icon/shape/VectorPath.cpp
745
if (index < fPointCount - 1) {
src/libs/icon/shape/VectorPath.cpp
754
point.x = fPath[fPointCount - 1].point.x * t1
src/libs/icon/shape/VectorPath.cpp
755
+ fPath[fPointCount - 1].point_out.x * t2
src/libs/icon/shape/VectorPath.cpp
758
point.y = fPath[fPointCount - 1].point.y * t1
src/libs/icon/shape/VectorPath.cpp
759
+ fPath[fPointCount - 1].point_out.y * t2
src/libs/icon/shape/VectorPath.cpp
798
if (get_path_storage(path, fPath, fPointCount, fClosed)) {
src/libs/icon/shape/VectorPath.cpp
808
} else if (fPointCount == 1) {
src/libs/icon/shape/VectorPath.cpp
821
if (fPointCount > 0) {
src/libs/icon/shape/VectorPath.cpp
823
for (int32 i = 0; i < fPointCount; i++) {
src/libs/icon/shape/VectorPath.cpp
849
if (fPointCount > 1) {
src/libs/icon/shape/VectorPath.cpp
855
for (int32 i = 0; i < fPointCount - 1; i++) {
src/libs/icon/shape/VectorPath.cpp
871
iterator->MoveTo(fPath[fPointCount - 1].point);
src/libs/icon/shape/VectorPath.cpp
872
curve.init(fPath[fPointCount - 1].point.x,
src/libs/icon/shape/VectorPath.cpp
873
fPath[fPointCount - 1].point.y,
src/libs/icon/shape/VectorPath.cpp
874
fPath[fPointCount - 1].point_out.x,
src/libs/icon/shape/VectorPath.cpp
875
fPath[fPointCount - 1].point_out.y,
src/libs/icon/shape/VectorPath.cpp
894
if (fPointCount == 0)
src/libs/icon/shape/VectorPath.cpp
900
if (fClosed && fPointCount >= 1) {
src/libs/icon/shape/VectorPath.cpp
901
if (fPath[0].point == fPath[fPointCount - 1].point) {
src/libs/icon/shape/VectorPath.cpp
902
fPath[0].point_in = fPath[fPointCount - 1].point_in;
src/libs/icon/shape/VectorPath.cpp
903
_SetPointCount(fPointCount - 1);
src/libs/icon/shape/VectorPath.cpp
908
for (int32 i = 0; i < fPointCount; i++) {
src/libs/icon/shape/VectorPath.cpp
949
for (int32 i = fPointCount - 1; i >= 0; i--) {
src/libs/icon/shape/VectorPath.cpp
966
for (int32 i = 0; i < fPointCount; i++) {
src/libs/icon/shape/VectorPath.cpp
979
for (int32 i = 0; i < fPointCount; i++) {
src/libs/icon/shape/VectorPath.cpp
991
return get_path_storage(path, fPath, fPointCount, fClosed);
src/libs/icon/shape/VectorPath.h
208
int32 fPointCount;