Searched refs:frame (Results 351 - 375 of 954) sorted by relevance

<<11121314151617181920>>

/haiku/src/kits/debugger/controllers/
H A DThreadHandler.cpp377 StackFrame* frame = stackTrace->FrameAt(0); local
379 TRACE_CONTROL(" ip: %#" B_PRIx64 "\n", frame->InstructionPointer());
381 target_addr_t frameIP = frame->GetCpuState()->InstructionPointer();
384 if (frame->Type() == STACK_FRAME_TYPE_SYSCALL) {
386 // the return address, unlike the stack frame's instruction pointer)
410 status_t error = _InstallTemporaryBreakpoint(frame->ReturnAddress());
416 fPreviousFrameAddress = frame->FrameAddress();
424 fStepStatement = _GetStatementAtInstructionPointer(frame);
439 fPreviousFrameAddress = frame->FrameAddress();
442 if (!_DoStepOver(frame
553 _GetStatementAtInstructionPointer(StackFrame* frame) argument
709 StackFrame* frame = stackTrace->FrameAt(0); local
827 StackFrame* frame = stackTrace->FrameAt(0); local
929 StackFrame* frame = stackTrace->FrameAt(0); local
[all...]
/haiku/src/kits/interface/
H A DTextInput.cpp30 _BTextInput_::_BTextInput_(BRect frame, BRect textRect, uint32 resizeMask, argument
33 BTextView(frame, "_input_", textRect, resizeMask, flags),
143 BRect frame = Frame(); local
144 frame.InsetBy(-1.0, -1.0);
145 parent->Invalidate(frame);
/haiku/src/servers/app/drawing/interface/virtual/
H A DViewHWInterface.cpp149 CardWindow(BRect frame);
318 CardWindow::CardWindow(BRect frame) argument
320 BWindow(frame, "Haiku App Server", B_TITLED_WINDOW,
350 BRect frame = fUpdateRegion.Frame(); local
351 if (frame.IsValid()) {
352 fView->Invalidate(frame);
394 CardWindow::Invalidate(const BRect& frame) argument
397 fView->Invalidate(frame);
483 BRect frame(0.0, 0.0, fDisplayMode.virtual_width - 1,
509 fWindow = new CardWindow(frame
802 Invalidate(const BRect& frame) argument
813 CopyBackToFront(const BRect& frame) argument
[all...]
/haiku/src/apps/login/
H A DLoginApp.cpp65 BRect frame(0, 0, 450 * sizeDelta, 150 * sizeDelta);
66 frame.OffsetBySelf(screen.Frame().Width()/2 - frame.Width()/2,
67 screen.Frame().Height()/2 - frame.Height()/2);
68 fLoginWindow = new LoginWindow(frame);
H A DLoginView.h26 LoginView(BRect frame);
/haiku/src/system/kernel/arch/m68k/
H A Darch_thread.cpp46 m68k_push_iframe(struct iframe_stack *stack, struct iframe *frame) argument
49 stack->frames[stack->index++] = frame;
89 struct iframe *frame = thread->arch_info.iframes.frames[i]; local
90 if ((frame->cpu.sr & (1 << M68K_SR_S)) == 0)
91 return frame;
165 // space for frame pointer and return address, and stack frames must be
257 /** Saves everything needed to restore the frame in the child fork in the
268 /** Restores the frame from a forked team as specified by the provided
/haiku/src/preferences/keymap/
H A DKeyboardLayout.cpp356 TRACE(" add %ld (%g,%g)\n", key.code, key.frame.left, key.frame.top);
371 fBounds = key.frame | fBounds;
472 key.frame.OffsetTo(rowLeftTop);
473 rowLeftTop.x = key.frame.left + key.frame.Width() * num;
495 key.frame.OffsetTo(rowLeftTop);
496 rowLeftTop.x = key.frame.right;
497 fBounds = key.frame | fBounds;
502 indicator->frame
[all...]
/haiku/src/preferences/locale/
H A DLanguageListView.cpp56 LanguageListItem::DrawItem(BView* owner, BRect frame, bool complete) argument
58 DrawItemWithTextOffset(owner, frame, complete, 0);
63 LanguageListItem::DrawItemWithTextOffset(BView* owner, BRect frame, argument
78 owner->FillRect(frame);
99 frame.left + be_control_look->DefaultLabelSpacing() + textOffset,
100 frame.top + BaselineOffset());
159 LanguageListItemWithFlag::DrawItem(BView* owner, BRect frame, bool complete) argument
162 DrawItemWithTextOffset(owner, frame, complete, 0);
167 DrawItemWithTextOffset(owner, frame, complete,
170 BRect iconFrame(frame
[all...]
/haiku/src/tests/kits/interface/layout/widget_layout_test/
H A DViewContainer.cpp18 ViewContainer::ViewContainer(BRect frame) argument
19 : BView(frame, "view container", B_FOLLOW_NONE, B_WILL_DRAW),
20 View(frame.OffsetToCopy(B_ORIGIN)),
/haiku/src/tests/kits/interface/menu/menuworld/
H A DTestMenuBuilder.cpp81 BRect frame; local
89 frame.Set(left, top, left + itemWidth - 1,
91 pMenu->AddItem(pItem, frame);
/haiku/src/preferences/repositories/
H A DTaskTimer.cpp92 // The correct frame for the alert is not available until
153 BRect frame = fTimeoutAlert->Frame(); local
166 newAlert->MoveTo(frame.left, frame.top);
/haiku/src/tests/add-ons/kernel/drivers/audio/
H A Dmulti_audio_test.cpp71 set_frame(char* frame, uint32 format, float value) argument
75 *(uint8*)frame = uint8(value * INT8_MAX) + 128;
78 *(int8*)frame = int8(value * INT8_MAX);
81 *(int16*)frame = int16(value * INT16_MAX);
87 *(int32*)frame = int32(value * INT32_MAX);
90 *(float*)frame = value;
400 for (uint32 frame = 0;
401 frame < bufferList.return_playback_buffer_size; frame++) {
402 set_frame(dest, formatInfo.output.format, sin((x + frame) / 32.
[all...]
/haiku/src/apps/workspaces/
H A DWorkspaces.cpp126 WorkspacesView(BRect frame, bool showDragger);
167 virtual void ScreenChanged(BRect frame, color_space mode);
241 // we now also store the frame of the screen to know
242 // in which context the window frame has been chosen
243 BRect frame; local
244 if (file.Read(&frame, sizeof(BRect)) == sizeof(BRect))
245 fScreenFrame = frame;
255 // if the current screen frame is different from the one
256 // just loaded, we need to alter the window frame accordingly
288 // don't change the position if the screen frame has
317 SetWindowFrame(BRect frame) argument
326 WorkspacesView(BRect frame, bool showDragger = true) argument
766 BRect frame = fSettings->ScreenFrame(); local
[all...]
/haiku/src/add-ons/media/plugins/ffmpeg/
H A DAVFormatReader.cpp147 virtual status_t Seek(uint32 flags, int64* frame,
397 // TODO: Find a way to always calculate a correct frame rate...
457 StreamBase::Seek(uint32 flags, int64* frame, bigtime_t* time) argument
472 *frame, *time);
477 // based on frame.
478 *time = (bigtime_t)(*frame * 1000000.0 / frameRate + 0.5);
576 *frame = (uint64)(*time * frameRate / 1000000LL + 0.5);
577 TRACE_SEEK(" seeked frame: %" B_PRId64 "\n", *frame);
613 // time/frame unmodifie
1306 FindKeyFrame(uint32 flags, int64* frame, bigtime_t* time) const argument
1407 Seek(uint32 flags, int64* frame, bigtime_t* time) argument
1753 Seek(void* _cookie, uint32 seekTo, int64* frame, bigtime_t* time) argument
1762 FindKeyFrame(void* _cookie, uint32 flags, int64* frame, bigtime_t* time) argument
[all...]
/haiku/headers/os/interface/
H A DStringItem.h24 virtual void DrawItem(BView* owner, BRect frame,
/haiku/src/add-ons/media/media-add-ons/finepix_webcam/FinePixUSBKit/
H A DFinePix.h43 int GetPic(uint8 *frame, int &total_size); // get pictures!
/haiku/src/add-ons/media/media-add-ons/usb_webcam/
H A DCamBufferedFilterInterface.h28 // size of the buffer required for reading a whole frame
31 // frame handling
34 virtual status_t SetVideoFrame(BRect frame);
/haiku/src/add-ons/screen_savers/slideshowsaver/
H A DSlideShowConfigView.h57 SlideShowConfigView(const BRect &frame, const char *name, uint32 resize,
/haiku/src/add-ons/translators/wonderbrush/
H A DCanvas.h24 Canvas(BRect frame);
/haiku/src/apps/bootmanager/
H A DFileSelectionPage.h25 BRect frame, const char* name,
/haiku/src/apps/cortex/DormantNodeView/
H A DDormantNodeView.h67 BRect frame,
/haiku/src/apps/debuganalyzer/gui/
H A DSubWindow.h40 BRect frame, const char* title,
/haiku/src/apps/icon-o-matic/generic/gui/
H A DNummericalTextView.h16 NummericalTextView(BRect frame,
/haiku/src/apps/icon-o-matic/generic/gui/popup_control/
H A DPopupControl.h28 virtual BRect layout(BRect frame) = 0;
/haiku/src/apps/mediaplayer/media_node_framework/audio/
H A DAudioReader.h28 bigtime_t TimeForFrame(int64 frame) const;

Completed in 238 milliseconds

<<11121314151617181920>>