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

  /external/chromium_org/ui/gfx/
font.cc 41 Font Font::DeriveFont(int size_delta) const {
42 return DeriveFont(size_delta, GetStyle());
45 Font Font::DeriveFont(int size_delta, int style) const {
46 return platform_font_->DeriveFont(size_delta, style);
font.h 53 Font DeriveFont(int size_delta) const;
56 // |size_delta| is the size in pixels to add to the current font. See the
60 Font DeriveFont(int size_delta, int style) const;
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_list.h 66 // |size_delta| is the size in pixels to add to the current font size.
67 FontList DeriveFontListWithSizeDelta(int size_delta) const;
70 // style. |size_delta| is the size in pixels to add to the current font size.
73 FontList DeriveFontListWithSizeDeltaAndStyle(int size_delta,
platform_font_ios.h 20 virtual Font DeriveFont(int size_delta, int style) const OVERRIDE;
platform_font_mac.h 21 virtual Font DeriveFont(int size_delta, int style) const OVERRIDE;
font_list.cc 143 FontList FontList::DeriveFontListWithSizeDelta(int size_delta) const {
144 return DeriveFontListWithSizeDeltaAndStyle(size_delta, GetFontStyle());
147 FontList FontList::DeriveFontListWithSizeDeltaAndStyle(int size_delta,
153 fonts[i] = fonts[i].DeriveFont(size_delta, style);
163 int size = old_size + size_delta;
platform_font_pango.h 42 virtual Font DeriveFont(int size_delta, int style) const OVERRIDE;
platform_font_pango.cc 157 Font PlatformFontPango::DeriveFont(int size_delta, int style) const {
159 if (size_delta < 0)
160 DCHECK_LT(-size_delta, font_size_pixels_);
166 font_size_pixels_ + size_delta,
184 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;
  /external/chromium_org/net/quic/congestion_control/
channel_estimator.h 48 void UpdateFilter(QuicTime::Delta received_delta, QuicByteCount size_delta,
channel_estimator.cc 103 QuicByteCount size_delta,
106 QuicBandwidth::FromBytesAndTimeDelta(size_delta, received_delta);
  /external/qemu/
kvm-all.c 768 ram_addr_t size_delta; local
772 size_delta = mem->start_addr - old.start_addr;
773 mem->memory_size = old.memory_size - size_delta;
774 mem->phys_offset = old.phys_offset + size_delta;
  /external/chromium_org/v8/src/
builtins.cc 344 int size_delta = to_trim * entry_size; local
346 elms->address() + size_delta)) {
347 MemoryChunk::IncrementLiveBytesFromMutator(elms->address(), -size_delta);
351 elms->address() + size_delta));
    [all...]
objects.cc 2284 int size_delta = to_trim * kPointerSize; local
    [all...]
  /external/v8/src/
builtins.cc 378 int size_delta = to_trim * kPointerSize; local
380 elms->address() + size_delta)) {
381 MemoryChunk::IncrementLiveBytesFromMutator(elms->address(), -size_delta);
385 elms->address() + size_delta));
    [all...]

Completed in 205 milliseconds