Searched refs:origin (Results 51 - 75 of 97) sorted by relevance

1234

/haiku/src/apps/text_search/
H A DGrepWindow.h26 virtual void FrameMoved(BPoint origin);
/haiku/src/servers/app/
H A DCanvas.h50 void SetDrawingOrigin(BPoint origin);
H A DDrawState.h61 void SetOrigin(BPoint origin);
H A DDrawState.cpp238 fOrigin = info.origin;
306 info.viewStateInfo.origin = fOrigin;
340 DrawState::SetOrigin(BPoint origin) argument
342 fOrigin = origin;
/haiku/src/apps/cortex/DormantNodeView/
H A DDormantNodeWindow.cpp125 BPoint origin,
124 Zoom( BPoint origin, float width, float height) argument
/haiku/src/servers/app/drawing/
H A DAlphaMask.cpp118 AlphaMask::SetCanvasGeometry(IntPoint origin, IntRect bounds) argument
122 if (origin == fCanvasOrigin && bounds.Width() == fCanvasBounds.Width()
127 fCanvasOrigin = origin;
132 fPreviousMask->SetCanvasGeometry(origin, bounds);
H A DAlphaMask.h39 IntPoint SetCanvasGeometry(IntPoint origin,
/haiku/headers/private/interface/
H A DViewPrivate.h131 BPoint origin; member in class:BPrivate::ViewState
/haiku/src/apps/showimage/
H A DShowImageWindow.h65 virtual void Zoom(BPoint origin, float width, float height);
/haiku/src/apps/cortex/NodeManager/
H A DNodeManager.h249 NodeRef* origin,
535 // AND INCLUDING the given origin node.
540 NodeRef* origin,
/haiku/src/apps/workspaces/
H A DWorkspaces.cpp168 virtual void FrameMoved(BPoint origin);
170 virtual void Zoom(BPoint origin, float width, float height);
809 WorkspacesWindow::FrameMoved(BPoint origin) argument
843 WorkspacesWindow::Zoom(BPoint origin, float width, float height) argument
872 origin = screen.Frame().RightBottom();
873 origin.x -= GetScreenBorderOffset() + width;
874 origin.y -= GetScreenBorderOffset() + height;
876 MoveTo(origin);
/haiku/headers/private/netservices2/
H A DExclusiveBorrow.h22 BBorrowError(const char* origin) argument
24 BError(origin)
H A DHttpFields.h77 InvalidInput(const char* origin, BString input);
H A DHttpRequest.h67 InvalidMethod(const char* origin, BString input);
/haiku/src/system/kernel/debug/
H A Duser_debugger.cpp629 // update the message's origin info first
630 debug_origin *origin = (debug_origin *)message; local
631 origin->thread = thread->id;
632 origin->team = thread->team->id;
633 origin->nub_port = nubPort;
1010 message.origin.thread = -1;
1011 message.origin.team = teamID;
1012 message.origin.nub_port = -1;
1121 message.origin.thread = threadID;
1122 message.origin
[all...]
/haiku/src/apps/serialconnect/libvterm/src/
H A Dvterm_internal.h93 int origin:1; member in struct:VTermState::__anon28
H A Dstate.c744 case 6: // DECOM - origin mode
747 state->mode.origin = val;
748 state->pos.row = state->mode.origin ? state->scrollregion_top : 0;
749 state->pos.col = state->mode.origin ? SCROLLREGION_LEFT(state) : 0;
848 reply = state->mode.origin;
1020 if(state->mode.origin) {
1204 if(state->mode.origin)
1221 if(state->mode.origin) {
1417 if(state->mode.origin) {
1645 state->mode.origin
[all...]
/haiku/src/kits/interface/
H A DPrintJob.cpp521 BPrintJob::_RecurseView(BView* view, BPoint origin, BPicture* picture, argument
532 view->SetOrigin(origin);
558 _RecurseView(child, origin + leftTop, picture, printRect);
566 view->SetOrigin(origin);
H A DTextView.cpp1758 if ((*fLines)[lineNum + 1]->origin <= point.y - fTextRect.top)
1781 result.y = line->origin + fTextRect.top;
1790 height = (line + 1)->origin - line->origin;
1848 if (point.y >= ((line + 1)->origin + fTextRect.top))
2063 float height = (*fLines)[endLine + 1]->origin
2064 - (*fLines)[startLine]->origin;
2068 height += (*fLines)[endLine + 1]->origin - (*fLines)[endLine]->origin;
3828 eraseRect.top = fTextRect.top + (*fLines)[fLines->NumLines()]->origin;
[all...]
H A DPicturePlayer.cpp207 clip_to_picture(void* _context, int32 token, const BPoint& origin, argument
212 context->user_data, token, origin, clipToInverse);
265 set_origin(void* _context, const BPoint& origin) argument
269 origin);
1364 const BPoint* origin; local
1365 if (callbacks.set_origin == NULL || !reader.Get(origin))
1368 callbacks.set_origin(userData, *origin);
H A DView.cpp157 origin.Set(0, 0);
242 info.origin = origin;
312 origin = info.viewStateInfo.origin;
526 BPoint origin; local
527 if (archive->FindPoint("_origin", &origin) == B_OK)
528 SetOrigin(origin);
1847 // initialize origin, scale and transform, new states start "clean".
1851 fState->origin
2023 BPoint origin = Origin(); local
[all...]
/haiku/headers/os/game/
H A DDirectWindow.h110 BPoint* origin = NULL) const;
/haiku/src/apps/poorman/
H A DPoorManWindow.cpp289 PoorManWindow::FrameMoved(BPoint origin) argument
291 fFrame.left = origin.x;
292 fFrame.top = origin.y;
343 PoorManWindow::Zoom(BPoint origin, float width, float height) argument
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DBTree.h187 status_t Copy(const Node* origin, uint32 start, uint32 end,
201 void _Copy(const Node* origin, uint32 at, uint32 from, uint32 to,
/haiku/src/tests/servers/app/painter/
H A Dmain.cpp145 // TODO: Painter behaves differently when origin has subpixel offset
146 // BPoint origin(20.3, 10.8);
147 BPoint origin(20, 10);
153 s.SetOrigin(origin);

Completed in 283 milliseconds

1234