Searched refs:resize (Results 26 - 50 of 81) sorted by relevance

1234

/haiku/src/apps/cortex/addons/common/
H A DRawBuffer.h95 // resize buffer, re-allocating if necessary to contain
99 void resize(uint32 frames);
H A DRawBuffer.cpp62 resize(m_frames);
119 // resize buffer, re-allocating if necessary to contain
123 void RawBuffer::resize(uint32 frames) { function in class:RawBuffer
/haiku/src/preferences/appearance/
H A DCurView.h68 CurView(const BRect &frame, const char *name, int32 resize, int32 flags);
H A DCurView.cpp51 CurView::CurView(const BRect &frame, const char *name, int32 resize, int32 flags) argument
52 :BView(frame,name,resize,flags), settings(B_SIMPLE_DATA)
/haiku/src/servers/app/
H A DWorkspacesView.h18 const char* name, int32 token, uint32 resize,
/haiku/src/add-ons/translators/wonderbrush/
H A DWonderBrushView.cpp50 uint32 resize, uint32 flags, TranslatorSettings *settings)
51 : BView(frame, name, resize, flags),
102 // Hack for DataTranslations which doesn't resize visible area to requested by view
104 // so if it was loaded to DataTranslations resize window if needed
119 // change it's resizing mode so it will always resize with window
120 // also make sure view will be redrawed after resize
49 WonderBrushView(const BRect &frame, const char *name, uint32 resize, uint32 flags, TranslatorSettings *settings) argument
/haiku/headers/libs/agg/
H A Dagg_rendering_buffer_dynarow.h86 m_rows.resize(height);
H A Dagg_scanline_p.h75 m_spans.resize(max_len);
76 m_covers.resize(max_len);
236 m_covers.resize(max_len);
H A Dagg_scanline_u.h140 m_spans.resize(max_len);
141 m_covers.resize(max_len);
359 m_covers.resize(max_len);
H A Dagg_rendering_buffer.h72 m_rows.resize(height);
H A Dagg_scanline_bin.h70 m_spans.resize(max_len);
/haiku/src/apps/resedit/
H A DBitmapView.h22 int32 resize = B_FOLLOW_LEFT | B_FOLLOW_TOP, int32 flags = B_WILL_DRAW);
/haiku/src/libs/agg/src/
H A Dagg_line_profile_aa.cpp49 m_profile.resize(size);
/haiku/src/apps/serialconnect/libvterm/include/
H A Dvterm.h170 int (*resize)(int rows, int cols, void *user); member in struct:__anon12
192 int (*resize)(int rows, int cols, VTermPos *delta, void *user); member in struct:__anon13
239 int (*resize)(int rows, int cols, void *user); member in struct:__anon16
/haiku/headers/cpp/
H A Dstl_hashtable.h356 resize(_M_num_elements + 1);
362 resize(_M_num_elements + 1);
404 resize(_M_num_elements + __n);
415 resize(_M_num_elements + __n);
424 resize(_M_num_elements + __n);
432 resize(_M_num_elements + __n);
441 resize(_M_num_elements + __n);
450 resize(_M_num_elements + __n);
504 void resize(size_type __num_elements_hint);
744 resize(_M_num_element
918 ::resize(size_type __num_elements_hint) function in class:hashtable
[all...]
H A Dstl_hash_map.h197 void resize(size_type __hint) { _M_ht.resize(__hint); } function in class:hash_map
378 void resize(size_type __hint) { _M_ht.resize(__hint); } function in class:hash_multimap
H A Dstl_hash_set.h192 void resize(size_type __hint) { _M_ht.resize(__hint); } function in class:hash_set
364 void resize(size_type __hint) { _M_ht.resize(__hint); } function in class:hash_multiset
/haiku/src/apps/glteapot/
H A Dutil.h412 void resize(int i) function in struct:BufferArray
436 resize(num_slots+slot_inc);
/haiku/src/add-ons/screen_savers/slideshowsaver/
H A DSlideShowConfigView.cpp58 uint32 resize, uint32 flags, LiveSettings *settings)
59 : BView(frame, name, resize, flags)
57 SlideShowConfigView(const BRect &frame, const char *name, uint32 resize, uint32 flags, LiveSettings *settings) argument
/haiku/src/system/kernel/disk_device_manager/
H A DKFileSystem.cpp132 if (fModule->resize == NULL)
140 result = fModule->resize(fd, partition->ID(), size, job);
/haiku/headers/private/kernel/disk_device_manager/
H A Dddm_modules.h82 status_t (*resize)(int fd, partition_id partition, off_t size, member in struct:partition_module_info
/haiku/src/apps/serialconnect/libvterm/src/
H A Dvterm.c96 if(vt->parser_callbacks && vt->parser_callbacks->resize)
97 (*vt->parser_callbacks->resize)(rows, cols, vt->cbdata);
H A Dscreen.c482 static int resize(int new_rows, int new_cols, VTermPos *delta, void *user) function
577 if(screen->callbacks && screen->callbacks->resize)
578 return (*screen->callbacks->resize)(new_rows, new_cols, screen->cbdata);
623 .resize = &resize,
780 /* static because it's only used internally for sb_popline during resize */
/haiku/src/apps/deskbar/
H A DExpandoMenuBar.cpp911 // code the resize method will be centered in one place
980 bool resize = false; local
1042 resize = true;
1062 resize = true;
1069 if (itemModified || resize) {
1071 if (resize)
/haiku/src/kits/interface/
H A DScrollView.cpp198 // adjust the size of the bar to acknowledge the resize knob.
482 float resize = 2 * offset; local
506 ResizeBy(-resize - horizontalGap, -resize - verticalGap);
515 fHorizontalScrollBar->ResizeBy(resize + horizontalGap - change, 0);
519 fVerticalScrollBar->ResizeBy(0, resize + verticalGap - change);

Completed in 253 milliseconds

1234