Searched refs:frame (Results 201 - 225 of 1165) sorted by relevance

1234567891011>>

/haiku-fatelf/src/add-ons/media/media-add-ons/finepix_webcam/FinePixUSBKit/
H A DFinePix.cpp117 int FinePix::GetPic(uint8 *frame, int &total_size) argument
122 /* Request a frame */
123 fprintf(stderr,"request a frame\n");
140 /* Read the frame */
146 fprintf(stderr,"reading part of the frame\n");
148 ret = bulk_in->BulkTransfer(&frame[offset], MAX_BUFFER_SIZE);
150 fprintf(stderr,"frame: %x, %x, %x, %x, %x, %x, %x, %x, %x, %x, %x, %x\n",
151 frame[offset+0], frame[offset+1],frame[offse
[all...]
/haiku-fatelf/src/kits/interface/
H A DAbstractLayout.cpp18 const char* const kFrameField = "BAbstractLayout:frame";
50 virtual void SetFrame(const BRect& frame) = 0;
72 frame(-1, -1, 0, 0),
119 return frame;
122 void SetFrame(const BRect& frame) argument
124 if (frame == this->frame)
126 this->frame = frame;
149 err = archive->AddRect(kFrameField, frame);
177 BRect frame; member in struct:BAbstractLayout::DataProxy
235 SetFrame(const BRect& frame) argument
387 SetFrame(BRect frame) argument
[all...]
H A DMenuField.cpp45 const char* const kFrameField = "BMenuField:layoutItem:frame";
60 virtual void SetFrame(BRect frame);
88 virtual void SetFrame(BRect frame);
136 BMenuField::BMenuField(BRect frame, const char* name, const char* label, argument
139 BView(frame, name, resize, flags)
143 TRACE("frame.width: %.2f, height: %.2f\n", frame.Width(), frame.Height());
147 frame.OffsetTo(B_ORIGIN);
148 _InitMenuBar(menu, frame, fals
154 BMenuField(BRect frame, const char* name, const char* label, BMenu* menu, bool fixedSize, uint32 resize, uint32 flags) argument
1130 _InitMenuBar(BMenu* menu, BRect frame, bool fixedSize) argument
1312 SetFrame(BRect frame) argument
1435 SetFrame(BRect frame) argument
[all...]
/haiku-fatelf/src/tests/kits/interface/flatten_picture/
H A DPictureTest.cpp40 OffscreenBitmap(BRect frame, color_space colorSpace);
56 OffscreenBitmap::OffscreenBitmap(BRect frame, color_space colorSpace) argument
57 : fFrame(frame)
63 BBitmap *bitmap = new BBitmap(frame, fColorSpace, true);
68 BView *view = new BView(frame, "offscreen", B_FOLLOW_ALL, B_WILL_DRAW);
185 PictureTest::Test(draw_func* func, BRect frame) argument
189 fDirectBitmap = CreateBitmap(func, frame);
192 BPicture *picture = RecordPicture(func, frame);
200 fBitmapFromPicture = CreateBitmap(picture, frame);
203 fBitmapFromRestoredPicture = CreateBitmap(archivedPicture, frame);
224 CreateBitmap(draw_func* func, BRect frame) argument
233 RecordPicture(draw_func* func, BRect frame) argument
249 CreateBitmap(BPicture *picture, BRect frame) argument
[all...]
/haiku-fatelf/src/apps/launchbox/
H A DMainWindow.cpp31 MainWindow::MainWindow(const char* name, BRect frame, bool addDefaultButtons) argument
33 BWindow(frame, name, B_TITLED_WINDOW_LOOK, B_NORMAL_WINDOW_FEEL,
58 MainWindow::MainWindow(const char* name, BRect frame, BMessage* settings) argument
60 BWindow(frame, name,
213 if (message->FindRect("frame", &namePanelFrame) == B_OK) {
307 MainWindow::ScreenChanged(BRect frame, color_space format) argument
373 // restore window frame
374 BRect frame; local
375 if (message->FindRect("window frame", &frame)
517 BRect frame = Frame(); local
542 _AdjustLocation(BRect frame) argument
[all...]
/haiku-fatelf/src/tests/servers/app/scrolling/
H A Dmain.cpp18 TestView(BRect frame, const char* name, argument
20 : BView(frame, name, resizeFlags, flags),
110 show_window(BRect frame, const char* name) argument
112 BWindow* window = new BWindow(frame, name,
135 BRect frame(50.0, 50.0, 300.0, 250.0);
136 show_window(frame, "Scrolling Test");
/haiku-fatelf/src/apps/cortex/ValControl/
H A DValControl.cpp60 ValControl::ValControl(BRect frame, const char* name, const char* label, argument
63 : BControl(frame, name, label, message, B_FOLLOW_TOP|B_FOLLOW_LEFT,
77 _AllocBackBuffer(frame.Width(), frame.Height());
210 PRINT(("\n cached frame (%.1f,%.1f)-(%.1f,%.1f) + pad(%.1f)\n",
211 e.frame.left, e.frame.top, e.frame.right, e.frame.bottom,
217 PRINT((" real frame (
[all...]
/haiku-fatelf/src/add-ons/input_server/devices/keyboard/
H A DTeamListItem.cpp67 TeamListItem::DrawItem(BView* owner, BRect frame, bool complete) argument
74 BRect r(frame);
91 frame.left += 4;
92 BRect iconFrame(frame);
100 frame.left += 16;
110 owner->MovePenTo(frame.left + 8, frame.top + ((frame.Height()
/haiku-fatelf/src/add-ons/screen_savers/glife/
H A DGLifeConfig.cpp29 GLifeConfig::GLifeConfig(BRect frame, GLifeState* pglsState) argument
31 BView(frame, "", B_FOLLOW_ALL_SIDES, B_WILL_DRAW),
38 BStringView* name = new BStringView(frame, B_EMPTY_STRING,
40 BStringView* author = new BStringView(frame, B_EMPTY_STRING,
44 fGridDelay = new BSlider(frame, "GridDelay",
55 fGridBorder = new BSlider(frame, "GridBorder",
65 fGridWidth = new BSlider(frame, "GridWidth",
75 fGridHeight = new BSlider(frame, "GridHeight",
/haiku-fatelf/src/apps/bootmanager/
H A DUninstallPage.cpp26 UninstallPage::UninstallPage(BMessage* settings, BRect frame, const char* name) argument
28 WizardPageView(settings, frame, name, B_FOLLOW_ALL,
H A DWizardPageView.h20 WizardPageView(BMessage* settings, BRect frame,
30 virtual BTextView* CreateDescription(BRect frame, const char* name,
/haiku-fatelf/src/apps/cortex/support/
H A DScrollHelpers.h53 ScrollProxyView(IScrollTarget* pTarget, BRect frame) : argument
55 BView(frame, "scrollProxy", B_FOLLOW_LEFT|B_FOLLOW_TOP, 0) {}
/haiku-fatelf/src/apps/icon-o-matic/generic/gui/
H A DStringTextView.cpp15 StringTextView::StringTextView(BRect frame, const char* name, argument
19 : InputTextView(frame, name, textRect, resizingMode, flags),
/haiku-fatelf/src/apps/mediaplayer/supplier/
H A DVideoTrackSupplier.h28 virtual status_t FindKeyFrameForFrame(int64* frame) = 0;
30 virtual status_t SeekToFrame(int64* frame) = 0;
/haiku-fatelf/src/kits/media/
H A DReaderPlugin.cpp35 Reader::Seek(void* cookie, uint32 flags, int64* frame, bigtime_t* time) argument
42 Reader::FindKeyFrame(void* cookie, uint32 flags, int64* frame, bigtime_t* time) argument
/haiku-fatelf/src/libs/print/libprint/
H A DBlockingWindow.cpp69 HWindow::HWindow(BRect frame, const char *title, window_type type, uint32 flags, argument
71 : BWindow(frame, title, type, flags, workspace)
77 HWindow::HWindow(BRect frame, const char *title, window_look look, window_feel feel, argument
79 : BWindow(frame, title, look, feel, flags, workspace)
142 BlockingWindow::BlockingWindow(BRect frame, const char *title, window_type type, argument
144 : HWindow(frame, title, type, flags, workspace)
150 BlockingWindow::BlockingWindow(BRect frame, const char *title, window_look look, argument
152 : HWindow(frame, title, look, feel, flags, workspace)
/haiku-fatelf/src/preferences/touchpad/
H A Dmain.cpp23 TouchpadPrefWindow(BRect frame, const char* title, window_type type, argument
26 BWindow(frame, title, type, flags)
/haiku-fatelf/src/servers/app/
H A DScreenConfigurations.h21 BRect frame; member in struct:screen_configuration
38 const BRect& frame,
/haiku-fatelf/src/tests/kits/interface/picture/
H A DPictureTest.cpp17 Svg2PictureWindow(BRect frame, const char *filename) argument
18 : BWindow(frame, "Svg2Picture", B_TITLED_WINDOW, 0) {
28 OriginalView(BRect frame);
35 PictureView(BRect frame);
85 OriginalView::OriginalView(BRect frame) argument
86 : BBox(frame, "original_view", B_FOLLOW_ALL_SIDES, B_WILL_DRAW)
99 PictureView::PictureView(BRect frame) argument
100 : BBox(frame, "pict_view", B_FOLLOW_ALL_SIDES, B_WILL_DRAW),
/haiku-fatelf/src/tests/libs/alm/
H A DNestedLayout.cpp21 NestedLayoutWindow(BRect frame) argument
23 BWindow(frame, "ALM Nested Layout", B_TITLED_WINDOW,
/haiku-fatelf/src/tests/servers/app/painter/
H A DBitmapView.cpp10 BitmapView::BitmapView(BRect frame, const char* name, argument
12 : BView(frame, name, B_FOLLOW_NONE, B_WILL_DRAW | B_FULL_UPDATE_ON_RESIZE),
/haiku-fatelf/src/apps/debugger/user_interface/cli/
H A DCliStackFrameCommand.cpp22 CliCommand("set current stack frame",
23 "%s [ <frame number> ]\n"
24 "Sets the current stack frame to <frame number>, if supplied. "
25 "Otherwise\n prints the current frame.")
43 printf("No current frame.\n");
45 StackFrame* frame = stackTrace->FrameAt(currentFrameIndex); local
46 printf("Current frame: %" B_PRId32 ": %s\n", currentFrameIndex,
47 frame->Function()->PrettyName().String());
/haiku-fatelf/headers/libs/print/libprint/
H A DBlockingWindow.h58 HWindow(BRect frame, const char *title,
62 HWindow(BRect frame, const char *title,
81 BlockingWindow(BRect frame, const char *title,
85 BlockingWindow(BRect frame, const char *title,
H A DPagesView.h14 PagesView(BRect frame, const char* name, uint32 resizeMask, uint32 flags);
/haiku-fatelf/headers/private/kernel/arch/mipsel/
H A Darch_thread.h20 void mipsel_push_iframe(struct iframe_stack* stack, struct iframe* frame);

Completed in 133 milliseconds

1234567891011>>