Searched refs:location (Results 126 - 150 of 238) sorted by relevance

12345678910

/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DVariablesView.cpp1438 ValueLocation* location = node->NodeChild()->Location(); local
1439 if (location == NULL)
1450 if (location->CountPieces() > 1)
1454 ValuePieceLocation piece = location->PieceAt(0);
1541 tipData.SetToFormat("Unable to resolve location: %s", strerror(error));
1555 ValueLocation* location = child->Location(); local
1556 for (int32 i = 0; i < location->CountPieces(); i++) {
1557 ValuePieceLocation piece = location->PieceAt(i);
1581 tipData += error == B_OK && location->IsWritable()
2148 ValueLocation* location local
2646 ValueLocation* location = node->NodeChild()->Location(); local
3285 ValueLocation* location = NULL; local
[all...]
/haiku/src/add-ons/kernel/file_systems/udf/
H A DUdfStructures.h371 extent_address(uint32 location = 0, uint32 length = 0);
376 uint32 location() const { return B_LENDIAN_TO_HOST_INT32(_location); } function in struct:extent_address
379 void set_location(int32 location) { _location = B_HOST_TO_LENDIAN_INT32(location); } argument
402 uint32 _block; //!< Block location relative to start of corresponding partition
564 - The disk location of the tag redundantly stored in the tag itself
582 uint32 location() const { return B_LENDIAN_TO_HOST_INT32(_location); } function in struct:descriptor_tag
590 void set_location(uint32 location) { _location = B_HOST_TO_LENDIAN_INT32(location); } argument
767 void set_predecessor_volume_descriptor_sequence_location(uint32 location) argument
1277 set_sparing_table_location(uint8 index, uint32 location) argument
1326 set_metadata_file_location(uint32 location) argument
1331 set_metadata_mirror_file_location(uint32 location) argument
1336 set_metadata_bitmap_file_location(uint32 location) argument
[all...]
H A DRecognition.cpp334 descriptorSequence.location(), descriptorSequence.length()));
344 off_t block = descriptorSequence.location()+i;
491 descriptorSequence.location(), descriptorSequence.length()));
498 off_t block = descriptorSequence.location()+i;
/haiku/src/tests/servers/app/painter/
H A DPainter.h53 void SetPenLocation(const BPoint& location);
59 inline void MovePenTo(const BPoint& location) argument
60 { SetPenLocation(location); }
/haiku/src/apps/haikudepot/textview/
H A DTextEditor.cpp106 TextEditor::SetCaret(BPoint location, bool extendSelection) argument
112 int32 caretOffset = fLayout->TextOffsetAt(location.x, location.y,
/haiku/src/apps/debuganalyzer/gui/chart/
H A DChart.h40 void SetAxis(ChartAxisLocation location,
H A DChart.cpp164 Chart::SetAxis(ChartAxisLocation location, ChartAxis* axis) argument
166 switch (location) {
183 axis->SetLocation(location);
/haiku/src/kits/interface/textview_support/
H A DUndoBuffer.h95 int32 runArrayLength, int32 location,
/haiku/src/tests/kits/interface/layout/widget_layout_test/
H A DView.h27 void SetLocation(BPoint location);
/haiku/headers/private/debugger/debug_info/
H A DTeamDebugInfo.h91 const SourceLocation& location) const;
/haiku/src/system/boot/platform/u-boot/
H A Dvideo.cpp107 #warning TODO: Fix u-boot arm framebuffer location from fdt!
/haiku/src/apps/haikudepot/packagemanagement/
H A DPackageManager.h48 BPackageInstallationLocation location);
/haiku/src/system/libroot/posix/malloc_hoard2/
H A Dwrapper.cpp74 void* location; local
76 &symbolType, &location) == B_OK) {
77 if ((addr_t)address >= (addr_t)location) {
79 int32 newOffset = (addr_t)address - (addr_t)location;
/haiku/src/servers/app/font/
H A DFontStyle.h141 void SetFontData(FT_Byte* location, uint32 size);
H A DFontStyle.cpp273 FontStyle::SetFontData(FT_Byte* location, uint32 size) argument
280 fFontData = location;
/haiku/src/servers/app/decorator/
H A DDefaultWindowBehaviour.cpp321 float location = fWindow->TabLocation(); local
323 location += delta.x;
324 AdjustMultiTabLocation(location, true);
325 if (fDesktop->SetWindowTabLocation(fWindow, location, true))
331 void AdjustMultiTabLocation(float location, bool isShifting) argument
342 if (movingTab->tabOffset > location)
353 if (movingTab->tabOffset > location) {
354 if (location > neighbourTab->tabOffset
359 if (location + movingTab->tabRect.Width() < neighbourTab->tabOffset
682 // Compute the window center relative location o
[all...]
H A DTabDecorator.cpp607 // Resize rect at old location
610 // Resize rect at new location
623 // Old location
626 // New location
634 // Old location
637 // New location
762 TabDecorator::_SetTabLocation(Decorator::Tab* _tab, float location, argument
765 STRACE(("TabDecorator: Set Tab Location(%.1f)\n", location));
786 if (location < 0)
787 location
[all...]
/haiku/headers/private/package/manager/
H A DPackageManager.h69 BPackageInstallationLocation location,
221 BPackageInstallationLocation location,
/haiku/src/apps/softwareupdater/
H A DCheckManager.cpp43 CheckManager::CheckManager(BPackageInstallationLocation location, argument
46 BPackageManager(location, &fClientInstallationInterface, this),
/haiku/src/kits/package/manager/
H A DRepositoryBuilder.cpp195 BRepositoryBuilder::AddPackages(BPackageInstallationLocation location, argument
198 status_t error = fRepository.AddPackages(location);
/haiku/src/system/runtime_loader/
H A Delf.cpp829 void* location = (void*)(symbol->st_value local
840 patch_defined_symbol(image, symbolName, &location, &type);
845 *_location = location;
890 addr_t location = symbol->st_value + image->regions[0].delta; local
892 if (location <= (addr_t)address && location >= foundLocation) {
894 foundLocation = location;
897 if (location + symbol->st_size > (addr_t)address) {
/haiku/src/kits/debugger/arch/x86_64/
H A DArchitectureX8664.cpp501 // Check if the instruction pointer is at a readable location.
824 ValueLocation* location = new(std::nothrow) ValueLocation( local
826 if (location == NULL)
828 BReference<ValueLocation> locationReference(location,
835 if (!location->AddPiece(piece))
842 if (!location->AddPiece(piece))
/haiku/src/apps/deskbar/
H A DBarWindow.cpp368 // determines the actual location of the window
399 reply.AddInt32("location", (int32)DeskbarLocation());
407 TBarWindow::SetDeskbarLocation(deskbar_location location, bool newExpandState) argument
414 switch (location) {
472 deskbar_location location; local
474 if (message->FindInt32("location", (int32*)&location) == B_OK
476 SetDeskbarLocation(location, expand);
/haiku/src/servers/notification/
H A DNotificationView.cpp290 Bounds().Width() - l->location.x);
291 DrawString(text.String(), text.Length(), l->location);
476 titleLine->location = BPoint(iconRight + kEdgePadding, y);
507 line->location = BPoint(iconRight + kEdgePadding, y);
522 line->location.y += fontHeight;
/haiku/src/servers/app/
H A DServerPicture.cpp214 // are always offset by the current pen location
523 // NOTE: the picture data was recorded with a "set pen location"
526 BPoint location = canvas->CurrentState()->PenLocation(); local
529 canvas->PenToScreenTransform().Apply(&location);
530 location = canvas->GetDrawingEngine()->DrawString(string, length,
531 location, &delta);
533 canvas->PenToScreenTransform().Apply(&location);
534 canvas->CurrentState()->SetPenLocation(location);
556 BPoint location = canvas->GetDrawingEngine()->DrawString(string, length, local
559 canvas->PenToScreenTransform().Apply(&location);
[all...]

Completed in 177 milliseconds

12345678910