Searched refs:index (Results 126 - 150 of 2065) sorted by relevance

1234567891011>>

/haiku-fatelf/src/apps/mediaplayer/playlist/
H A DPlaylistObserver.cpp26 PlaylistObserver::ItemAdded(PlaylistItem* item, int32 index) argument
30 message.AddInt32("index", index);
37 PlaylistObserver::ItemRemoved(int32 index) argument
40 message.AddInt32("index", index);
59 message.AddInt32("index", newIndex);
H A DPlaylistObserver.h24 virtual void ItemAdded(PlaylistItem* item, int32 index);
25 virtual void ItemRemoved(int32 index);
/haiku-fatelf/src/apps/mediaplayer/supplier/
H A DMediaFileTrackSupplier.cpp113 MediaFileTrackSupplier::GetAudioMetaData(int32 index, BMessage* metaData) argument
115 BMediaTrack* track = (BMediaTrack*)fAudioTracks.ItemAt(index);
124 MediaFileTrackSupplier::GetVideoMetaData(int32 index, BMessage* metaData) argument
126 BMediaTrack* track = (BMediaTrack*)fVideoTracks.ItemAt(index);
135 MediaFileTrackSupplier::CreateAudioTrackForIndex(int32 index) argument
137 BMediaTrack* track = (BMediaTrack*)fAudioTracks.ItemAt(index);
141 return new(std::nothrow) MediaTrackAudioSupplier(track, index);
146 MediaFileTrackSupplier::CreateVideoTrackForIndex(int32 index) argument
151 if (fVideoTracks.CountItems() <= index
152 && index < fVideoTrack
173 SubTitleTrackForIndex(int32 index) argument
[all...]
/haiku-fatelf/src/bin/gdb/gdb/mi/
H A Dmi-getopt.h31 On entry OPTIND contains the index of the next element of ARGV that
32 needs parsing. OPTIND is updated to indicate the index of the next
54 int index; member in struct:mi_opt
/haiku-fatelf/src/system/libroot/posix/stdlib/
H A Denv.cpp156 int32 index; local
161 env = find_variable(name, length, &index);
164 free(environ[index]);
168 index = add_variable();
169 if (index < 0)
176 environ[index] = (char*)malloc(length + 2 + strlen(value));
177 if (environ[index] == NULL)
180 memcpy(environ[index], name, length);
181 environ[index][length] = '=';
182 strcpy(environ[index]
268 int32 index, length; local
[all...]
/haiku-fatelf/src/system/libroot/posix/string/
H A Dstrchr.c22 index(const char* s, int c) function
/haiku-fatelf/src/tests/kits/net/DialUpPreflet/
H A DPTPSettings.cpp34 for(int32 index = 0;
35 fAddons.FindPointer(DUN_DELETE_ON_QUIT, index,
37 index++)
68 for(int32 index = 0; fAddons.FindPointer(DUN_TAB_ADDON_TYPE, index,
69 reinterpret_cast<void**>(&addon)) == B_OK; index++) {
90 for(int32 index = 0; fAddons.FindPointer(DUN_TAB_ADDON_TYPE, index,
91 reinterpret_cast<void**>(&addon)) == B_OK; index++) {
110 for(int32 index
[all...]
/haiku-fatelf/src/kits/interface/
H A DListView.cpp479 int32 index = IndexOf(point); local
497 && fTrack->item_index == index)
500 if (doubleClick && index >= fFirstSelected && index <= fLastSelected) {
512 fTrack->item_index = index;
513 fTrack->was_selected = index >= 0 ? ItemAt(index)->IsSelected() : false;
517 if (index > -1) {
522 Select(min_c(index, fFirstSelected), max_c(index, fLastSelecte
577 InitiateDrag(BPoint point, int32 index, bool wasSelected) argument
678 AddItem(BListItem *item, int32 index) argument
716 int32 index = CountItems() - 1; local
730 AddList(BList* list, int32 index) argument
770 RemoveItem(int32 index) argument
808 RemoveItems(int32 index, int32 count) argument
903 int32 index = IndexOf(BPoint(0.0, item->Top())); local
1011 InvalidateItem(int32 index) argument
1033 Select(int32 index, bool extend) argument
1154 Deselect(int32 index) argument
1209 ReplaceItem(int32 index, BListItem *item) argument
1221 ItemFrame(int32 index) argument
1240 ResolveSpecifier(BMessage* message, int32 index, BMessage* specifier, int32 form, const char* property) argument
1424 _InvalidateFrom(int32 index) argument
1459 _Select(int32 index, bool extend) argument
1546 _Deselect(int32 index) argument
1752 _ReplaceItem(int32 index, BListItem *item) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/network/rtl8169/
H A Ddriver.c62 int32 index = *_cookie; local
67 for (; gPci->get_nth_pci_info(index, info) == B_OK; index++) {
76 *_cookie = index + 1;
112 uint32 index = 0; local
132 while (get_next_supported_pci_info(&index, item) == B_OK) {
165 for (index = 0; index < cards; index++) {
166 free(gDevList[index]);
[all...]
/haiku-fatelf/src/libs/icon/shape/
H A DPathContainer.cpp58 PathContainer::AddPath(VectorPath* path, int32 index) argument
67 if (fPaths.AddItem((void*)path, index)) {
69 _NotifyPathAdded(path, index);
94 PathContainer::RemovePath(int32 index) argument
96 VectorPath* path = (VectorPath*)fPaths.RemoveItem(index);
138 PathContainer::PathAt(int32 index) const
140 return (VectorPath*)fPaths.ItemAt(index);
145 PathContainer::PathAtFast(int32 index) const
147 return (VectorPath*)fPaths.ItemAtFast(index);
196 PathContainer::_NotifyPathAdded(VectorPath* path, int32 index) cons
[all...]
H A DShapeContainer.cpp65 ShapeContainer::AddShape(Shape* shape, int32 index) argument
74 if (fShapes.AddItem((void*)shape, index)) {
76 _NotifyShapeAdded(shape, index);
101 ShapeContainer::RemoveShape(int32 index) argument
103 Shape* shape = (Shape*)fShapes.RemoveItem(index);
145 ShapeContainer::ShapeAt(int32 index) const
147 return (Shape*)fShapes.ItemAt(index);
152 ShapeContainer::ShapeAtFast(int32 index) const
154 return (Shape*)fShapes.ItemAtFast(index);
204 ShapeContainer::_NotifyShapeAdded(Shape* shape, int32 index) cons
[all...]
/haiku-fatelf/src/libs/icon/style/
H A DStyleContainer.cpp58 StyleContainer::AddStyle(Style* style, int32 index) argument
67 if (fStyles.AddItem((void*)style, index)) {
69 _NotifyStyleAdded(style, index);
94 StyleContainer::RemoveStyle(int32 index) argument
96 Style* style = (Style*)fStyles.RemoveItem(index);
138 StyleContainer::StyleAt(int32 index) const
140 return (Style*)fStyles.ItemAt(index);
145 StyleContainer::StyleAtFast(int32 index) const
147 return (Style*)fStyles.ItemAtFast(index);
197 StyleContainer::_NotifyStyleAdded(Style* style, int32 index) cons
[all...]
/haiku-fatelf/src/system/runtime_loader/
H A Delf_symbol_lookup.h86 bool IsSymbolValueCached(size_t index) const
88 return index < fTableSize
89 && (fValuesResolved[index / 32] & (1 << (index % 32))) != 0;
92 addr_t SymbolValueAt(size_t index) const
94 return fValues[index];
97 void SetSymbolValueAt(size_t index, addr_t value) argument
99 if (index < fTableSize) {
100 fValues[index] = value;
101 fValuesResolved[index / 3
[all...]
/haiku-fatelf/src/system/kernel/arch/arm/paging/32bit/
H A DARMVMTranslationMap32Bit.cpp147 dprintf("index is %d\n", va / B_PAGE_SIZE / 1024);
156 uint32 index = VADDR_TO_PDENT(va); local
157 if ((pd[index] & ARM_PDE_TYPE_MASK) == 0) {
172 ARMPagingMethod32Bit::PutPageTableInPageDir(&pd[index], pgtable,
178 if (index >= FIRST_KERNEL_PGDIR_ENT
179 && index < (FIRST_KERNEL_PGDIR_ENT + NUM_KERNEL_PGDIR_ENTS)) {
180 ARMPagingStructures32Bit::UpdateAllPageDirs(index, pd[index]);
191 pd[index] & ARM_PDE_ADDRESS_MASK);
192 index
224 int index = VADDR_TO_PDENT(start); local
280 int index = VADDR_TO_PDENT(address); local
353 int index = VADDR_TO_PDENT(start); local
489 int index = VADDR_TO_PDENT(address); local
563 int index = VADDR_TO_PDENT(va); local
612 int index = VADDR_TO_PDENT(va); local
729 int index = VADDR_TO_PDENT(va); local
775 int index = VADDR_TO_PDENT(address); local
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/ramfs/
H A DList.h66 bool AddItem(const item_t &item, int32 index);
68 // bool AddList(list_t *list, int32 index);
72 bool RemoveItem(int32 index);
74 bool ReplaceItem(int32 index, const item_t &item);
82 const item_t &ItemAt(int32 index) const;
83 item_t &ItemAt(int32 index);
160 List<ITEM, DEFAULT_ITEM_SUPPLIER>::AddItem(const item_t &item, int32 index) argument
162 bool result = (index >= 0 && index <= fItemCount
165 _MoveItems(fItems + index,
231 int32 index = IndexOf(item); local
241 RemoveItem(int32 index) argument
255 ReplaceItem(int32 index, const item_t &item) argument
324 ItemAt(int32 index) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/network/ppp/shared/libkernelppp/headers/
H A DTemplateList.h71 bool AddItem(const item_t &item, int32 index);
73 // bool AddList(list_t *list, int32 index);
77 bool RemoveItem(int32 index);
79 bool ReplaceItem(int32 index, const item_t &item);
87 const item_t &ItemAt(int32 index) const;
88 item_t &ItemAt(int32 index);
165 TemplateList<ITEM, DEFAULT_ITEM_SUPPLIER>::AddItem(const item_t &item, int32 index) argument
167 bool result = (index >= 0 && index <= fItemCount
170 _MoveItems(fItems + index,
236 int32 index = IndexOf(item); local
246 RemoveItem(int32 index) argument
260 ReplaceItem(int32 index, const item_t &item) argument
329 ItemAt(int32 index) argument
[all...]
/haiku-fatelf/src/apps/debugger/model/
H A DStackTrace.cpp40 StackTrace::FrameAt(int32 index) const
42 return fStackFrames.ItemAt(index);
/haiku-fatelf/src/apps/icon-o-matic/generic/selection/
H A DSelection.h30 Selectable* SelectableAt(int32 index) const;
31 Selectable* SelectableAtFast(int32 index) const;
/haiku-fatelf/src/apps/mediaplayer/
H A DControllerView.cpp133 int32 index = fPlaylist->CurrentItemIndex() - 1; local
134 if (index < 0)
135 index = 0;
136 fPlaylist->SetCurrentItemIndex(index, true);
144 int32 index = fPlaylist->CurrentItemIndex() + 1; local
145 if (index >= fPlaylist->CountItems())
146 index = fPlaylist->CountItems() - 1;
147 fPlaylist->SetCurrentItemIndex(index, true);
/haiku-fatelf/src/apps/powerstatus/
H A DAPMDriverInterface.h20 virtual status_t GetBatteryInfo(battery_info* info, int32 index);
22 int32 index);
/haiku-fatelf/src/bin/gdb/bfd/
H A Dcpu-alpha.c40 #define NN(index) (&arch_info_struct[index])
/haiku-fatelf/src/bin/network/tcpdump/
H A Dstime.awk17 i = index($6,":")
/haiku-fatelf/src/documentation/docbook-xsl/fo/
H A Dpdf2index9 my $index = "";
13 if (/^<\/index/) {
14 $index .= $_;
17 $inindex = 1 if /^<index/;
20 $index .= $_ if /^\s*</;
25 while ($index =~ /^(.*?)((<phrase role=\"pageno\">.*?<\/phrase>\s*)+)/s) {
28 $index = $'; # '
96 $cindex .= $index;
/haiku-fatelf/src/preferences/time/
H A DDateTimeEdit.h30 virtual void DrawSection(uint32 index, BRect bounds,
32 virtual void DrawSeparator(uint32 index, BRect bounds);
34 virtual void SectionFocus(uint32 index);
50 int32 _SectionValue(int32 index) const;
73 virtual void DrawSection(uint32 index, BRect bounds,
75 virtual void DrawSeparator(uint32 index, BRect bounds);
77 virtual void SectionFocus(uint32 index);
94 int32 _SectionValue(int32 index) const;
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/ramfs/
H A DList.h67 bool AddItem(const item_t &item, int32 index);
69 // bool AddList(list_t *list, int32 index);
73 bool RemoveItem(int32 index);
75 bool ReplaceItem(int32 index, const item_t &item);
83 const item_t &ItemAt(int32 index) const;
84 item_t &ItemAt(int32 index);
161 List<ITEM, DEFAULT_ITEM_SUPPLIER>::AddItem(const item_t &item, int32 index) argument
163 bool result = (index >= 0 && index <= fItemCount
166 _MoveItems(fItems + index,
232 int32 index = IndexOf(item); local
242 RemoveItem(int32 index) argument
256 ReplaceItem(int32 index, const item_t &item) argument
325 ItemAt(int32 index) argument
[all...]

Completed in 291 milliseconds

1234567891011>>