Searched refs:index (Results 176 - 200 of 1857) sorted by last modified time

1234567891011>>

/haiku/src/kits/interface/
H A DMenuItem.cpp609 clone.AddInt32("index", fSuper->IndexOf(this));
844 BMenuItem::SetAutomaticTrigger(int32 index, uint32 trigger) argument
846 fTriggerIndex = index;
H A DColorControl.cpp1005 BColorControl::ResolveSpecifier(BMessage* message, int32 index, argument
1008 return BControl::ResolveSpecifier(message, index, specifier, form,
/haiku/src/kits/tracker/infowindow/
H A DGeneralInfoView.cpp252 for (int32 index = 0; ; index++) {
254 if (supportingAppList.FindString("applications", index,
260 if (index == 0)
/haiku/src/add-ons/kernel/file_systems/packagefs/
H A Dkernel_interface.cpp835 // #pragma mark - index directory & index operations
838 // NOTE: We don't do any locking in the index dir hooks, since once mounted
839 // the index directory is immutable.
892 // get the next index
893 Index* index = iterator->Next(); local
894 if (index == NULL) {
900 if (!set_dirent_name(buffer, bufferSize, index->Name())) {
950 Index* index = volume->FindIndex(StringKey(name)); local
951 if (index
[all...]
/haiku/src/system/kernel/
H A Dsem.cpp69 // computing the object index (id % sMaxSems), locking the respective
273 \param slot The index of the semaphore slot.
1059 int32 index = 0; local
1064 while (sem != NULL && index < newIndex) {
1066 index++;
1077 newIndex = index + 1;
/haiku/src/kits/tracker/
H A DTrackerInitialState.cpp163 for (int32 index = 0; ; index++) {
165 if (fExtraAttrs.FindString("attr:public_name", index, &oldPublicName)
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DInode.cpp568 int32 index = 0, maxIndex = 0; local
569 for (; !item->IsLast(node); item = item->Next(), index++) {
575 maxIndex = index;
591 // Luckily, this doesn't cause any index updates
626 Inode::_RemoveSmallData(bfs_inode* node, small_data* item, int32 index) argument
655 iterator.Next()->Update(index, -1);
676 int32 index = 0; local
679 index++;
689 status = _RemoveSmallData(node, item, index);
736 int32 index local
988 _RemoveAttribute(Transaction& transaction, const char* name, bool hasIndex, Index* index) argument
1494 int32 index = start / indirectSize; local
1979 int32 index = (start % indirectSize) / directSize; local
2099 int32 index = start / indirectSize; local
2896 int32 index = 0; local
2965 Update(uint16 index, int8 change) argument
[all...]
H A DBPlusTree.cpp51 inline off_t ValueAt(uint32 index) const
53 return BFS_ENDIAN_TO_HOST_INT64(values[index]);
56 inline void SetValueAt(uint32 index, off_t value) argument
58 values[index] = HOST_ENDIAN_TO_BFS_INT64(value);
71 bool _FindInternal(off_t value, int32& index) const;
117 bool IsSet(size_t index) const;
118 void Set(size_t index, bool set);
1199 const bplustree_node* node, uint16 index, off_t value)
1203 off_t oldValue = BFS_ENDIAN_TO_HOST_INT64(values[index]);
1275 values[index]
1198 _InsertDuplicate(Transaction& transaction, CachedNode& cached, const bplustree_node* node, uint16 index, off_t value) argument
1365 _InsertKey(bplustree_node* node, uint16 index, uint8* key, uint16 keyLength, off_t value) argument
1828 _RemoveDuplicate(Transaction& transaction, const bplustree_node* node, CachedNode& cached, uint16 index, off_t value) argument
2034 _RemoveKey(bplustree_node* node, uint16 index) argument
2931 KeyAt(int32 index, uint16* keyLength) const argument
3056 Set(size_t index, bool set) argument
3123 int32 index = Find(value); local
[all...]
/haiku/src/kits/debugger/dwarf/
H A DDwarfFile.h52 CompilationUnit* CompilationUnitAt(int32 index) const;
135 uint64 index, const char*& value) const;
137 uint64 index, uint64& value) const;
H A DDwarfFile.cpp690 DwarfFile::CompilationUnitAt(int32 index) const
692 return fCompilationUnits.ItemAt(index);
1557 DwarfFile::_ReadStringIndirect(BaseUnit* unit, uint64 index, const char*& value) const argument
1567 if (strOffsetsBase + index * offsetSize >= fDebugStrOffsetsSection->Size()) {
1568 WARNING("Invalid DW_FORM_strx* index: %" B_PRIu64 "\n", index);
1574 ? ((uint64*)strOffsets)[index]
1575 : ((uint32*)strOffsets)[index];
1588 DwarfFile::_ReadAddressIndirect(BaseUnit* unit, uint64 index, uint64& value) const argument
1597 if (addrBase + index * uni
1728 uint64 index = dataReader.ReadUnsignedLEB128(0); local
1738 uint64 index = dataReader.ReadUnsignedLEB128(0); local
1782 uint64 index = dataReader.ReadUInt(numBytes, 0); local
1796 uint64 index = dataReader.ReadUInt(numBytes, 0); local
[all...]
H A DDwarfExpressionEvaluator.cpp348 uint8 index = fDataReader.Read<uint8>(0); local
349 _AssertMinStackSize(index + 1);
350 _Push(fStack[fStackSize - index - 1]);
H A DCompilationUnit.cpp100 CompilationUnit::DirectoryAt(int32 index) const
102 BString* directory = fDirectories.ItemAt(index);
128 CompilationUnit::FileAt(int32 index, const char** _directory) const argument
130 if (File* file = fFiles.ItemAt(index)) {
H A DCompilationUnit.h48 const char* DirectoryAt(int32 index) const;
52 const char* FileAt(int32 index,
H A DBaseUnit.h68 void GetEntryAt(int index, DebugInfoEntry*& entry,
H A DBaseUnit.cpp81 BaseUnit::GetEntryAt(int index, DebugInfoEntry*& entry, argument
84 entry = fEntries[index];
85 offset = fEntryOffsets[index];
/haiku/src/apps/haikudepot/textview/
H A DParagraph.cpp75 Paragraph::TextSpanAtIndex(int32 index) const
77 return fTextSpans[index];
134 int32 index = 0; local
138 while (index < countTextSpans) {
139 const TextSpan& span = fTextSpans[index];
143 index++;
146 if (countTextSpans == index)
150 // Try to merge with span at index if the TextStyles are equal
151 TextSpan span = fTextSpans[index];
154 fTextSpans[index]
192 int32 index = 0; local
[all...]
/haiku/src/add-ons/kernel/file_systems/ext2/
H A Dkernel_interface.cpp388 size_t index = 0, max = *_count; local
405 if (index > 0 && (vecs[index - 1].offset
406 == blockOffset - vecs[index - 1].length
407 || (vecs[index - 1].offset == -1 && block == 0))) {
408 vecs[index - 1].length += blockLength;
410 if (index >= max) {
412 *_count = index;
418 vecs[index].offset = blockOffset;
420 vecs[index]
1570 int32 index = *(int32 *)_cookie; local
[all...]
/haiku/src/apps/deskbar/
H A DExpandoMenuBar.cpp141 int32 index; local
216 index = message->FindInt32("itemIndex");
217 item = dynamic_cast<TTeamMenuItem*>(ItemAt(index));
229 index = message->FindInt32("itemIndex");
230 item = dynamic_cast<TTeamMenuItem*>(ItemAt(index));
514 int32 index = itemList.IndexOf(item); local
519 (BMenuItem*)(itemList.ItemAt(++index)))) != NULL) {
574 for (int32 index = 0; index < itemCount; index
[all...]
/haiku/src/kits/debugger/debug_info/
H A DDwarfTypes.h297 virtual BaseType* BaseTypeAt(int32 index) const;
300 virtual DataMember* DataMemberAt(int32 index) const;
303 virtual TemplateParameter* TemplateParameterAt(int32 index) const;
354 virtual ArrayDimension* DimensionAt(int32 index) const;
365 DwarfArrayDimension* DwarfDimensionAt(int32 index) const
366 { return fDimensions.ItemAt(index); }
458 virtual EnumeratorValue* ValueAt(int32 index) const;
534 virtual FunctionParameter* ParameterAt(int32 index) const;
543 DwarfFunctionParameter* DwarfParameterAt(int32 index) const
544 { return fParameters.ItemAt(index); }
[all...]
H A DDwarfTypes.cpp713 DwarfCompoundType::BaseTypeAt(int32 index) const
715 return fInheritances.ItemAt(index);
727 DwarfCompoundType::DataMemberAt(int32 index) const
729 return fDataMembers.ItemAt(index);
741 DwarfCompoundType::TemplateParameterAt(int32 index) const
743 return fTemplateParameters.ItemAt(index);
1030 DwarfArrayType::DimensionAt(int32 index) const
1032 return fDimensions.ItemAt(index);
1073 int64 index = indexPath.IndexAt(dimensionIndex); local
1138 if (dimensionStride == 0 && index !
[all...]
H A DDwarfImageDebugInfo.cpp110 virtual uint32 RegisterValueType(uint32 index) const
112 const Register* reg = _RegisterAt(index);
116 virtual bool GetRegisterValue(uint32 index, BVariant& _value) const argument
121 virtual bool SetRegisterValue(uint32 index, const BVariant& value) argument
126 virtual bool IsCalleePreservedRegister(uint32 index) const
128 const Register* reg = _RegisterAt(index);
161 int32 index = fFromDwarfMap->MapRegisterIndex(dwarfIndex); local
162 return index >= 0 && index < fRegisterCount ? fRegisters + index
197 GetRegisterValue(uint32 index, BVariant& _value) const argument
205 SetRegisterValue(uint32 index, const BVariant& value) argument
[all...]
/haiku/src/apps/people/
H A DPeopleApp.cpp112 int32 index = 0; local
115 if (info.FindInt32("attr:type", index, &type) != B_OK)
118 if (info.FindBool("attr:editable", index, &editable) != B_OK)
127 if (info.FindString("attr:public_name", index,
131 if (info.FindString("attr:name", index,
140 index++;
266 int32 index = 0; local
267 while (message->HasRef("refs", index)) {
269 message->FindRef("refs", index++, &ref);
H A DPersonView.cpp236 int32 index = 0; local
237 while ((item = fGroups->ItemAt(index)) != NULL) {
240 index++;
244 fGroups->AddItem(new BMenuItem(text, message), index);
/haiku/src/apps/mail/
H A DMailWindow.cpp2468 int32 index = 0; local
2469 while ((item = (TListItem*)fEnclosuresView->fList->ItemAt(index++))
3004 int32 index = 0; local
3005 while ((item = fSaveAddrMenu->ItemAt(index)) != NULL) {
3014 index++;
3020 fSaveAddrMenu->AddItem(new BMenuItem(address, msg), index);
3169 for (int32 index = 0; /*index < count*/; index++) {
3172 if (message.FindString("menuSelection", index,
[all...]
/haiku/src/apps/mediaplayer/
H A DMainWin.h65 virtual BHandler* ResolveSpecifier(BMessage* message, int32 index,
121 int32 index);
122 void _RemovePlaylistItem(int32 index);
123 void _MarkPlaylistItem(int32 index);

Completed in 169 milliseconds

1234567891011>>