Searched refs:fIndex (Results 1 - 25 of 132) sorted by relevance

123456

/haiku-fatelf/src/apps/icon-o-matic/shape/commands/
H A DInsertPointCommand.cpp32 fIndex(index),
36 if (fPath && (!fPath->GetPointsAt(fIndex, fPoint, fPointIn, fPointOut)
37 || !fPath->GetPointOutAt(fIndex - 1, fPreviousOut)
38 || !fPath->GetPointInAt(fIndex + 1, fNextIn))) {
63 fPath->GetPointInAt(fIndex, fPointIn);
64 fPath->GetPointOutAt(fIndex, fPointOut);
80 if (fPath->RemovePoint(fIndex)) {
83 fPath->GetPointOutAt(fIndex - 1, fPreviousOut);
84 fPath->SetPointOut(fIndex - 1, previousOut);
87 fPath->GetPointInAt(fIndex, fNextI
[all...]
H A DFlipPointsCommand.cpp31 fIndex(NULL),
35 fIndex = new (nothrow) int32[count];
42 memcpy(fIndex, indices, count * sizeof(int32));
48 delete[] fIndex;
58 if (!fIndex)
78 if (fPath->GetPointsAt(fIndex[i], point, pointIn, pointOut, &connected)) {
82 fPath->SetPoint(fIndex[i],
104 _Select(fIndex, fCount);
H A DAddPointCommand.cpp29 fIndex(index),
55 if (!fPath->GetPointsAt(fIndex, fPoint, fPointIn, fPointOut))
70 if (fPath->RemovePoint(fIndex)) {
91 if (fPath->AddPoint(fPoint, fIndex)) {
92 fPath->SetPoint(fIndex, fPoint, fPointIn, fPointOut, true);
94 _Select(&fIndex, 1);
H A DSplitPointsCommand.cpp33 fIndex(NULL),
41 fIndex = new (nothrow) int32[count];
52 memcpy(fIndex, indices, count * sizeof(int32));
54 if (!fPath->GetPointsAt(fIndex[i],
68 delete[] fIndex;
82 if (!fIndex || !fPoint || !fPointIn || !fPointOut || !fConnected)
98 int32 index = fIndex[i] + 1 + i;
132 int32 index = fIndex[i] + 1;
147 _Select(fIndex, fCount);
H A DChangePointCommand.cpp32 fIndex(index),
36 if (fPath && !fPath->GetPointsAt(fIndex, fPoint, fPointIn, fPointOut, &fConnected))
66 if (!fPath->GetPointsAt(fIndex, point, pointIn, pointOut, &connected))
98 if (fPath->GetPointsAt(fIndex, point, pointIn, pointOut, &connected)
99 && fPath->SetPoint(fIndex, fPoint, fPointIn, fPointOut, fConnected)) {
120 _Select(&fIndex, 1);
H A DRemovePointsCommand.cpp33 fIndex(NULL),
52 fIndex(NULL),
67 delete[] fIndex;
82 if (!fIndex || !fPoint || !fPointIn || !fPointOut || !fConnected)
107 if (fPath->AddPoint(fPoint[i], fIndex[i])) {
108 fPath->SetPoint(fIndex[i],
123 _Select(fIndex, fCount);
144 if (!fPath->RemovePoint(fIndex[i] - i)) {
180 fIndex = new (nothrow) int32[count];
191 memcpy(fIndex, indice
[all...]
/haiku-fatelf/src/servers/app/
H A DWindowList.cpp31 fIndex(index),
46 fIndex = index;
57 window_anchor& windowAnchor = window->Anchor(fIndex);
60 window_anchor& beforeAnchor = before->Anchor(fIndex);
66 windowAnchor.previous->Anchor(fIndex).next = window;
74 fLastWindow->Anchor(fIndex).next = window;
85 if (fIndex < kMaxWorkspaces)
86 window->SetWorkspaces(window->Workspaces() | (1UL << fIndex));
93 window_anchor& windowAnchor = window->Anchor(fIndex);
100 windowAnchor.previous->Anchor(fIndex)
[all...]
/haiku-fatelf/src/servers/registrar/
H A DAppInfoList.h85 fIndex(it.fIndex),
94 return (fIndex >= 0 && fIndex < fCount);
99 RosterAppInfo *info = fList->RemoveInfo(fIndex);
108 fIndex = it.fIndex;
115 fIndex++;
121 return Iterator(fList, fIndex + 1);
126 fIndex
163 int32 fIndex; member in class:AppInfoList::Iterator
[all...]
/haiku-fatelf/src/tests/system/kernel/file_corruption/fs/
H A DBlock.cpp22 fIndex = other.fIndex;
80 status_t error = transaction.RegisterBlock(fIndex);
84 error = block_cache_make_writable(fVolume->BlockCache(), fIndex,
87 transaction.PutBlock(fIndex, NULL);
101 fTransaction->PutBlock(fIndex, fData);
103 block_cache_put(fVolume->BlockCache(), fIndex);
119 fIndex = blockIndex;
H A DBlockAllocator.h81 fIndex(0)
87 if (fIndex > 0)
88 fAllocator->Free(fIndex, 1, fTransaction);
93 return fIndex;
99 status_t error = fAllocator->Allocate(0, 1, fTransaction, fIndex,
102 fIndex = 0;
108 uint64 index = fIndex;
109 fIndex = 0;
116 uint64 fIndex; member in class:AllocatedBlock
/haiku-fatelf/src/add-ons/media/plugins/avi_reader/libOpenDML/
H A DStandardIndex.cpp52 , fIndex(NULL)
61 delete [] fIndex;
83 fIndex = new (std::nothrow) avi_standard_index_entry[fIndexSize];
84 if (fIndex == NULL) {
90 fIndex, indexBytes)) {
92 delete [] fIndex;
93 fIndex = NULL;
114 if (fIndex[i].chunk_id == 0) {
119 stream_index = ((fIndex[i].chunk_id & 0xff) - '0') * 10;
120 stream_index += ((fIndex[
[all...]
H A DStandardIndex.h41 avi_standard_index_entry *fIndex; member in class:StandardIndex
/haiku-fatelf/src/add-ons/kernel/busses/scsi/ahci/
H A Dahci_tracing.h19 , fIndex(index)
28 out.Print(", index: %d", fIndex);
32 int fIndex; member in class:AHCIPortTracing::AHCIPortTraceEntry
/haiku-fatelf/src/apps/debugger/arch/
H A DRegister.cpp15 fIndex(index),
46 fIndex(other.fIndex),
/haiku-fatelf/src/tests/add-ons/print/ppd/parser/
H A DPPDFile.cpp16 if (fIndex >= fSize) {
18 fIndex = 0;
23 return (int)fBuffer[fIndex ++];
/haiku-fatelf/src/add-ons/kernel/file_systems/ramfs/
H A DLastModifiedIndex.cpp98 LastModifiedIndex *fIndex; member in class:LastModifiedIndex::Iterator
240 fIndex(NULL)
276 error = fIndex->GetVolume()->AddNodeListener(this, fNode,
279 error = fIndex->GetVolume()->AddEntryListener(this, fEntry,
282 fIndex->GetVolume()->RemoveNodeListener(this, fNode);
298 error = fIndex->GetVolume()->RemoveEntryListener(this, fEntry);
301 error = fIndex->GetVolume()->RemoveNodeListener(this, fNode);
303 fIndex->GetVolume()->RemoveNodeListener(this, fNode);
317 fIndex = index;
318 if (fIndex)
[all...]
H A DSizeIndex.cpp96 SizeIndex *fIndex; member in class:SizeIndex::Iterator
239 fIndex(NULL)
275 error = fIndex->GetVolume()->AddNodeListener(this, fNode,
278 error = fIndex->GetVolume()->AddEntryListener(this, fEntry,
281 fIndex->GetVolume()->RemoveNodeListener(this, fNode);
297 error = fIndex->GetVolume()->RemoveEntryListener(this, fEntry);
300 error = fIndex->GetVolume()->RemoveNodeListener(this, fNode);
302 fIndex->GetVolume()->RemoveNodeListener(this, fNode);
315 fIndex = index;
316 if (fIndex)
[all...]
H A DAttribute.cpp17 fIndex(NULL),
40 if (fIndex)
41 fIndex->Removed(this);
80 if (offset < kMaxIndexKeyLength && size > 0 && fIndex)
81 fIndex->Changed(this, oldKey, oldLength);
101 fIndex = index;
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/ramfs/
H A DLastModifiedIndex.cpp98 LastModifiedIndex *fIndex; member in class:LastModifiedIndex::Iterator
240 fIndex(NULL)
276 error = fIndex->GetVolume()->AddNodeListener(this, fNode,
279 error = fIndex->GetVolume()->AddEntryListener(this, fEntry,
282 fIndex->GetVolume()->RemoveNodeListener(this, fNode);
298 error = fIndex->GetVolume()->RemoveEntryListener(this, fEntry);
301 error = fIndex->GetVolume()->RemoveNodeListener(this, fNode);
303 fIndex->GetVolume()->RemoveNodeListener(this, fNode);
317 fIndex = index;
318 if (fIndex)
[all...]
H A DSizeIndex.cpp96 SizeIndex *fIndex; member in class:SizeIndex::Iterator
239 fIndex(NULL)
275 error = fIndex->GetVolume()->AddNodeListener(this, fNode,
278 error = fIndex->GetVolume()->AddEntryListener(this, fEntry,
281 fIndex->GetVolume()->RemoveNodeListener(this, fNode);
297 error = fIndex->GetVolume()->RemoveEntryListener(this, fEntry);
300 error = fIndex->GetVolume()->RemoveNodeListener(this, fNode);
302 fIndex->GetVolume()->RemoveNodeListener(this, fNode);
315 fIndex = index;
316 if (fIndex)
[all...]
/haiku-fatelf/src/add-ons/print/drivers/pcl6/
H A DRasterizer.cpp9 fIndex(-1)
54 fIndex = fBounds.top;
62 return fIndex <= fBounds.bottom;
76 fIndex ++;
/haiku-fatelf/src/apps/mail/
H A DKUndoBuffer.cpp50 fIndex = 0;
90 if (fIndex >= CountItems())
91 fIndex--;
130 AddItem(NewUndoItem, fIndex);
131 fIndex++;
145 if (fNewItem || fIndex < CountItems() || CountItems() == 0) {
150 CurrentUndoItem = ItemAt(fIndex - 1);
183 if (fIndex >= CountItems()) {
198 if (fIndex > 0) {
199 undoItem = ItemAt(fIndex
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/packagefs/
H A DIndexImpl.h56 Index* fIndex; member in class:GenericIndexIterator
66 fIndex(NULL),
100 fNextTreeNode = Policy::GetNodeTree(fIndex)->Next(fNextTreeNode);
114 fIndex->GetVolume()->AddNodeListener(this,
131 fIndex->GetVolume()->RemoveNodeListener(this);
145 fIndex = index;
149 if (fIndex == NULL)
153 fNextTreeNode = TreePolicy::GetFirstTreeNode(fIndex);
155 fNextTreeNode = TreePolicy::FindClosestTreeNode(fIndex, value);
170 fNextTreeNode = Policy::GetNodeTree(fIndex)
[all...]
/haiku-fatelf/src/kits/tracker/
H A DEntryIterator.cpp141 fIndex(0),
168 ASSERT(fIndex == 0 && fNumEntries == 0);
170 if (fIndex >= fNumEntries) {
180 fIndex = 0;
182 *result = fEntryBuffer[fIndex++];
183 if (fIndex > fNumEntries) {
201 ASSERT(fIndex == 0 && fNumEntries == 0);
204 if (fIndex >= fNumEntries) {
213 fIndex = 0;
215 *ref = fEntryRefBuffer[fIndex
[all...]
/haiku-fatelf/src/kits/network/libnetapi/
H A DNetworkCookieJar.cpp381 fIndex(other.fIndex)
394 fIndex(0)
443 fIndex = 0;
444 fElement = reinterpret_cast<BNetworkCookie*>(fList->ItemAt(fIndex));
458 if (fIndex == 0) {
466 fList->RemoveItem(fIndex-1);
467 fIndex--;
484 fIndex = other.fIndex;
[all...]

Completed in 286 milliseconds

123456