HomeSort by relevance Sort by last modified time
    Searched refs:overflow (Results 1 - 25 of 258) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/webkit/Source/WebCore/rendering/
RenderOverflow.h 31 // There are two types of overflow: layout overflow (which is expected to be reachable via scrolling mechanisms) and
32 // visual overflow (which is not expected to be reachable via scrolling mechanisms).
34 // Layout overflow examples include other boxes that spill out of our box, For example, in the inline case a tall image
37 // Examples of visual overflow are shadows, text stroke (and eventually outline and border-image).
67 void setMinYLayoutOverflow(int overflow) { m_minYLayoutOverflow = overflow; }
68 void setMaxYLayoutOverflow(int overflow) { m_maxYLayoutOverflow = overflow; }
69 void setMinXLayoutOverflow(int overflow) { m_minXLayoutOverflow = overflow;
    [all...]
  /external/chromium/chrome/browser/resources/gpu_internals/
profiling_view.css 18 overflow: auto;
24 overflow: auto;
34 overflow: auto;
timeline_view.css 16 overflow: auto;
28 overflow: auto;
  /external/chromium/chrome/browser/resources/
extensions_infobar.css 11 overflow: hidden;
extensions_infobar_mac.css 11 overflow: hidden;
  /external/chromium/chrome/browser/resources/ntp4/
apps_page.css 13 text-overflow: ellipsis;
15 overflow: hidden;
recently_closed.css 35 overflow: hidden;
36 text-overflow: ellipsis;
  /sdk/emulator/qtools/
hist_trace.cpp 9 int underflow, overflow; variable
41 overflow += 1;
60 per = 100.0 * overflow / total;
61 printf("over: %6d %6.2f\n", overflow, per);
  /system/core/libsysutils/src/
FrameworkListener.cpp 79 goto overflow;
89 goto overflow;
93 goto overflow;
114 goto overflow;
119 goto overflow;
130 goto overflow;
161 overflow:
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringConcatenate.h 187 inline void sumWithOverflow(unsigned& total, unsigned addend, bool& overflow)
192 overflow = true;
202 bool overflow = false; local
204 sumWithOverflow(length, adapter2.length(), overflow);
205 if (overflow)
227 bool overflow = false; local
229 sumWithOverflow(length, adapter2.length(), overflow);
230 sumWithOverflow(length, adapter3.length(), overflow);
231 if (overflow)
256 bool overflow = false local
289 bool overflow = false; local
326 bool overflow = false; local
367 bool overflow = false; local
412 bool overflow = false; local
461 bool overflow = false; local
    [all...]
  /external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
LeaksViewer.css 85 overflow-x: visible;
86 overflow-y: auto;
90 overflow: visible;
  /libcore/luni/src/main/native/
cbigint.cpp 676 uint64_t overflow; local
685 overflow = simpleAppendDecimalDigitHighPrecision(result, length, 0);
686 if (overflow)
687 result[length++] = overflow;
701 overflow = simpleMultiplyHighPrecision64 (result, length, TEN_E19);
702 if (overflow)
703 result[length++] = overflow;
708 overflow = simpleMultiplyHighPrecision (result, length, TEN_E9);
709 if (overflow)
710 result[length++] = overflow;
    [all...]
  /external/webkit/Source/WebCore/css/
svg.css 32 which does not use CSS layout [CSS2-LAYOUT] or XSL formatting [XSL], the 'overflow' property on the
37 [CSS2-LAYOUT] or XSL formatting [XSL], if the 'overflow' property has the value hidden or scroll, then
39 the initial clipping path is set according to the clipping rules as defined in [CSS2-overflow].
41 Opera/Firefox & WebKit agreed on NOT setting "overflow: hidden" for the outermost svg element - SVG 1.1 Errata
46 overflow: hidden
  /external/chromium/chrome/browser/resources/sync_internals/
sync_node_browser.css 16 overflow: auto;
24 overflow: visible; /* let the container do the scrolling */
  /external/chromium/chrome/browser/resources/net_internals/
main.css 19 overflow: hidden;
36 overflow: hidden;
40 overflow-x: hidden;
41 overflow-y: auto
45 overflow: auto;
72 text-overflow: ellipsis;
167 overflow: auto;
  /external/speex/libspeex/
bits.c 81 bits->overflow=0;
99 bits->overflow=0;
106 bits->overflow=0;
144 bits->overflow=0;
287 bits->overflow=1;
288 if (bits->overflow)
312 bits->overflow=1;
313 if (bits->overflow)
337 bits->overflow=1;
338 if (bits->overflow)
    [all...]
  /external/stlport/test/unit/
full_streambuf.h 26 int_type overflow(int_type c) { function in class:full_streambuf
  /ndk/tests/device/test-gnustl-full/unit/
full_streambuf.h 26 int_type overflow(int_type c) { function in class:full_streambuf
  /ndk/tests/device/test-stlport/unit/
full_streambuf.h 26 int_type overflow(int_type c) { function in class:full_streambuf
  /packages/apps/Email/src/com/beetstra/jutf7/
UTF7StyleCharsetDecoder.java 73 return overflow(in);
80 return overflow(in);
95 return overflow(in);
103 private CoderResult overflow(ByteBuffer in) { method in class:UTF7StyleCharsetDecoder
105 return CoderResult.OVERFLOW;
  /external/chromium/chrome/browser/resources/bookmark_manager/css/
bmm.css 11 overflow: hidden;
16 overflow-x: hidden;
17 overflow-y: visible; /* let the container do the scrolling */
32 overflow: hidden;
33 text-overflow: ellipsis;
78 overflow: hidden;
142 overflow: visible;
148 overflow: visible;
196 overflow: auto;
204 overflow: visible; /* let the container do the scrolling *
    [all...]
  /external/webkit/Source/WebCore/storage/
StorageMap.cpp 115 // Quota tracking. This is done in a couple of steps to keep the overflow tracking simple.
117 bool overflow = newLength + value.length() < newLength; local
121 overflow |= newLength - oldValue.length() > newLength;
125 overflow |= newLength + adjustedKeyLength < newLength;
128 ASSERT(!overflow); // Overflow is bad...even if quotas are off.
130 if (m_quotaSize != noQuota && (overflow || overQuota)) {
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_shrinkable_hbox.cc 71 // All children are right aligned, so make sure the child won't overflow
73 int overflow = (data->allocation->x + data->border_width + padding - local
75 if (overflow > 0) {
76 child_allocation.width -= overflow;
77 child_allocation.x += overflow;
80 // All children are left aligned, so make sure the child won't overflow
82 int overflow = (child_allocation.x + child_allocation.width + padding - local
84 if (overflow > 0)
85 child_allocation.width -= overflow;
  /external/astl/src/
streambuf.cpp 61 int_type c = this->overflow(traits_type::to_int_type(*str));
  /external/chromium/chrome/browser/resources/options/
password_manager_list.css 67 overflow: hidden;
68 text-overflow: ellipsis;

Completed in 429 milliseconds

1 2 3 4 5 6 7 8 91011