Searched refs:alignment (Results 1 - 25 of 189) sorted by last modified time

12345678

/haiku/src/kits/interface/
H A DColumnTypes.cpp35 float maxWidth, alignment align)
195 float maxWidth, uint32 truncate, alignment align)
312 float maxWidth, alignment align)
406 float maxWidth, alignment align)
520 float maxWidth, alignment align)
550 float maxWidth, alignment align)
620 float maxWidth, alignment align)
H A DHaikuControlLook.cpp2186 const BAlignment& alignment, const rgb_color* textColor)
2188 DrawLabel(view, label, NULL, rect, updateRect, base, flags, alignment,
2318 const BAlignment& alignment, const rgb_color* textColor)
2329 icon->Bounds().Size(), alignment);
2364 // handle alignment
2366 BSize(width - 1, height - 1), alignment));
2184 DrawLabel(BView* view, const char* label, BRect rect, const BRect& updateRect, const rgb_color& base, uint32 flags, const BAlignment& alignment, const rgb_color* textColor) argument
2316 DrawLabel(BView* view, const char* label, const BBitmap* icon, BRect rect, const BRect& updateRect, const rgb_color& base, uint32 flags, const BAlignment& alignment, const rgb_color* textColor) argument
H A DGraphicsDefs.cpp180 size_t alignment = 0; local
182 alignment = (sizeof(int) % bytesPerPixel) * sizeof(int);
183 if (alignment < sizeof(int))
184 alignment = sizeof(int);
188 *rowAlignment = alignment;
H A DTextView.cpp353 SetAlignment((alignment)flag);
2491 BTextView::SetAlignment(alignment align)
2500 // After setting new alignment, update the view/window
2510 alignment
H A DColumnListView.cpp703 BColumn::BColumn(float width, float minWidth, float maxWidth, alignment align)
811 alignment
819 BColumn::SetAlignment(alignment align)
H A DAbstractSpinner.cpp51 "Returns the alignment of the spinner label.",
59 "Sets the alignment of the spinner label.",
291 BAlignment alignment; member in struct:BAbstractSpinner::LayoutData
1130 BAbstractSpinner::SetAlignment(alignment align)
/haiku/headers/private/interface/
H A DColumnTypes.h34 float maxWidth, alignment align = B_ALIGN_LEFT);
85 alignment align = B_ALIGN_LEFT);
126 alignment align = B_ALIGN_LEFT);
159 alignment align = B_ALIGN_LEFT);
187 alignment align = B_ALIGN_LEFT);
215 alignment align = B_ALIGN_LEFT);
230 alignment align = B_ALIGN_LEFT);
/haiku/src/apps/drivesetup/
H A DPartitionList.cpp89 float maxWidth, uint32 truncateMode, alignment align)
/haiku/src/apps/mediaplayer/settings/
H A DSettingsWindow.cpp65 BAlignment alignment(B_ALIGN_LEFT, B_ALIGN_VERTICAL_CENTER);
66 playModeLabel->SetExplicitAlignment(alignment);
68 viewOptionsLabel->SetExplicitAlignment(alignment);
70 bgMoviesModeLabel->SetExplicitAlignment(alignment);
/haiku/src/add-ons/kernel/drivers/network/wlan/idualwifi7260/dev/pci/
H A Dif_iwm.c1230 bus_size_t size, bus_size_t alignment)
1243 err = bus_dmamem_alloc(tag, size, alignment, 0, &dma->seg, 1, &nsegs,
1229 iwm_dma_contig_alloc(bus_dma_tag_t tag, struct iwm_dma_info *dma, bus_size_t size, bus_size_t alignment) argument
/haiku/src/add-ons/kernel/drivers/network/wlan/iaxwifi200/dev/pci/
H A Dif_iwx.c1837 bus_size_t size, bus_size_t alignment)
1850 err = bus_dmamem_alloc(tag, size, alignment, 0, &dma->seg, 1, &nsegs,
1836 iwx_dma_contig_alloc(bus_dma_tag_t tag, struct iwx_dma_info *dma, bus_size_t size, bus_size_t alignment) argument
/haiku/src/add-ons/kernel/drivers/graphics/intel_extreme/
H A Dintel_extreme.cpp591 intel_allocate_memory(intel_info &info, size_t size, size_t alignment, argument
594 return gGART->allocate_memory(info.aperture, size, alignment,
/haiku/src/add-ons/kernel/drivers/disk/nvme/
H A Dnvme_disk.cpp300 restrictions.alignment = B_PAGE_SIZE;
/haiku/src/add-ons/control_look/BeControlLook/
H A DBeControlLook.cpp2172 const BAlignment& alignment, const rgb_color* textColor)
2174 DrawLabel(view, label, NULL, rect, updateRect, base, flags, alignment,
2318 const BAlignment& alignment, const rgb_color* textColor)
2330 icon->Bounds().Size(), alignment);
2367 // handle alignment
2369 BSize(width - 1, height - 1), alignment));
2170 DrawLabel(BView* view, const char* label, BRect rect, const BRect& updateRect, const rgb_color& base, uint32 flags, const BAlignment& alignment, const rgb_color* textColor) argument
2316 DrawLabel(BView* view, const char* label, const BBitmap* icon, BRect rect, const BRect& updateRect, const rgb_color& base, uint32 flags, const BAlignment& alignment, const rgb_color* textColor) argument
/haiku/src/system/kernel/vm/
H A Dvm.cpp4166 allocate_early_virtual(kernel_args* args, size_t size, addr_t alignment) argument
4177 addr_t base = alignment > 0
4178 ? ROUNDUP(previousRangeEnd, alignment) : previousRangeEnd;
4193 addr_t base = alignment > 0
4194 ? ROUNDUP(lastRangeEnd, alignment) : lastRangeEnd;
4205 if (alignment > 0)
4206 base = ROUNDDOWN(base, alignment);
4288 uint32 attributes, addr_t alignment)
4294 addr_t virtualBase = allocate_early_virtual(args, virtualSize, alignment);
4287 vm_allocate_early(kernel_args* args, size_t virtualSize, size_t physicalSize, uint32 attributes, addr_t alignment) argument
H A Dvm_page.cpp3857 \c alignment, the alignment of the page run start address, and
3883 // compute alignment mask
3885 = std::max(restrictions->alignment / B_PAGE_SIZE, (phys_addr_t)1) - 1;
3887 // alignment must be a power of 2
3893 // boundary must be a power of two and not less than alignment and
3918 // enforce alignment
3944 end, restrictions->alignment, restrictions->boundary);
/haiku/src/kits/tracker/
H A DPoseView.cpp2902 alignment attrAlign;
H A DTrackerInitialState.cpp104 alignment align;
121 int32 alignment, bool extra);
161 int32 alignment, bool extra)
181 fExtraAttrs.AddInt32("attr:alignment", alignment);
159 AddExtraAttribute(const char* publicName, const char* name, uint32 type, bool viewable, bool editable, float width, int32 alignment, bool extra) argument
/haiku/headers/os/interface/
H A DInterfaceDefs.h179 // View orientation/alignment/style
205 enum alignment { enum
H A DTextView.h199 void SetAlignment(alignment align);
200 alignment Alignment() const;
451 alignment fAlignment;
/haiku/headers/private/graphics/intel_extreme/
H A Dintel_extreme.h553 uint32 alignment; member in struct:intel_allocate_graphics_memory
/haiku/src/apps/haikudepot/ui/
H A DPackageListView.cpp142 alignment align = B_ALIGN_LEFT);
370 float minWidth, float maxWidth, uint32 truncateMode, alignment align)
/haiku/src/apps/deskbar/
H A DStatusView.cpp1154 alignment align = B_ALIGN_LEFT;
/haiku/src/kits/debugger/dwarf/
H A DDebugInfoEntry.h197 DECLARE_DEBUG_INFO_ENTRY_ATTR_SETTER(alignment)
H A DDebugInfoEntry.cpp340 DEFINE_DEBUG_INFO_ENTRY_ATTR_SETTER(alignment)

Completed in 410 milliseconds

12345678