Searched refs:frame (Results 1 - 25 of 954) sorted by last modified time

1234567891011>>

/haiku/src/apps/charactermap/
H A DCharacterView.cpp146 BRect frame = _FrameFor(c);
147 BView::ScrollTo(0.0f, frame.top);
285 BRect frame = _FrameFor(fTopCharacter);
286 if (!frame.IsValid())
289 BView::ScrollTo(0, frame.top - fTopOffset);
429 BRect frame;
431 bool hasCharacter = _GetCharacterAt(where, character, &frame);
441 Invalidate(frame);
446 fCurrentCharacterFrame = frame;
454 if (!_GetCharacterAt(fClickPoint, character, &frame))
[all...]
/haiku/src/servers/app/
H A DServerApp.cpp751 BRect frame; local
757 link.Read<BRect>(&frame);
765 *fDesktop->HWInterface(), frame, colorSpace, flags,
770 Signature(), frame.Width() + 1, frame.Height() + 1));
861 BRect frame; local
869 link.Read<BRect>(&frame);
879 frame, colorSpace, flags, bytesPerRow), true);
3143 BRect frame; local
3144 status_t status = fDesktop->GetScreenFrame(workspace, id, frame);
3700 BRect frame; local
[all...]
/haiku/src/preferences/screen/
H A DScreenWindow.cpp996 ScreenWindow::ScreenChanged(BRect frame, color_space mode) argument
999 if (frame.right <= Frame().right
1000 && frame.bottom <= Frame().bottom) {
1001 MoveTo((frame.Width() - Frame().Width()) / 2,
1002 (frame.Height() - Frame().Height()) / 2);
/haiku/src/apps/poorman/
H A DPoorManWindow.cpp47 PoorManWindow::PoorManWindow(BRect frame) argument
49 BWindow(frame, STR_APP_NAME, B_TITLED_WINDOW, B_AUTO_UPDATE_SIZE_LIMITS),
70 this->fFrame = frame;
623 if (m.FindRect("frame", &fFrame) != B_OK)
672 m.AddRect("frame", fFrame);
/haiku/src/apps/mediaplayer/
H A DController.cpp538 printf("Controller::SelectVideoTrack(%d) - invalid video frame rate: %.1f\n",
842 // to report the originally requested seek frame in TimePosition()
843 // until we could reach that frame.
856 // if next current frame == seek frame.
1088 // pass the last pending seek frame back to the caller, so
1089 // that the view of the current frame/time from the outside
1092 int64 frame;
1094 frame = fRequestedSeekFrame;
1096 frame
[all...]
/haiku/src/apps/installer/
H A DInstallerWindow.cpp69 LogoView(const BRect& frame);
85 LogoView::LogoView(const BRect& frame) argument
87 BView(frame, "logoview", B_FOLLOW_LEFT | B_FOLLOW_TOP,
/haiku/src/apps/drivesetup/
H A DDiskView.cpp349 // calculate size factor within parent frame
459 DiskView::DiskView(const BRect& frame, uint32 resizeMode, argument
462 Inherited(frame, "diskview", resizeMode,
H A DPartitionList.cpp415 PartitionListView::PartitionListView(const BRect& frame, uint32 resizeMode) argument
416 : Inherited(frame, "partitionlist", resizeMode, 0, B_NO_BORDER, true)
/haiku/src/apps/diskprobe/
H A DProbeView.cpp1039 BRect frame = fTypeEditorView->Frame(); local
1040 rect.left = frame.left;
1041 rect.top = frame.top;
1043 rect.right = frame.right;
1045 rect.bottom = frame.bottom;
/haiku/src/apps/activitymonitor/
H A DSettingsWindow.cpp154 BRect frame = window->Frame(); local
155 return BRect(frame.right - 150, frame.top + frame.Height() / 4,
156 frame.right + 200, frame.top + frame.Height() / 4 + 50);
/haiku/src/add-ons/screen_savers/glife/
H A DGLifeConfig.cpp30 GLifeConfig::GLifeConfig(BRect frame, GLifeState* pglsState) argument
32 BView(frame, "", B_FOLLOW_ALL_SIDES, B_WILL_DRAW),
39 BStringView* name = new BStringView(frame, B_EMPTY_STRING,
41 BStringView* author = new BStringView(frame, B_EMPTY_STRING, B_TRANSLATE("by Aaron Hill"),
45 fGridDelay = new BSlider(frame, "GridDelay",
56 fGridBorder = new BSlider(frame, "GridBorder", B_TRANSLATE("Grid border: "),
64 fGridWidth = new BSlider(frame, "GridWidth", B_TRANSLATE("Grid width: "),
72 fGridHeight = new BSlider(frame, "GridHeight", B_TRANSLATE("Grid height: "),
/haiku/src/kits/interface/
H A DSpinner.cpp79 BSpinner::BSpinner(BRect frame, const char* name, const char* label, argument
82 BAbstractSpinner(frame, name, label, message, resizingMode, flags)
/haiku/src/kits/tracker/
H A DContainerWindow.cpp1062 BRect frame(Frame());
1070 if (!frame.Intersects(screenFrame))
1245 if (decoratorSettings.FindRect("tab frame", &tabRect) == B_OK)
1249 BRect frame(Frame());
1251 float widthDiff = frame.Width() - PoseView()->Frame().Width();
1252 float heightDiff = frame.Height() - PoseView()->Frame().Height();
1254 // move frame left top on screen
1255 BPoint leftTop(frame.LeftTop());
1257 frame.OffsetTo(leftTop);
1261 frame
[all...]
H A DFilePanelPriv.cpp939 BRect frame(Frame());
940 if (node->Read(rectAttributeName, 0, B_RECT_TYPE, sizeof(BRect), &frame)
942 MoveTo(frame.LeftTop());
943 ResizeTo(frame.Width(), frame.Height());
/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...]
H A DAVCodecDecoder.cpp266 AVCodecDecoder::SeekedTo(int64 frame, bigtime_t time) argument
283 fFrame = frame;
398 TRACE("[a] decoding first audio frame chunk failed\n");
457 "output frame size: %d, count: %" B_PRId32 ", rate: %.2f\n",
515 TRACE("[v] decoding first video frame failed\n");
555 // first frame which we just decoded (that updates fCodecContext inside ffmpeg).
558 // presentation timestamps for each individual frame.
560 // TODO The field_rate is twice the frame rate for interlaced streams, so we need to determine
561 // if we are decoding an interlaced stream, and wether ffmpeg delivers every half-frame or not
602 properties of the decoded audio frame bein
[all...]
/haiku/src/apps/showimage/
H A DShowImageWindow.cpp134 ShowImageWindow::ShowImageWindow(BRect frame, const entry_ref& ref, argument
137 BWindow(frame, "", B_DOCUMENT_WINDOW, 0),
550 BRect frame = screen.Frame(); local
553 float maxWidth = frame.Width() + 1 - windowBorder - Frame().left;
554 float maxHeight = frame.Height() + 1 - windowBorder - Frame().top;
1123 BRect frame = fToolBar->Parent()->Bounds(); local
1124 frame.top = fToolBar->Frame().bottom + 1;
1125 fScrollArea->MoveTo(fScrollArea->Frame().left, frame.top);
1127 frame.Height() + 1);
1369 BRect frame; local
[all...]
H A DShowImageWindow.h57 ShowImageWindow(BRect frame,
/haiku/src/apps/terminal/
H A DTermWindow.cpp114 BRect frame(termView->Frame());
115 ResizeTo(frame.right + kTermViewOffset, frame.bottom + kTermViewOffset);
235 BRect frame; local
237 if (_LoadWindowPosition(&frame, &workspaces) == B_OK) {
241 if (frame.Width() <= screenFrame.Width()
242 && frame.Height() <= screenFrame.Height())
243 ResizeTo(frame.Width(), frame.Height());
245 MoveTo(frame
601 _LoadWindowPosition(BRect* frame, uint32* workspaces) argument
2093 BRect frame = window->Frame(); local
[all...]
/haiku/src/system/kernel/arch/x86/
H A Darch_int.cpp87 x86_invalid_exception(iframe* frame) argument
92 frame->vector, exception_name(frame->vector, name, sizeof(name)),
93 frame->ip, thread ? thread->id : -1);
98 x86_fatal_exception(iframe* frame) argument
102 exception_name(frame->vector, name, sizeof(name)), frame->error_code);
107 x86_unexpected_exception(iframe* frame) argument
115 switch (frame->vector) {
120 signalAddress = frame
216 x86_hardware_interrupt(struct iframe* frame) argument
264 x86_page_fault_exception(struct iframe* frame) argument
[all...]
/haiku/src/system/kernel/arch/riscv64/
H A Darch_int.cpp166 static void WriteRegisters(iframe* frame) argument
168 uint64* regs = &frame->ra;
208 WriteTrapInfo(iframe* frame) argument
211 dprintf("STrap("); WriteCause(frame->cause); dprintf(")\n");
212 dprintf(" sstatus: "); WriteSstatus(frame->status); dprintf("\n");
216 dprintf(" stval: 0x%" B_PRIx64 "\n", frame->tval);
220 WriteRegisters(frame);
243 // DumpMemory((uint64*)frame->sp, thread_get_current_thread()->kernel_stack_top - frame->sp);
353 STrap(iframe* frame) argument
[all...]
/haiku/src/system/kernel/arch/ppc/
H A Darch_int.cpp81 print_iframe(struct iframe *frame) argument
83 dprintf("iframe at %p:\n", frame);
84 dprintf("r0-r3: 0x%08lx 0x%08lx 0x%08lx 0x%08lx\n", frame->r0, frame->r1, frame->r2, frame->r3);
85 dprintf("r4-r7: 0x%08lx 0x%08lx 0x%08lx 0x%08lx\n", frame->r4, frame->r5, frame->r6, frame
[all...]
/haiku/src/system/kernel/arch/m68k/
H A Darch_int.cpp107 print_iframe(struct iframe *frame) argument
109 dprintf("iframe at %p:\n", frame);
111 frame->d[0], frame->d[1], frame->d[2], frame->d[3]);
113 frame->d[4], frame->d[5], frame->d[6], frame
[all...]
/haiku/src/system/kernel/arch/arm64/
H A Darch_int.cpp75 print_iframe(const char *event, struct iframe *frame) argument
81 frame->elr, frame->spsr);
83 frame->lr, frame->sp);
228 do_sync_handler(iframe * frame) argument
231 print_iframe("Sync abort", frame);
234 IFrameScope scope(frame);
237 switch (ESR_ELx_EXCEPTION(frame->esr)) {
244 bool write = (frame
384 do_error_handler(iframe * frame) argument
397 do_irq_handler(iframe * frame) argument
418 do_fiq_handler(iframe * frame) argument
[all...]
/haiku/src/system/kernel/arch/arm/
H A Darch_int.cpp103 print_iframe(const char *event, struct iframe *frame) argument
110 frame->r0, frame->r1, frame->r2, frame->r3,
111 frame->r4, frame->r5, frame->r6, frame->r7);
114 frame
349 arch_arm_page_fault(struct iframe *frame, addr_t far, uint32 fsr, bool isWrite, bool isExec) argument
446 arch_arm_data_abort(struct iframe *frame) argument
457 arch_arm_prefetch_abort(struct iframe *frame) argument
[all...]

Completed in 133 milliseconds

1234567891011>>