Searched refs:index (Results 276 - 300 of 1857) sorted by relevance

<<11121314151617181920>>

/haiku/src/apps/haikudepot/process/
H A DAbstractProcessNode.cpp104 AbstractProcessNode::PredecessorAt(int32 index) const
106 return fPredecessorNodes.ItemAt(index);
137 AbstractProcessNode::SuccessorAt(int32 index) const
139 return fSuccessorNodes.ItemAt(index);
/haiku/src/servers/app/
H A DWorkspacesView.h38 BRect _ScreenFrame(int32 index);
39 BRect _WorkspaceAt(int32 index);
40 BRect _WorkspaceAt(BPoint where, int32& index);
50 BRegion& redraw, int32 index);
/haiku/headers/private/kernel/arch/arm64/
H A Darch_thread_types.h16 int32 index; member in struct:iframe_stack
/haiku/src/bin/
H A Dbt_discovery.cpp88 for (int32 index = 0 ; index < dAgent->RetrieveDevices(0).CountItems(); index++ ) {
90 RemoteDevice* rDevice = dAgent->RetrieveDevices(0).ItemAt(index);
128 for (uint32 index = 0 ; index < LocalDevice::GetLocalDeviceCount() ; index++) {
/haiku/src/servers/print/
H A DTransport.cpp37 for (int32 index = 0; index < sTransports.CountItems(); index++) {
38 if (name == sTransports.ItemAt(index)->Name())
39 return sTransports.ItemAt(index);
48 Transport::At(int32 index) argument
50 return sTransports.ItemAt(index);
/haiku/src/add-ons/media/media-add-ons/vst_host/
H A DVSTHost.cpp15 static int32 VHostCallback(VSTEffect* effect, int32 opcode, int32 index,
38 VSTParameter::VSTParameter(VSTPlugin* plugin, int index) argument
40 fIndex = index;
47 fEffect->dispatcher(fEffect, VST_GET_PARAM_NAME, index, 0, temp, 0);
52 fEffect->dispatcher(fEffect, VST_GET_PARAM_UNIT, index, 0, temp, 0);
56 float val = fEffect->getParameter(fEffect, index);
58 fEffect->setParameter(fEffect, index, 0);
60 fEffect->dispatcher(fEffect, VST_GET_PARAM_STR, index, 0, temp, 0);
65 fEffect->setParameter(fEffect, index, 1.0);
66 fEffect->dispatcher(fEffect, VST_GET_PARAM_STR, index,
183 ListItemAt(int index) argument
222 int index = (int)vstround(value); local
461 Parameter(int index) argument
540 VHostCallback(VSTEffect* effect, int32 opcode, int32 index, int32 value, void* ptr, float opt) argument
[all...]
/haiku/headers/os/interface/
H A DGradient.h71 int32 index);
73 bool RemoveColor(int32 index);
75 bool SetColorStop(int32 index,
77 bool SetColor(int32 index, const rgb_color& color);
78 bool SetOffset(int32 index, float offset);
81 ColorStop* ColorStopAt(int32 index) const;
82 ColorStop* ColorStopAtFast(int32 index) const;
/haiku/src/system/boot/platform/openfirmware/
H A Dvideo.cpp37 for (int index = 0; index < 256; index++) {
38 of_call_method(sScreen, "color!", 4, 0, index,
39 palette[index * 3 + 2],
40 palette[index * 3 + 1],
41 palette[index * 3 + 0]);
/haiku/src/apps/icon-o-matic/shape/commands/
H A DSplitPointsCommand.cpp97 // add points again at their respective index
99 int32 index = fIndex[i] + 1 + i; local
102 if (fPath->AddPoint(fPoint[i], index)) {
103 fPath->SetPoint(index - 1,
108 fPath->SetPoint(index,
133 int32 index = fIndex[i] + 1; local
134 if (fPath->RemovePoint(index)) {
135 fPath->SetPoint(index - 1,
/haiku/src/add-ons/translators/psd/
H A DPSDLoader.cpp313 int32 index = 0; local
317 uint8 colorIndex = imageData[0][index];
324 index++;
336 int32 index = 0; local
340 ptr[0] = imageData[0][index];
341 ptr[1] = imageData[0][index];
342 ptr[2] = imageData[0][index];
343 ptr[3] = isAlpha ? imageData[1][index] : 255;
346 index += depthBytes;
357 int32 index local
377 int32 index = 0; local
401 int32 index = 0; local
[all...]
/haiku/headers/private/kernel/util/
H A DMultiHashTable.h76 ValueIterator(const HashTable *table, size_t index, ValueType *value) argument
77 : fOriginalIndex(index), fOriginalValue(value)
108 size_t index = 0; local
111 index = HashTable::fDefinition.HashKey(key)
113 slot = HashTable::fTable[index];
125 return ValueIterator(this, index, slot);
136 size_t index = HashTable::fDefinition.Hash(value) & (tableSize - 1); local
141 for (previous = table[index]; previous
149 HashTable::_Link(value) = table[index];
150 table[index]
[all...]
/haiku/src/servers/registrar/
H A DEventQueue.cpp226 int32 index = _FindInsertionIndex(event->Time()); local
227 return fEvents.AddItem(event, index);
242 int32 index = _IndexOfEvent(event); local
243 return (index >= 0 && fEvents.RemoveItem(index));
251 \param index The list index of the event to be returned.
252 \return The event, or \c NULL, if the index is out of range.
255 EventQueue::_EventAt(int32 index) const
257 return (Event*)fEvents.ItemAt(index);
273 int32 index = _FindInsertionIndex(time); local
[all...]
/haiku/src/tests/kits/app/bmessage/
H A DMessageFlattenableItemTest.h101 static status_t Find(BMessage& msg, const char* name, int32 index, argument
104 return msg.FindFlat(name, index, val);
110 static MyFlattenableType QuickFind(BMessage& msg, const char* name, int32 index) argument
113 msg.FindFlat(name, index, &mft);
116 static bool Has(BMessage& msg, const char* name, int32 index) argument
117 { return msg.HasFlat(name, index, &sFlat); }
118 static status_t Replace(BMessage& msg, const char* name, int32 index, argument
120 { return msg.ReplaceFlat(name, index, &val); }
122 int32 index, const void** data, ssize_t* size)
126 status_t err = msg.FindData(name, type, index, (cons
121 FindData(BMessage& msg, const char* name, type_code type, int32 index, const void** data, ssize_t* size) argument
[all...]
/haiku/headers/private/media/
H A DTMap.h139 bool _Get(int32 index, value **v) const argument
141 if (index < 0 || index >= item_count)
143 *v = &items[index]->v;
147 bool _Remove(int32 index) argument
149 if (index < 0 || index >= item_count)
151 delete items[index];
153 items[index] = items[item_count];
154 if (index
[all...]
/haiku/src/preferences/repositories/
H A DRepositoriesView.cpp513 int32 index; local
515 for (index = 0; index < listCount; index++) {
516 RepoRow* repoItem = dynamic_cast<RepoRow*>(fListView->RowAt(index));
555 int32 index, repoCount; local
560 for (index = 0; index < repoCount; index++) {
561 name = nameList.StringAt(index);
576 int32 index, listCount = fListView->CountRows(); local
602 int16 index, count = repositoryNames.CountStrings(); local
625 int32 index; local
667 int32 index, listCount = fListView->CountRows(); local
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/intel22x/dev/igc/
H A Digc_osdep.h105 #define IGC_READ_REG_ARRAY(hw, reg, index) \
108 IGC_REGISTER(hw, reg) + ((index)<< 2))
110 #define IGC_WRITE_REG_ARRAY(hw, reg, index, value) \
113 IGC_REGISTER(hw, reg) + ((index)<< 2), value)
118 #define IGC_READ_REG_ARRAY_BYTE(hw, reg, index) \
121 IGC_REGISTER(hw, reg) + index)
123 #define IGC_WRITE_REG_ARRAY_BYTE(hw, reg, index, value) \
126 IGC_REGISTER(hw, reg) + index, value)
128 #define IGC_WRITE_REG_ARRAY_WORD(hw, reg, index, value) \
131 IGC_REGISTER(hw, reg) + (index <<
[all...]
/haiku/src/kits/shared/
H A DDateTimeEdit.cpp102 TimeEdit::DrawSection(uint32 index, BRect bounds, bool hasFocus) argument
104 if (fFieldPositions == NULL || index * 2 + 1 >= (uint32)fFieldPosCount)
114 fText.CopyCharsInto(field, fFieldPositions[index * 2],
115 fFieldPositions[index * 2 + 1] - fFieldPositions[index * 2]);
127 TimeEdit::DrawSeparator(uint32 index, BRect bounds) argument
129 if (fFieldPositions == NULL || index * 2 + 2 >= (uint32)fFieldPosCount)
133 fText.CopyCharsInto(field, fFieldPositions[index * 2 + 1],
134 fFieldPositions[index * 2 + 2] - fFieldPositions[index *
159 SectionFocus(uint32 index) argument
469 DrawSection(uint32 index, BRect bounds, bool hasFocus) argument
494 DrawSeparator(uint32 index, BRect bounds) argument
515 SectionFocus(uint32 index) argument
845 FrameForSection(uint32 index) argument
861 FrameForSeparator(uint32 index) argument
[all...]
H A DRWLocker.cpp91 int32 index = _IndexOf(thread); local
92 if (ReadLockInfo* info = _ReadLockInfoAt(index)) {
97 _DeleteReadLockInfo(index);
284 int32 index = _IndexOf(thread); local
285 if (ReadLockInfo* info = _ReadLockInfoAt(index)) {
295 _DeleteReadLockInfo(index);
314 _DeleteReadLockInfo(index);
329 _DeleteReadLockInfo(index);
407 int32 index = fReadLockInfos.CountItems(); local
408 fReadLockInfos.AddItem(info, index);
427 _DeleteReadLockInfo(int32 index) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DAttribute.h32 status_t Find(int32 index);
51 status_t _Find(const char* name, int32 index);
53 const char* name, int32 index, int32 *count,
56 const char* name, int32 index, int32 *count,
59 const char* name, int32 index, int32 *count,
/haiku/src/system/libroot/os/
H A DArchitecture.cpp68 size_t index = 0; local
78 if (index < count)
79 architectures[index] = architecture;
80 index++;
84 return index;
/haiku/src/kits/textencoding/
H A DCharacterSetRoster.cpp11 index = 0;
25 if (index >= character_sets_by_id_count) {
28 *charset = *character_sets_by_id[index++];
35 index = 0;
36 if (index >= character_sets_by_id_count) {
/haiku/src/apps/mediaplayer/playlist/
H A DPlaylistListView.h42 virtual void DrawListItem(BView* owner, int32 index,
51 void RemoveToTrash(int32 index);
62 void _AddItem(PlaylistItem* item, int32 index);
63 void _RemoveItem(int32 index);
65 void _SetCurrentPlaylistIndex(int32 index);
/haiku/src/add-ons/media/media-add-ons/mixer/
H A DMixerSettings.cpp239 int index = -1; local
246 index = i;
250 if (index == -1) {
254 index = i;
259 if (index == -1) {
261 index = 0;
263 if (fInputSetting[i].FindInt64("lru") < fInputSetting[index].FindInt64("lru"))
264 index = i;
268 TRACE("SaveConnectionSettings: using entry %d\n", index);
270 fInputSetting[index]
292 int index; local
[all...]
/haiku/src/system/boot/arch/m68k/
H A Dmmu_040.cpp196 uint32 index; local
204 index = VADDR_TO_PRENT(virtualAddress);
205 if (PRE_TYPE(pr[index]) != DT_ROOT)
206 panic("invalid page root entry %d\n", index);
209 if (PRE_TYPE(pr[index]) != DT_ROOT) {
210 unsigned aindex = index & ~(NUM_DIRTBL_PER_PAGE-1); /* aligned */
211 //TRACE(("missing page root entry %d ai %d\n", index, aindex));
230 pd = (page_directory_entry *)PRE_TO_TA(pr[index]);
232 index = VADDR_TO_PDENT(virtualAddress);
233 if (PDE_TYPE(pd[index]) !
[all...]
/haiku/src/kits/tracker/
H A DTrackerScripting.cpp114 TTracker::ResolveSpecifier(BMessage* message, int32 index, BMessage* specifier, argument
120 int32 result = propertyInfo.FindMatch(message, index, specifier, form,
124 return _inherited::ResolveSpecifier(message, index, specifier,
149 int32 index = 0; local
153 status_t result = message->GetCurrentSpecifier(&index, &specifier,
155 if (result != B_OK || index == -1)
210 for (int32 index = 0;
211 message->FindRef("data", index, &ref) == B_OK; index++) {
275 for (int32 index
[all...]

Completed in 247 milliseconds

<<11121314151617181920>>