Searched refs:location (Results 101 - 125 of 238) sorted by relevance

12345678910

/haiku/src/servers/notification/
H A DNotificationView.h61 BPoint location; member in struct:NotificationView::LineInfo
/haiku/src/apps/deskbar/
H A DBarWindow.h72 void SetDeskbarLocation(deskbar_location location,
H A DExpandoMenuBar.h87 TTeamMenuItem* TeamItemAtPoint(BPoint location,
H A DBarView.cpp932 BPoint location; local
933 menu->GetMouse(&location, &buttons);
939 if (frame.Contains(location)) {
945 menu->ConvertToScreen(&location);
953 deskbarMenu->ConvertFromScreen(&location);
954 if (deskbarMenu->Frame().Contains(location))
961 expandoMenuBar->ConvertFromScreen(&location);
962 BMenuItem* item = expandoMenuBar->TeamItemAtPoint(location);
1123 BPoint location; local
1124 GetMouse(&location,
[all...]
/haiku/src/kits/network/libnetservices/
H A DGeolocation.cpp158 BMessage location; local
159 result = data.FindMessage("location", &location);
164 result = location.FindDouble("lat", &lat);
167 result = location.FindDouble("lng", &lon);
235 = "https://location.services.mozilla.com/v1/geolocate?key="
/haiku/src/kits/debugger/dwarf/
H A DDwarfFile.h62 target_addr_t location,
80 const LocationDescription* location,
88 // The returned location will have DWARF
154 target_addr_t location,
185 const LocationDescription* location,
/haiku/src/bin/pkgman/
H A DPackageManager.h30 BPackageInstallationLocation location,
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_regdomain.c74 ic->ic_regdomain.location = ' '; /* both */
291 ie->cc[2] = (rd->location == 'I' ? 'I' :
292 rd->location == 'O' ? 'O' : ' ');
365 if (reg->rd.location != 'I' && reg->rd.location != 'O' &&
366 reg->rd.location != ' ') {
368 "%s: invalid location 0x%x\n", __func__, reg->rd.location);
/haiku/src/kits/debugger/debug_info/
H A DTeamDebugInfo.cpp52 SourceLocation location = key->GetSourceLocation(); local
53 hash = hash * 17 + location.Line();
54 hash = hash * 17 + location.Column();
74 // Source location and function name must also match.
155 Function* FunctionAtLocation(const SourceLocation& location) const
157 int32 index = fFunctions.BinarySearchIndexByKey(location,
163 // contain the location.
204 // functions will have the same source file and location
208 static int _CompareLocationFunction(const SourceLocation* location, argument
213 if (*location < functionLocatio
[all...]
H A DDwarfStackFrameDebugInfo.h63 ValueLocation* location,
/haiku/src/tests/kits/interface/layout/widget_layout_test/
H A DView.cpp79 View::SetLocation(BPoint location) argument
81 SetFrame(fFrame.OffsetToCopy(location));
140 BPoint location = fFrame.LeftTop(); local
141 return (fParent ? fParent->LocationInContainer() + location : location);
281 // doesn't have a child at the location.
H A DGroupView.cpp151 BPoint location = fInsets.LeftTop(); local
154 location.y = fInsets.top;
161 BRect cellFrame(location,
171 location.y += fRowInfos[row].size + fRowSpacing;
174 location.x += columnInfo.size + fColumnSpacing;
/haiku/src/servers/app/
H A DDesktopListener.h64 float location, bool isShifting) = 0;
122 float location, bool isShifting);
/haiku/src/kits/tracker/
H A DTracker.h109 void SelectPoseAtLocationSoon(node_ref parent, BPoint location);
179 void SelectPoseAtLocationInParent(node_ref parent, BPoint location);
H A DTextWidget.cpp648 BPoint location; local
649 location.y = textRect.bottom - view->FontInfo().descent;
650 location.x = textRect.left + 1;
679 drawView->DrawString(fittingText, location);
686 drawView->DrawString(fittingText, location);
699 drawView->DrawString(fittingText, location);
707 drawView->DrawString(fittingText, location + BPoint(1, 1));
714 drawView->DrawString(fittingText, location);
/haiku/src/servers/package/
H A DResultWindow.cpp87 ResultWindow::AddLocationChanges(const char* location, argument
104 BString().SetToFormat("in %s:", location));
H A DRoot.h49 BPackageInstallationLocation location);
/haiku/headers/os/interface/
H A DShelf.h71 BPoint location);
116 BPoint* location, uint32 uniqueID);
/haiku/src/apps/haikudepot/textview/
H A DTextEditor.h50 void SetCaret(BPoint location, bool extendSelection);
H A DTextDocumentLayout.cpp200 BPoint location(offset.x, offset.y + layout.y);
201 if (location.y > updateRect.bottom)
203 if (location.y + layout.layout->Height() > updateRect.top)
204 layout.layout->Draw(view, location);
/haiku/headers/private/debugger/model/
H A DUserBreakpoint.h82 const UserBreakpointLocation& location);
/haiku/src/apps/softwareupdater/
H A DUpdateManager.h33 BPackageInstallationLocation location,
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DBreakpointListView.cpp253 const UserBreakpointLocation& location = breakpoint->Location(); local
260 value.SetTo(location.GetFunctionID()->FunctionName(),
265 LocatableFile* sourceFile = location.SourceFile();
269 location.GetSourceLocation().Line() + 1);
/haiku/src/apps/haikudepot/server/
H A DAbstractServerProcess.cpp249 // the data should be decompressed in the temporary file location
384 BString location; local
387 location.SetTo(locationC);
404 if (location.Length() != 0) {
405 BUrl redirectUrl(result.Url(), location);
437 create such an alternative 'damaged' file location and move this file to
438 that location.
/haiku/src/kits/debugger/arch/x86/
H A DArchitectureX86.cpp424 // Check if the instruction pointer is at a readable location.
739 ValueLocation* location = new(std::nothrow) ValueLocation( local
741 if (location == NULL)
743 BReference<ValueLocation> locationReference(location,
750 if (!location->AddPiece(piece))
756 if (!location->AddPiece(piece))
760 if (!location->AddPiece(piece))
767 if (!location->AddPiece(piece))

Completed in 129 milliseconds

12345678910