HomeSort by relevance Sort by last modified time
    Searched full:size_delta (Results 1 - 19 of 19) 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);
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;
platform_font_ios.mm 42 Font PlatformFontIOS::DeriveFont(int size_delta, int style) const {
43 return Font(new PlatformFontIOS(font_name_, font_size_ + size_delta, style));
font_list.h 76 // |size_delta| is the size in pixels to add to the current font size.
77 FontList DeriveFontListWithSizeDelta(int size_delta) const;
80 // style. |size_delta| is the size in pixels to add to the current font size.
83 FontList DeriveFontListWithSizeDeltaAndStyle(int size_delta,
platform_font_ios.h 20 virtual Font DeriveFont(int size_delta, int style) const OVERRIDE;
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_mac.h 22 virtual Font DeriveFont(int size_delta, int style) const OVERRIDE;
font.h 62 Font DeriveFont(int size_delta) const;
65 // |size_delta| is the size in pixels to add to the current font. See the
69 Font DeriveFont(int size_delta, int style) const;
font_list.cc 165 FontList FontList::DeriveFontListWithSizeDelta(int size_delta) const {
166 return DeriveFontListWithSizeDeltaAndStyle(size_delta, GetFontStyle());
169 FontList FontList::DeriveFontListWithSizeDeltaAndStyle(int size_delta,
175 fonts[i] = fonts[i].DeriveFont(size_delta, style);
185 int size = old_size + size_delta;
platform_font_pango.cc 147 Font PlatformFontPango::DeriveFont(int size_delta, int style) const {
149 if (size_delta < 0)
150 DCHECK_LT(-size_delta, font_size_pixels_);
156 font_size_pixels_ + size_delta,
174 font_size_pixels_ + size_delta,
platform_font_mac.mm 92 Font PlatformFontMac::DeriveFont(int size_delta, int style) const {
93 return Font(new PlatformFontMac(font_name_, font_size_ + size_delta, style));
platform_font_pango.h 49 virtual Font DeriveFont(int size_delta, int style) const OVERRIDE;
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 270 int size_delta = to_trim * entry_size; local
272 elms->address() + size_delta)) {
273 MemoryChunk::IncrementLiveBytesFromMutator(elms->address(), -size_delta);
277 elms->address() + size_delta));
    [all...]
objects.cc 2321 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 772 milliseconds