Symbol: fIndices
headers/private/debugger/types/ArrayIndexPath.h
39
IndexArray fIndices;
headers/private/debugger/types/ArrayIndexPath.h
46
return fIndices.Count();
headers/private/debugger/types/ArrayIndexPath.h
53
return index >= 0 && index < fIndices.Count()
headers/private/debugger/types/ArrayIndexPath.h
54
? fIndices.ElementAt(index) : -1;
headers/private/debugger/types/ArrayIndexPath.h
61
return fIndices.Add(index);
headers/private/debugger/types/ArrayIndexPath.h
68
if (at >= 0 && at < fIndices.Count())
headers/private/debugger/types/ArrayIndexPath.h
69
fIndices[at] = newIndex;
src/add-ons/kernel/file_systems/packagefs/volume/Volume.cpp
198
Index* index = fIndices.Clear(true);
src/add-ons/kernel/file_systems/packagefs/volume/Volume.cpp
250
error = fIndices.Init();
src/add-ons/kernel/file_systems/packagefs/volume/Volume.cpp
266
fIndices.Insert(index);
src/add-ons/kernel/file_systems/packagefs/volume/Volume.cpp
281
fIndices.Insert(index);
src/add-ons/kernel/file_systems/packagefs/volume/Volume.cpp
296
fIndices.Insert(index);
src/add-ons/kernel/file_systems/packagefs/volume/Volume.cpp
311
fIndices.Insert(index);
src/add-ons/kernel/file_systems/packagefs/volume/Volume.h
203
IndexHashTable fIndices;
src/add-ons/kernel/file_systems/packagefs/volume/Volume.h
91
{ return fIndices.Lookup(name); }
src/add-ons/kernel/file_systems/packagefs/volume/Volume.h
93
{ return fIndices.GetIterator(); }
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.cpp
118
if (fIndices.AddItem(index)) {
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.cpp
145
int32 i = fIndices.IndexOf(index);
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.cpp
147
fIndices.RemoveItem(i);
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.cpp
160
int32 count = fIndices.CountItems();
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.cpp
162
Index *index = fIndices.ItemAt(i);
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.cpp
27
if (!fIndices.AddItem(fNameIndex)
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.cpp
28
|| !fIndices.AddItem(fLastModifiedIndex)
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.cpp
29
|| !fIndices.AddItem(fSizeIndex)) {
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.cpp
30
fIndices.MakeEmpty();
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.cpp
46
fIndices.RemoveItem(fNameIndex);
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.cpp
50
fIndices.RemoveItem(fLastModifiedIndex);
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.cpp
54
fIndices.RemoveItem(fSizeIndex);
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.cpp
58
int32 count = fIndices.CountItems();
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.cpp
60
delete fIndices.ItemAt(i);
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.h
40
Index *IndexAt(int32 index) const { return fIndices.ItemAt(index); }
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.h
47
List<Index*> fIndices;
src/apps/icon-o-matic/generic/command/MoveCommand.h
101
if (!fContainer || !fItems || !fIndices)
src/apps/icon-o-matic/generic/command/MoveCommand.h
107
int32 index = fIndices[0];
src/apps/icon-o-matic/generic/command/MoveCommand.h
120
if (fIndices[i] != index + 1) {
src/apps/icon-o-matic/generic/command/MoveCommand.h
124
index = fIndices[i];
src/apps/icon-o-matic/generic/command/MoveCommand.h
182
if (fItems[i] && !fContainer->AddItem(fItems[i], fIndices[i])) {
src/apps/icon-o-matic/generic/command/MoveCommand.h
55
int32* fIndices;
src/apps/icon-o-matic/generic/command/MoveCommand.h
69
fIndices(count > 0 ? new (nothrow) int32[count] : NULL),
src/apps/icon-o-matic/generic/command/MoveCommand.h
73
if (!fContainer || !fItems || !fIndices)
src/apps/icon-o-matic/generic/command/MoveCommand.h
81
fIndices[i] = fContainer->IndexOf(fItems[i]);
src/apps/icon-o-matic/generic/command/MoveCommand.h
82
if (fIndices[i] >= 0 && fIndices[i] < fToIndex)
src/apps/icon-o-matic/generic/command/MoveCommand.h
93
delete[] fIndices;
src/apps/icon-o-matic/generic/command/RemoveCommand.h
129
if (fItems[i] && !fContainer->AddItem(fItems[i], fIndices[i])) {
src/apps/icon-o-matic/generic/command/RemoveCommand.h
55
int32* fIndices;
src/apps/icon-o-matic/generic/command/RemoveCommand.h
67
fIndices(count > 0 ? new (nothrow) int32[count] : NULL),
src/apps/icon-o-matic/generic/command/RemoveCommand.h
71
if (!fContainer || !fItems || !fIndices)
src/apps/icon-o-matic/generic/command/RemoveCommand.h
74
memcpy(fIndices, indices, sizeof(int32) * fCount);
src/apps/icon-o-matic/generic/command/RemoveCommand.h
76
fItems[i] = fContainer->ItemAt(fIndices[i]);
src/apps/icon-o-matic/generic/command/RemoveCommand.h
90
delete[] fIndices;
src/apps/icon-o-matic/generic/command/RemoveCommand.h
98
return fContainer && fItems && fIndices ? B_OK : B_NO_INIT;
src/apps/icon-o-matic/shape/commands/NudgePointsCommand.cpp
51
fIndices(NULL),
src/apps/icon-o-matic/shape/commands/NudgePointsCommand.cpp
56
fIndices = new (nothrow) int32[fCount];
src/apps/icon-o-matic/shape/commands/NudgePointsCommand.cpp
57
memcpy(fIndices, indices, fCount * sizeof(int32));
src/apps/icon-o-matic/shape/commands/NudgePointsCommand.cpp
68
delete[] fIndices;
src/apps/icon-o-matic/shape/commands/NudgePointsCommand.cpp
76
if (fPath && fIndices && fPoints)
src/apps/icon-o-matic/shape/commands/NudgePointsCommand.cpp
97
fPath->SetPoint(fIndices[i], fPoints[i].point + translation,
src/apps/icon-o-matic/shape/commands/NudgePointsCommand.h
47
int32* fIndices;
src/apps/icon-o-matic/shape/commands/TransformPointsCommand.cpp
115
if (!fPath->SetPoint(fIndices[i], point, pointIn, pointOut,
src/apps/icon-o-matic/shape/commands/TransformPointsCommand.cpp
43
fIndices(indices && count > 0 ?
src/apps/icon-o-matic/shape/commands/TransformPointsCommand.cpp
49
if (!fIndices || !fPoints)
src/apps/icon-o-matic/shape/commands/TransformPointsCommand.cpp
52
memcpy(fIndices, indices, fCount * sizeof(int32));
src/apps/icon-o-matic/shape/commands/TransformPointsCommand.cpp
65
delete[] fIndices;
src/apps/icon-o-matic/shape/commands/TransformPointsCommand.cpp
73
return fPath && fIndices && fPoints ? TransformCommand::InitCheck()
src/apps/icon-o-matic/shape/commands/TransformPointsCommand.h
64
int32* fIndices;
src/apps/icon-o-matic/transformable/TransformPointsBox.cpp
111
fPath->SetPoint(fIndices[i], transformed,
src/apps/icon-o-matic/transformable/TransformPointsBox.cpp
124
fIndices,
src/apps/icon-o-matic/transformable/TransformPointsBox.cpp
30
fIndices(path && count > 0 ? new (nothrow) int32[count] : NULL),
src/apps/icon-o-matic/transformable/TransformPointsBox.cpp
38
if (fPoints && fIndices) {
src/apps/icon-o-matic/transformable/TransformPointsBox.cpp
40
memcpy(fIndices, indices, fCount * sizeof(int32));
src/apps/icon-o-matic/transformable/TransformPointsBox.cpp
43
if (fPath->GetPointsAt(fIndices[i], fPoints[i].point,
src/apps/icon-o-matic/transformable/TransformPointsBox.cpp
71
delete[] fIndices;
src/apps/icon-o-matic/transformable/TransformPointsBox.cpp
98
if (!deep || !fIndices || !fPoints)
src/apps/icon-o-matic/transformable/TransformPointsBox.h
52
int32* fIndices;
src/apps/mediaplayer/playlist/MovePLItemsCommand.cpp
121
fPlaylist->RemoveItem(fIndices[i] - i, false);
src/apps/mediaplayer/playlist/MovePLItemsCommand.cpp
161
if (!fPlaylist->AddItem(fItems[i], fIndices[i])) {
src/apps/mediaplayer/playlist/MovePLItemsCommand.cpp
32
fIndices(fCount > 0 ? new (nothrow) int32[fCount] : NULL),
src/apps/mediaplayer/playlist/MovePLItemsCommand.cpp
49
fIndices[i] = (int32)(addr_t)indices.ItemAt(i);
src/apps/mediaplayer/playlist/MovePLItemsCommand.cpp
50
fItems[i] = fPlaylist->ItemAt(fIndices[i]);
src/apps/mediaplayer/playlist/MovePLItemsCommand.cpp
57
if (fIndices[i] < fToIndex)
src/apps/mediaplayer/playlist/MovePLItemsCommand.cpp
67
delete[] fIndices;
src/apps/mediaplayer/playlist/MovePLItemsCommand.cpp
80
int32 index = fIndices[0];
src/apps/mediaplayer/playlist/MovePLItemsCommand.cpp
93
if (fIndices[i] != index + 1) {
src/apps/mediaplayer/playlist/MovePLItemsCommand.cpp
97
index = fIndices[i];
src/apps/mediaplayer/playlist/MovePLItemsCommand.h
33
int32* fIndices;
src/apps/mediaplayer/playlist/RemovePLItemsCommand.cpp
152
if (!fPlaylist->AddItem(fItems[i], fIndices[i])) {
src/apps/mediaplayer/playlist/RemovePLItemsCommand.cpp
33
fIndices(fCount > 0 ? new (nothrow) int32[fCount] : NULL),
src/apps/mediaplayer/playlist/RemovePLItemsCommand.cpp
49
fIndices[i] = (int32)(addr_t)indices.ItemAt(i);
src/apps/mediaplayer/playlist/RemovePLItemsCommand.cpp
50
fItems[i] = fPlaylist->ItemAt(fIndices[i]);
src/apps/mediaplayer/playlist/RemovePLItemsCommand.cpp
63
delete[] fIndices;
src/apps/mediaplayer/playlist/RemovePLItemsCommand.cpp
70
if (!fPlaylist || !fItems || !fIndices)
src/apps/mediaplayer/playlist/RemovePLItemsCommand.cpp
88
lastRemovedIndex = fIndices[i] - i;
src/apps/mediaplayer/playlist/RemovePLItemsCommand.h
33
int32* fIndices;
src/kits/debugger/arch/x86/ArchitectureX86.cpp
100
return index >= 0 && index < X86_REGISTER_COUNT ? fIndices[index] : -1;
src/kits/debugger/arch/x86/ArchitectureX86.cpp
104
int32 fIndices[X86_REGISTER_COUNT];
src/kits/debugger/arch/x86/ArchitectureX86.cpp
86
memset(fIndices, -1, sizeof(fIndices));
src/kits/debugger/arch/x86/ArchitectureX86.cpp
89
fIndices[kFromDwarfRegisters[i]] = i;
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
104
memset(fIndices, -1, sizeof(fIndices));
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
107
fIndices[kFromDwarfRegisters[i]] = i;
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
118
return index >= 0 && index < X86_64_REGISTER_COUNT ? fIndices[index] : -1;
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
122
int32 fIndices[X86_64_REGISTER_COUNT];
src/kits/debugger/types/ArrayIndexPath.cpp
24
fIndices(other.fIndices)
src/kits/debugger/types/ArrayIndexPath.cpp
37
fIndices.Clear();
src/kits/debugger/types/ArrayIndexPath.cpp
49
if (!fIndices.Add(index))
src/kits/debugger/types/ArrayIndexPath.cpp
67
fIndices.Clear();
src/kits/debugger/types/ArrayIndexPath.cpp
98
fIndices = other.fIndices;