Symbol: fShapes
src/apps/fontdemo/FontDemoView.cpp
130
FillShape(fShapes[i]);
src/apps/fontdemo/FontDemoView.cpp
132
StrokeShape(fShapes[i]);
src/apps/fontdemo/FontDemoView.cpp
335
free(fShapes);
src/apps/fontdemo/FontDemoView.cpp
400
fShapes = (BShape**)malloc(sizeof(BShape*) * size);
src/apps/fontdemo/FontDemoView.cpp
403
fShapes[i] = new BShape();
src/apps/fontdemo/FontDemoView.cpp
52
free(fShapes);
src/apps/fontdemo/FontDemoView.cpp
82
fFont.GetGlyphShapes(fString, size, fShapes);
src/apps/fontdemo/FontDemoView.h
65
BShape** fShapes;
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
100
if (!fShapes[i])
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
104
fShapes[i]->LoadFrom(&fOriginalTransformations[
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
107
Transformable transform(*(fShapes[i]));
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
112
_ApplyTransformation(fShapes[i], transform);
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
36
fShapes(shapes && count > 0 ? new (nothrow) PathSourceShape*[count] : NULL),
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
42
if (!fShapes || !fOriginalTransformations)
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
45
memcpy(fShapes, shapes, sizeof(PathSourceShape*) * fCount);
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
50
if (!fShapes[i])
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
52
if (!fShapes[i]->IsIdentity())
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
54
fShapes[i]->StoreTo(&fOriginalTransformations[
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
59
delete[] fShapes;
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
60
fShapes = NULL;
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
69
delete[] fShapes;
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
77
return fShapes && fOriginalTransformations ? B_OK : B_NO_INIT;
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
85
if (!fShapes[i] || fShapes[i]->IsIdentity())
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
88
_ApplyTransformation(fShapes[i], *(fShapes[i]));
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
89
fShapes[i]->Reset();
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.h
42
PathSourceShape** fShapes;
src/apps/icon-o-matic/shape/commands/RemovePathsCommand.cpp
106
int32 shapeCount = fShapes[i].CountItems();
src/apps/icon-o-matic/shape/commands/RemovePathsCommand.cpp
108
PathSourceShape* shape = (PathSourceShape*)fShapes[i].ItemAtFast(j);
src/apps/icon-o-matic/shape/commands/RemovePathsCommand.cpp
37
if (!fShapes)
src/apps/icon-o-matic/shape/commands/RemovePathsCommand.cpp
48
fShapes[i].AddItem((void*)shape);
src/apps/icon-o-matic/shape/commands/RemovePathsCommand.cpp
57
delete[] fShapes;
src/apps/icon-o-matic/shape/commands/RemovePathsCommand.cpp
64
return fShapes ? B_OK : B_NO_INIT;
src/apps/icon-o-matic/shape/commands/RemovePathsCommand.cpp
81
int32 shapeCount = fShapes[i].CountItems();
src/apps/icon-o-matic/shape/commands/RemovePathsCommand.cpp
83
PathSourceShape* shape = (PathSourceShape*)fShapes[i].ItemAtFast(j);
src/apps/icon-o-matic/shape/commands/RemovePathsCommand.h
44
BList* fShapes;
src/apps/icon-o-matic/style/RemoveStylesCommand.cpp
104
int32 shapeCount = fShapes[i].CountItems();
src/apps/icon-o-matic/style/RemoveStylesCommand.cpp
106
PathSourceShape* shape = (PathSourceShape*)fShapes[i].ItemAtFast(j);
src/apps/icon-o-matic/style/RemoveStylesCommand.cpp
34
if (!fShapes)
src/apps/icon-o-matic/style/RemoveStylesCommand.cpp
45
fShapes[i].AddItem((void*)shape);
src/apps/icon-o-matic/style/RemoveStylesCommand.cpp
54
delete[] fShapes;
src/apps/icon-o-matic/style/RemoveStylesCommand.cpp
61
return fShapes ? B_OK : B_NO_INIT;
src/apps/icon-o-matic/style/RemoveStylesCommand.cpp
78
int32 shapeCount = fShapes[i].CountItems();
src/apps/icon-o-matic/style/RemoveStylesCommand.cpp
80
PathSourceShape* shape = (PathSourceShape*)fShapes[i].ItemAtFast(j);
src/apps/icon-o-matic/style/RemoveStylesCommand.h
42
BList* fShapes;
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
114
if (!fShapes[i])
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
117
box = box | fShapes[i]->Bounds();
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
118
fShapes[i]->StoreTo(&fOriginals[i * Transformable::matrix_size]);
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
136
objects[i] = fShapes[i];
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
27
fShapes(shapes && count > 0 ? new Shape*[count] : NULL),
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
34
if (fShapes != NULL) {
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
39
memcpy(fShapes, shapes, fCount * sizeof(Shape*));
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
42
if (fShapes[i]) {
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
43
fShapes[i]->AcquireReference();
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
44
fShapes[i]->AddObserver(this);
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
49
ObjectChanged(fShapes[0]);
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
58
if (fShapes) {
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
60
if (fShapes[i]) {
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
61
fShapes[i]->RemoveObserver(this);
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
62
fShapes[i]->ReleaseReference();
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
65
delete[] fShapes;
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
83
if (!deep || !fShapes)
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
87
if (!fShapes[i])
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
90
fShapes[i]->RemoveObserver(this);
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
91
fShapes[i]->SuspendNotifications(true);
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
94
fShapes[i]->LoadFrom(&fOriginals[i * Transformable::matrix_size]);
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
96
fShapes[i]->Multiply(*this);
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
98
fShapes[i]->SuspendNotifications(false);
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
99
fShapes[i]->AddObserver(this);
src/apps/icon-o-matic/transformable/TransformShapesBox.h
40
{ return fShapes; }
src/apps/icon-o-matic/transformable/TransformShapesBox.h
45
Shape** fShapes;
src/libs/icon/Icon.cpp
119
fShapes.MakeEmpty();
src/libs/icon/Icon.cpp
121
fShapes.RemoveListener(this);
src/libs/icon/Icon.cpp
194
fShapes.MakeEmpty();
src/libs/icon/Icon.cpp
34
fShapes(true)
src/libs/icon/Icon.cpp
40
fShapes.AddListener(this);
src/libs/icon/Icon.cpp
48
fShapes(true)
src/libs/icon/Icon.cpp
54
fShapes.AddListener(this);
src/libs/icon/Icon.cpp
77
int32 shapeCount = other.fShapes.CountItems();
src/libs/icon/Icon.cpp
79
Shape* shape = other.fShapes.ItemAtFast(i);
src/libs/icon/Icon.cpp
81
if (!clone || !fShapes.AddItem(clone)) {
src/libs/icon/Icon.h
68
{ return &fShapes; }
src/libs/icon/Icon.h
70
{ return &fShapes; }
src/libs/icon/Icon.h
79
Container<Shape> fShapes;