Searched refs:location (Results 76 - 100 of 238) sorted by relevance

12345678910

/haiku/src/servers/notification/
H A DNotificationWindow.cpp312 BPoint location(x, y);
359 location = BPoint(x, y);
361 location = BScreen().Frame().RightBottom();
362 location -= BPoint(width, height);
364 location = BScreen().Frame().LeftBottom();
365 location -= BPoint(0, height);
367 location = BScreen().Frame().RightTop();
368 location -= BPoint(width, 0);
370 location = BScreen().Frame().LeftTop();
373 MoveTo(location);
[all...]
/haiku/src/servers/package/
H A DRoot.cpp290 Root::GetVolume(BPackageInstallationLocation location) argument
292 switch ((BPackageInstallationLocation)location) {
308 // get the location and the volume
309 int32 location; local
310 if (message->FindInt32("location", &location) != B_OK
311 || location < 0
312 || location >= B_PACKAGE_INSTALLATION_LOCATION_ENUM_COUNT) {
318 Volume* volume = GetVolume((BPackageInstallationLocation)location);
/haiku/src/kits/interface/layouter/
H A DSimpleLayouter.cpp25 int32 location; member in class:SimpleLayouter::ElementLayoutInfo
29 location(0)
100 return fElements[element].location;
227 int location = 0; local
229 fLayoutInfo->fElements[i].location = location;
230 location += fSpacing + fLayoutInfo->fElements[i].size;
/haiku/src/apps/switcher/
H A DWindowsView.cpp274 WindowsView::WindowsView(team_id team, uint32 location) argument
292 _Orientation(location));
299 if (_Orientation(location) == B_HORIZONTAL) {
352 WindowsView::_Orientation(uint32 location) argument
354 return (location & (kTopEdge | kBottomEdge)) != 0
/haiku/src/apps/haikudepot/packagemanagement/
H A DOpenPackageProcess.cpp148 int32 location = InstallLocation(); local
149 if (location == B_PACKAGE_INSTALLATION_LOCATION_SYSTEM) {
153 } else if (location == B_PACKAGE_INSTALLATION_LOCATION_HOME) {
/haiku/src/kits/package/
H A DPackageRoster.cpp60 // We get information on the system package installation location.
222 BPackageInstallationLocation location, BInstallationLocationInfo& _info)
228 location, _info);
236 BPackageRoster::GetActivePackages(BPackageInstallationLocation location, argument
243 status_t error = GetInstallationLocationInfo(location, info);
256 BPackageRoster::IsPackageActive(BPackageInstallationLocation location, argument
263 status_t error = GetActivePackages(location, packageInfos);
221 GetInstallationLocationInfo( BPackageInstallationLocation location, BInstallationLocationInfo& _info) argument
/haiku/src/add-ons/screen_savers/glife/
H A DGLifeView.cpp191 BRect location(0,0,0,0);
192 Draw(location);
/haiku/src/kits/interface/
H A DToolTip.cpp67 BToolTip::SetMouseRelativeLocation(BPoint location) argument
69 fRelativeLocation = location;
/haiku/src/kits/debugger/model/
H A DUserBreakpoint.cpp99 UserBreakpoint::UserBreakpoint(const UserBreakpointLocation& location) argument
101 fLocation(location),
/haiku/headers/private/debugger/value/
H A DValueNode.h80 void SetLocationAndValue(ValueLocation* location,
125 void SetLocation(ValueLocation* location,
/haiku/3rdparty/vmware/
H A Dhaiku.vmx8 uuid.location = "56 4d 20 2e e7 51 21 3a-cf 1f 8c a4 85 aa 04 9b"
H A Dhaiku-alpha.vmx8 uuid.location = "56 4d 20 2e e7 51 21 3a-cf 1f 8c a4 85 aa 04 9b"
H A Dhaiku-nightly.vmx8 uuid.location = "56 4d 20 2e e7 51 21 3a-cf 1f 8c a4 85 aa 04 9b"
/haiku/src/kits/debugger/dwarf/
H A DDwarfFile.cpp116 // get the subprogram's frame base location
119 const LocationDescription* location = fSubprogramEntry->FrameBase(); local
120 if (!location->IsValid())
126 status_t error = fFile->_GetLocationExpression(fUnit, location,
159 // get the location description
160 LocationDescription* location = entry->GetLocationDescription();
161 if (location == NULL || !location->IsValid()) {
168 return fFile->_GetLocationExpression(fUnit, location,
768 DIESubprogram* subprogramEntry, target_addr_t location,
767 UnwindCallFrame(CompilationUnit* unit, uint8 addressSize, bool isBigEndian, DIESubprogram* subprogramEntry, target_addr_t location, const DwarfTargetInterface* inputInterface, DwarfTargetInterface* outputInterface, target_addr_t& _framePointer) argument
802 ResolveLocation(CompilationUnit* unit, uint8 addressSize, bool isBigEndian, DIESubprogram* subprogramEntry, const LocationDescription* location, const DwarfTargetInterface* targetInterface, target_addr_t instructionPointer, target_addr_t objectPointer, bool hasObjectPointer, target_addr_t framePointer, target_addr_t relocationDelta, ValueLocation& _result) argument
2296 _UnwindCallFrame(CompilationUnit* unit, uint8 addressSize, bool isBigEndian, DIESubprogram* subprogramEntry, target_addr_t location, const FDELookupInfo* info, const DwarfTargetInterface* inputInterface, DwarfTargetInterface* outputInterface, target_addr_t& _framePointer) argument
2620 target_addr_t location = context.Location() local
2656 target_addr_t location = augmentation.ReadEncodedAddress( local
2675 target_addr_t location = context.Location() local
2689 target_addr_t location = context.Location() local
2703 target_addr_t location = context.Location() local
2942 target_addr_t location = context.Location() local
3139 _GetLocationExpression(CompilationUnit* unit, const LocationDescription* location, target_addr_t instructionPointer, const void*& _expression, off_t& _length) const argument
[all...]
H A DCfaContext.h34 void SetLocation(target_addr_t location);
/haiku/headers/private/interface/
H A DToolTip.h32 virtual void SetMouseRelativeLocation(BPoint location);
/haiku/src/apps/debuganalyzer/gui/chart/
H A DLegendChartAxis.h25 virtual void SetLocation(ChartAxisLocation location);
/haiku/src/system/boot/platform/bios_ia32/
H A Dsmp_trampoline.S49 popl %eax # get the final stack location
51 // Clear the final stack location to notify the startup code that
/haiku/src/system/boot/platform/pxe_ia32/
H A Dsmp_trampoline.S49 popl %eax # get the final stack location
51 // Clear the final stack location to notify the startup code that
/haiku/src/tests/servers/app/resize_limits/
H A DResizeLimits.cpp10 virtual void FrameMoved(BPoint location);
/haiku/headers/private/package/manager/
H A DRepositoryBuilder.h55 BPackageInstallationLocation location,
/haiku/headers/private/debugger/model/
H A DStackFrameValueInfos.h43 ValueLocation* location);
/haiku/headers/private/app/
H A DServerProtocolStructs.h98 BPoint location; member in struct:ViewDrawStringInfo
/haiku/headers/os/interface/
H A DDeskbar.h37 status_t SetLocation(deskbar_location location,
/haiku/src/apps/softwareupdater/
H A DCheckManager.h34 BPackageInstallationLocation location,

Completed in 125 milliseconds

12345678910