Searched refs:index (Results 251 - 275 of 1857) sorted by last modified time

<<11121314151617181920>>

/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DQuery.cpp23 IndexIterator(Index *index);
38 IndexIterator::IndexIterator(Index *index) argument
39 : fIndex(index),
110 ::Index* index; member in struct:Query::QueryPolicy::Index
120 IndexIterator(::Index* index) argument
122 ::IndexIterator(index)
165 static status_t IndexSetTo(Index& index, const char* attribute) argument
167 index.index = index
171 IndexUnset(Index& index) argument
176 IndexGetWeightedScore(Index& index, int32 score) argument
185 IndexGetType(Index& index) argument
190 IndexGetKeySize(Index& index) argument
195 IndexCreateIterator(Index& index) argument
[all...]
/haiku/src/libs/icon/shape/
H A DShape.cpp285 Shape::ItemAdded(VectorPath* path, int32 index) argument
306 Shape::PointAdded(int32 index) argument
313 Shape::PointRemoved(int32 index) argument
320 Shape::PointChanged(int32 index) argument
352 Shape::ItemAdded(Transformer* transformer, int32 index) argument
/haiku/src/servers/app/
H A DServerFont.cpp337 // an index in case a single font file exports multiple font faces. The
746 void ConsumeEmptyGlyph(int32 index, uint32 charCode, double x, double y) argument
748 fEdges[index].left = 0.0;
749 fEdges[index].right = 0.0;
752 bool ConsumeGlyph(int32 index, uint32 charCode, const GlyphCache* glyph, argument
756 fEdges[index].left = glyph->inset_left / fSize;
757 fEdges[index].right = glyph->inset_right / fSize;
814 void ConsumeEmptyGlyph(int32 index, uint32 charCode, double x, double y) argument
816 _Set(index, 0, 0);
819 bool ConsumeGlyph(int32 index, uint3 argument
827 _Set(int32 index, double x, double y) argument
881 ConsumeEmptyGlyph(int32 index, uint32 charCode, double x, double y) argument
886 ConsumeGlyph(int32 index, uint32 charCode, const GlyphCache* glyph, FontCacheEntry* entry, double x, double y, double advanceX, double advanceY) argument
937 ConsumeEmptyGlyph(int32 index, uint32 charCode, double x, double y) argument
939 ConsumeGlyph(int32 index, uint32 charCode, const GlyphCache* glyph, FontCacheEntry* entry, double x, double y, double advanceX, double advanceY) argument
1071 ConsumeEmptyGlyph(int32 index, uint32 charCode, double x, double y) argument
1072 ConsumeGlyph(int32 index, uint32 charCode, const GlyphCache* glyph, FontCacheEntry* entry, double x, double y, double advanceX, double advanceY) argument
[all...]
/haiku/src/apps/cortex/ValControl/
H A DValControl.cpp505 uint16 index = _LocationToIndex(from, 0); local
506 _InsertEntry(entry, index);
514 // (_IndexOf returns index from left)
602 ValControl::_InsertEntry(ValCtrlLayoutEntry& entry, uint16 index) argument
612 ASSERT(!index || index == fLayoutSet.size());
617 ((index - 1 >= 0 &&
618 fLayoutSet[index - 1].flags & ValCtrlLayoutEntry::LAYOUT_NO_PADDING)) ||
619 ((index + 1 < static_cast<uint16>(fLayoutSet.size()) &&
620 fLayoutSet[index
682 _SlideEntry(int index, float delta) argument
[all...]
/haiku/src/apps/cortex/NodeManager/
H A DNodeRef.cpp562 int32 index = m_positionInvoker.IndexOfTarget(handler); local
563 if(index == -1)
567 m_positionInvoker.RemoveTarget(index);
H A DNodeManager.cpp758 // fetch groups by index
772 uint32 index) const {
777 return (index < m_nodeGroupSet.size()) ?
778 m_nodeGroupSet[index] :
H A DNodeGroup.cpp156 uint32 index) const {
158 return (index < m_nodes.size()) ?
159 m_nodes[index] :
347 uint32 index) {
350 "NodeGroup::removeNode(by index)\n"));
355 ASSERT(m_nodes.size() > index);
356 return removeNode(m_nodes[index]);
346 removeNode( uint32 index) argument
/haiku/src/system/kernel/debug/
H A Ddebug_parser.cpp762 segment.index = pipe->segment_count++;
821 if (segment.index > 0) {
/haiku/src/system/libroot/posix/malloc_hoard2/
H A Dwrapper.cpp71 int32 index = 0; local
75 while (get_nth_image_symbol(info.id, index, name, &nameLength,
94 index++;
/haiku/src/kits/tracker/
H A DFavoritesMenu.cpp386 for (int32 index = count; index >= 0; index--) {
387 BMenuItem* item = ItemAt(index);
390 RemoveItem(index);
/haiku/src/kits/support/
H A DPointerList.cpp44 Returns the index of the item that matches key or
45 a negative number. Then -(index+1) is the insert position
80 int32 &index);
116 int32 index; local
118 BinarySearch(key, items, list->CountItems(), index);
119 return index;
126 int32 index; local
128 return BinarySearch(key, items, list->CountItems(), index);
156 int32 numItems, int32 &index)
160 index
155 BinarySearch(const void *key, const void **items, int32 numItems, int32 &index) argument
364 ReplaceItem(int32 index, void *newItem) argument
[all...]
/haiku/src/apps/debugger/user_interface/cli/
H A DCliContext.cpp280 CliContext::SetCurrentStackFrameIndex(int32 index) argument
286 else if (index < 0 || index >= fCurrentStackTrace->CountFrames())
289 fCurrentStackFrameIndex = index;
291 StackFrame* frame = fCurrentStackTrace->FrameAt(index);
H A DCliContext.h83 void SetCurrentStackFrameIndex(int32 index);
/haiku/src/apps/tv/
H A DMainWin.cpp323 int index = (interface < 0) ? 0 : interface + 2; local
324 item = fInterfaceMenu->ItemAt(index);
344 int index = (channel < 0) ? 0 : channel + 3; local
345 item = fChannelMenu->ItemAt(index);
/haiku/src/apps/magnify/
H A DMagnify.cpp364 TWindow::ResolveSpecifier(BMessage* msg, int32 index, BMessage* specifier, argument
368 if (propertyInfo.FindMatch(msg, index, specifier, what, property) >= 0)
371 return BWindow::ResolveSpecifier(msg, index, specifier, what, property);
385 int32 index; local
389 if (m->GetCurrentSpecifier(&index, &specifier, &what, &property)
397 switch (propertyInfo.FindMatch(m, index, &specifier, what,
/haiku/src/apps/launchbox/
H A DPadView.cpp302 PadView::ButtonAt(int32 index) const
304 BLayoutItem* item = fButtonLayout->ItemAt(index);
/haiku/src/apps/diskprobe/
H A DTypeEditors.cpp1226 char index[16]; local
1227 snprintf(index, sizeof(index), "%" B_PRId32 ".\t", j);
1228 fTextView->Insert(index);
1326 GetNthTypeEditor(int32 index, const char** _name) argument
1336 if (index < 0 || index >= int32(sizeof(kEditors) / sizeof(kEditors[0])))
1339 *_name = kEditors[index];
1345 GetTypeEditorAt(int32 index, BRect rect, DataEditor& editor) argument
1349 switch (index) {
[all...]
/haiku/src/system/kernel/
H A Dsyscalls.cpp562 int32 index = _PendingThreadIndex(thread); local
563 if (index >= 0)
577 int32 index = _PendingThreadIndex(thread); local
578 if (index < 0)
581 if (index + 1 < fPendingThreadCount) {
582 memmove(fPendingThreads + index, fPendingThreads + index + 1,
583 fPendingThreadCount - index - 1);
/haiku/src/system/boot/loader/file_systems/fat/
H A DStream.cpp113 uint32 index = (uint32)(pos / fVolume.ClusterSize()); local
114 if (pos > fSize || index >= fClusterCount)
121 if (fClusterMapCache[i].block == index) {
130 for (i = 0; i < index && fVolume.IsValidCluster(cluster); i++) {
139 cluster = fVolume.NextCluster(cluster, index);
145 fClusterMapCache[fClusterMapCacheLast].block = index;
165 uint32 index = (uint32)(pos / fVolume.ClusterSize()); local
170 while (clusterCount <= index) {
182 if (clusterCount > index) {
189 while (clusterCount <= index) {
[all...]
H A DDirectory.cpp108 int32 index; member in struct:FATFS::dir_cookie
114 off_t Offset() const { return index * sizeof(struct dir_entry); }
341 c->index = -1;
372 c->index = -1;
429 c->index = -1;
442 c->index = -1;
560 c->index++;
/haiku/src/servers/launch/
H A DLaunchDaemon.cpp316 for (int32 index = 0; index < fDestinations.CountItems(); index++)
317 Events::TriggerExternalEvent(fDestinations.ItemAt(index));
330 for (int32 index = 0; index < fDestinations.CountItems(); index++)
331 Events::ResetStickyExternalEvent(fDestinations.ItemAt(index));
547 for (int32 index = 0; index < fRunTarget
[all...]
/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/src/add-ons/kernel/drivers/bluetooth/h2/h2generic/
H A Dh2generic.cpp437 TRACE("%s: index=%" B_PRId32 " nbuf=%p bdev=%p\n", __func__, hid,
521 bdev->hdev = hdev = ndev->index; // Get the index
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DBlockAllocator.cpp775 uint32 index = (numBlocks - indexesInDoubleIndirect)
777 doubleIndirectBlock = indirectData[index];
786 uint32 index = (numBlocks - indexesInIndirect) / numIndexes2;
787 indirectBlock = indirectData[index];
794 uint32 index = numBlocks / numIndexes;
795 lastBlock = indirectData[index];
/haiku/src/system/kernel/util/
H A DBitmap.cpp74 Bitmap::SetRange(size_t index, size_t count) argument
78 Set(index++);
83 Bitmap::ClearRange(size_t index, size_t count) argument
87 Clear(index++);
114 ssize_t index = GetLowestClear(fromIndex); local
115 if (index < 0)
116 return index;
119 if ((size_t)index + count - 1 < (size_t)index)
123 while (curCount < count && Get(index
[all...]

Completed in 89 milliseconds

<<11121314151617181920>>