HomeSort by relevance Sort by last modified time
    Searched refs:size_delta (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/ui/gfx/
font_list.h 72 // style. |size_delta| is the size in pixels to add to the current font size.
75 FontList Derive(int size_delta, int font_style) const;
78 // |size_delta| is the size in pixels to add to the current font size.
79 FontList DeriveWithSizeDelta(int size_delta) const;
font_list.cc 61 FontList FontList::Derive(int size_delta, int font_style) const {
62 return FontList(impl_->Derive(size_delta, font_style));
65 FontList FontList::DeriveWithSizeDelta(int size_delta) const {
66 return Derive(size_delta, GetFontStyle());
platform_font.h 30 // |size_delta| is the size in pixels to add to the current font.
33 virtual Font DeriveFont(int size_delta, int style) const = 0;
font.cc 41 Font Font::Derive(int size_delta, int style) const {
42 return platform_font_->DeriveFont(size_delta, style);
font.h 60 // |size_delta| is the size in pixels to add to the current font. For example,
64 Font Derive(int size_delta, int style) const;
font_list_impl.h 48 // given style. |size_delta| is the size in pixels to add to the current font
51 FontListImpl* Derive(int size_delta, int font_style) const;
platform_font_ios.h 20 virtual Font DeriveFont(int size_delta, int style) const OVERRIDE;
platform_font_mac.h 22 virtual Font DeriveFont(int size_delta, int style) const OVERRIDE;
platform_font_pango.h 49 virtual Font DeriveFont(int size_delta, int style) const OVERRIDE;
platform_font_pango.cc 145 Font PlatformFontPango::DeriveFont(int size_delta, int style) const {
147 if (size_delta < 0)
148 DCHECK_LT(-size_delta, font_size_pixels_);
154 font_size_pixels_ + size_delta,
172 font_size_pixels_ + size_delta,
platform_font_win.cc 39 // lf_height + size_delta value.
40 int AdjustFontSize(int lf_height, int size_delta) {
42 lf_height -= size_delta;
44 lf_height += size_delta;
125 Font PlatformFontWin::DeriveFont(int size_delta, int style) const {
129 font_info.lfHeight = AdjustFontSize(-requested_font_size, size_delta);
platform_font_win.h 57 virtual Font DeriveFont(int size_delta, int style) const OVERRIDE;
font_list_impl.cc 123 FontListImpl* FontListImpl::Derive(int size_delta, int font_style) const {
128 fonts[i] = fonts[i].Derive(size_delta, font_style);
138 const int size = std::max(1, old_size + size_delta);
  /external/qemu/
kvm-all.c 795 ram_addr_t size_delta; local
799 size_delta = mem->start_addr - old.start_addr;
800 mem->memory_size = old.memory_size - size_delta;
801 mem->phys_offset = old.phys_offset + size_delta;
  /external/chromium_org/v8/src/
builtins.cc 235 int size_delta = to_trim * entry_size; local
236 Address new_start = elms->address() + size_delta;
238 heap->AdjustLiveBytes(new_start, -size_delta, Heap::FROM_MUTATOR);
    [all...]
objects.cc 2067 int size_delta = to_trim * kPointerSize; local
    [all...]

Completed in 226 milliseconds