Searched refs:index (Results 51 - 75 of 1857) sorted by last modified time

1234567891011>>

/haiku/src/apps/drivesetup/
H A DPartitionList.cpp528 // find a proper insertion index based on the on-disk offset
529 int32 index = _InsertIndexForOffset(parent, partition->Offset()); local
532 AddRow(partitionrow, index, parent);
554 // find a proper insertion index based on the on-disk offset
555 int32 index = _InsertIndexForOffset(parent, offset); local
558 AddRow(partitionrow, index, parent);
582 int32 index = 0; local
584 for (; index < count; index++) {
586 = dynamic_cast<const PartitionListRow*>(RowAt(index, paren
[all...]
/haiku/src/system/kernel/fs/
H A Dvfs.cpp2990 int32 index = 0; local
2995 kprintf(" [%2" B_PRId32 "] team: %" B_PRId32 "\n", index++, lock->team);
7048 // get fd for the index directory
7251 // get fd for the index directory
/haiku/src/apps/text_search/
H A DGrepWindow.cpp893 int32 index; local
894 ResultItem* item = fSearchResults->FindItem(ref, &index);
897 // take care of invalidation, the index is currently
898 // the full list index, but needs to be the visible
899 // items index for this
900 index = fSearchResults->IndexOf(item);
901 fSearchResults->InvalidateItem(index);
1268 for (int32 index = 0; ; index++) {
1270 fSearchResults->ItemAt(index));
[all...]
/haiku/headers/private/shared/
H A DAutoDeleter.h144 inline C& operator[](size_t index) const
146 return this->Get()[index];
/haiku/src/apps/terminal/
H A DTermWindow.cpp163 int32 index; member in struct:TermWindow::Session
167 Session(SessionID id, int32 index, TermViewContainerView* containerView) argument
170 index(index),
174 title.title << index;
309 message->AddInt32("index", i);
332 TermWindow::_CanClose(int32 index) argument
343 if (index != -1) {
346 TermView* termView = _TermViewAt(index);
377 alertMessage = index
1091 int32 index; local
1105 int32 index = -1; local
1428 _RemoveTab(int32 index) argument
1451 _NavigateTab(int32 index, int32 direction, bool move) argument
1601 TabSelected(SmartTabView* tabView, int32 index) argument
1608 TabDoubleClicked(SmartTabView* tabView, BPoint point, int32 index) argument
1621 TabMiddleClicked(SmartTabView* tabView, BPoint point, int32 index) argument
1629 TabRightClicked(SmartTabView* tabView, BPoint point, int32 index) argument
1683 int32 index = _IndexOfTermView(view); local
1879 _UpdateSessionTitle(int32 index) argument
1931 _OpenSetTabTitleDialog(int32 index) argument
[all...]
H A DTermViewStates.cpp877 for (int32 index = 0; (index = text.FindFirst(':', index)) >= 0;) {
886 colonPosition.index = index;
891 index++;
912 startIndex = colonPositions[startColonIndex].index + 1;
929 endIndex = colonPositions[endColonIndex].index;
/haiku/src/apps/haikudepot/model/
H A DModel.cpp122 int32 index = 0; local
123 while (index < searchTerms.Length()) {
124 int32 nextSpace = searchTerms.FindFirst(" ", index);
127 if (nextSpace > index) {
129 searchTerms.CopyInto(term, index, nextSpace - index);
133 index = nextSpace + 1;
173 int32 index = text.FindFirst(string); local
174 return index >= 0;
340 Model::DepotAtIndex(int32 index) cons
591 int32 index = 0; local
594 name << index++; local
[all...]
H A DLanguageModel.cpp56 LanguageModel::SupportedLanguageAt(int32 index) const
58 return fSupportedLanguages[index];
65 int32 index = _IndexOfSupportedLanguage(value->Code(), value->CountryCode(), local
68 if (-1 == index) {
77 fSupportedLanguages[index] = value;
194 int32 index = _IndexOfBestMatchingSupportedLanguage(code, countryCode, scriptCode); local
195 if (-1 != index)
196 return SupportedLanguageAt(index);
243 int32 index = _IndexOfSupportedLanguage(code, countryCode, scriptCode); local
245 if (-1 == index)
[all...]
H A DLanguageModel.h26 const LanguageRef SupportedLanguageAt(int32 index) const;
/haiku/src/add-ons/kernel/bus_managers/acpi/
H A DBusManager.cpp514 get_device(const char* hid, uint32 index, char* result, size_t resultLength) argument
517 uint32 counter[2] = {index, 0};
520 TRACE("get_device %s, index %ld\n", hid, index);
/haiku/src/servers/app/font/
H A DAppFontManager.h40 status_t AddUserFontFromFile(const char* path, uint16 index, uint16 instance,
43 uint16 index, uint16 instance,
H A DAppFontManager.cpp53 AppFontManager::AddUserFontFromFile(const char* path, uint16 index, uint16 instance, argument
69 FT_Error error = FT_New_Face(gFreeTypeLibrary, path, index | (instance << 16), &face);
81 AppFontManager::AddUserFontFromMemory(const FT_Byte* fontAddress, size_t size, uint16 index, argument
91 index | (instance << 16), &face);
/haiku/src/kits/interface/
H A DFont.cpp74 status_t FamilyAt(int32 index, font_family* _family,
76 status_t StyleAt(font_family family, int32 index,
151 FontList::FamilyAt(int32 index, font_family* _family, uint32* _flags) argument
159 ::family* family = fFamilies.ItemAt(index);
171 FontList::StyleAt(font_family familyName, int32 index, font_style* _style, argument
184 ::style* style = family->styles.ItemAt(index);
239 for (int32 index = 0;; index++) {
241 link.Attach<int32>(index);
452 // Retrieves the family name at the specified index
454 get_font_family(int32 index, font_family* _name, uint32* _flags) argument
465 get_font_style(font_family family, int32 index, font_style* _name, uint32* _flags) argument
474 get_font_style(font_family family, int32 index, font_style* _name, uint16* _face, uint32* _flags) argument
928 GetTunedInfo(int32 index, tuned_font_info* info) const argument
1467 LoadFont(const char* path, uint16 index, uint16 instance) argument
1497 LoadFont(const area_id fontAreaID, size_t size, size_t offset, uint16 index, uint16 instance) argument
[all...]
H A DStatusBar.cpp621 BStatusBar::ResolveSpecifier(BMessage* message, int32 index, argument
624 return BView::ResolveSpecifier(message, index, specifier, what, property);
/haiku/headers/os/interface/
H A DFont.h217 void GetTunedInfo(int32 index,
286 status_t LoadFont(const char* path, uint16 index, uint16 instance);
290 size_t size, size_t offset, uint16 index, uint16 instance);
329 status_t get_font_family(int32 index, font_family* name,
333 status_t get_font_style(font_family family, int32 index, font_style* name,
335 status_t get_font_style(font_family family, int32 index, font_style* name,
/haiku/src/system/kernel/arch/arm64/
H A Darch_int.cpp154 int index = (va >> shift) & tableMask; local
156 uint64_t *pte = &TableFromPa(ptPa)[index];
/haiku/src/add-ons/kernel/busses/pci/designware/
H A DDWPCIController.h212 status_t GetRange(uint32 index, pci_resource_range* range);
221 status_t AtuMap(uint32 index, uint32 direction, uint32 type,
/haiku/headers/private/kernel/arch/arm64/
H A Darch_thread_types.h16 int32 index; member in struct:iframe_stack
/haiku/src/apps/haikudepot/util/
H A DAppUtils.cpp59 int32 index = AppUtils::IndexOfKeyValueInMenu(menu, key, value); local
61 if (index == -1) {
66 menu->ItemAt(index)->SetMarked(true);
87 AppUtils::GetValueForKeyAtIndexInMenu(BMenu* menu, int32 index, const BString& key, BString* result) argument
89 BMessage *itemMessage = menu->ItemAt(index)->Message();
H A DAppUtils.h26 static status_t GetValueForKeyAtIndexInMenu(BMenu* menu, int32 index,
/haiku/src/apps/webpositive/
H A DURLInputGroup.cpp114 virtual const BAutoCompleter::Choice* ChoiceAt(int32 index) const
117 fChoices.ItemAt(index));
/haiku/src/apps/mediaplayer/settings/
H A DSettingsWindow.cpp254 int32 index; local
255 if (message->FindInt32("key", &index) == B_OK && index == 1)
/haiku/src/apps/deskbar/
H A DSwitcher.cpp123 void Redraw(int32 index);
155 BRect FrameOf(int32 index) const;
191 void CenterOn(int32 index);
394 for (int32 index = 0; index < teamCount; index++) {
395 team_id team = (addr_t)TeamList()->ItemAt(index);
540 for (int32 index = 0; index < teamCount; index
664 int32 index; local
706 FindTeam(team_id teamID, int32* index) argument
1155 int32 index; local
1718 Redraw(int32 index) argument
2037 CenterOn(int32 index) argument
2137 int32 index = ItemAtPoint(where); local
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/idualwifi7260/dev/pci/
H A Dif_iwm.c233 /* Convert an MCS index into an iwm_rates[] index. */
3268 uint16_t sn = 0, index = 0; local
3281 index = (buf->head_sn + i) % buf->buf_size;
3283 if (ml_empty(&entries[index].frames)) {
3291 timeradd(&entries[index].reorder_time, &timeout, &expiry);
3308 * If no frame expired and there are stored frames, index is now
5004 /* If this wasn't a part of an A-MSDU the sub-frame index will be 0 */
5056 int index = ssn % reorder_buf->buf_size; local
5063 chanidx = entries[index]
5173 int index; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/iaxwifi200/dev/pci/
H A Dif_iwx.c224 /* Convert an MCS index into an iwx_rates[] index. */
3308 uint16_t sn = 0, index = 0; local
3321 index = (buf->head_sn + i) % buf->buf_size;
3323 if (ml_empty(&entries[index].frames)) {
3331 timeradd(&entries[index].reorder_time, &timeout, &expiry);
3348 * If no frame expired and there are stored frames, index is now
4794 /* If this wasn't a part of an A-MSDU the sub-frame index will be 0 */
4846 int index = ssn % reorder_buf->buf_size; local
4853 chanidx = entries[index]
4963 int index; local
[all...]

Completed in 116 milliseconds

1234567891011>>