HomeSort by relevance Sort by last modified time
    Searched full:width (Results 501 - 525 of 5636) sorted by null

<<21222324252627282930>>

  /frameworks/base/docs/html/sdk/api_diff/5/changes/
android.media.AudioManager.html 80 <TABLE summary="Added Methods" WIDTH="100%">
85 <TD VALIGN="TOP" WIDTH="25%">
92 <TD VALIGN="TOP" WIDTH="25%">
99 <TD VALIGN="TOP" WIDTH="25%">
106 <TD VALIGN="TOP" WIDTH="25%">
116 <TABLE summary="Changed Methods" WIDTH="100%">
121 <TD VALIGN="TOP" WIDTH="25%">
125 <TD VALIGN="TOP" WIDTH="30%">
135 <TABLE summary="Added Fields" WIDTH="100%">
140 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
android.provider.Contacts.GroupMembership.html 82 <TABLE summary="Added Fields" WIDTH="100%">
87 <TD VALIGN="TOP" WIDTH="25%">
97 <TABLE summary="Changed Fields" WIDTH="100%">
102 <TD VALIGN="TOP" WIDTH="25%">
105 <TD VALIGN="TOP" WIDTH="30%">
111 <TD VALIGN="TOP" WIDTH="25%">
114 <TD VALIGN="TOP" WIDTH="30%">
120 <TD VALIGN="TOP" WIDTH="25%">
123 <TD VALIGN="TOP" WIDTH="30%">
129 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
changes-summary.html 92 <TABLE summary="Added Packages" WIDTH="100%">
97 <TD VALIGN="TOP" WIDTH="25%">
104 <TD VALIGN="TOP" WIDTH="25%">
111 <TD VALIGN="TOP" WIDTH="25%">
121 <TABLE summary="Changed Packages" WIDTH="100%">
126 <TD VALIGN="TOP" WIDTH="25%">
133 <TD VALIGN="TOP" WIDTH="25%">
140 <TD VALIGN="TOP" WIDTH="25%">
147 <TD VALIGN="TOP" WIDTH="25%">
154 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
android.provider.Contacts.Groups.html 82 <TABLE summary="Changed Fields" WIDTH="100%">
87 <TD VALIGN="TOP" WIDTH="25%">
90 <TD VALIGN="TOP" WIDTH="30%">
96 <TD VALIGN="TOP" WIDTH="25%">
99 <TD VALIGN="TOP" WIDTH="30%">
105 <TD VALIGN="TOP" WIDTH="25%">
108 <TD VALIGN="TOP" WIDTH="30%">
114 <TD VALIGN="TOP" WIDTH="25%">
117 <TD VALIGN="TOP" WIDTH="30%">
123 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
android.provider.Contacts.html 82 <TABLE summary="Changed Fields" WIDTH="100%">
87 <TD VALIGN="TOP" WIDTH="25%">
90 <TD VALIGN="TOP" WIDTH="30%">
96 <TD VALIGN="TOP" WIDTH="25%">
99 <TD VALIGN="TOP" WIDTH="30%">
105 <TD VALIGN="TOP" WIDTH="25%">
108 <TD VALIGN="TOP" WIDTH="30%">
114 <TD VALIGN="TOP" WIDTH="25%">
117 <TD VALIGN="TOP" WIDTH="30%">
123 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
pkg_android.view.html 78 <TABLE summary="Added Classes" WIDTH="100%">
83 <TD VALIGN="TOP" WIDTH="25%">
93 <TABLE summary="Changed Classes and Interfaces" WIDTH="100%">
98 <TD VALIGN="TOP" WIDTH="25%">
105 <TD VALIGN="TOP" WIDTH="25%">
112 <TD VALIGN="TOP" WIDTH="25%">
119 <TD VALIGN="TOP" WIDTH="25%">
126 <TD VALIGN="TOP" WIDTH="25%">
133 <TD VALIGN="TOP" WIDTH="25%">
140 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/8/changes/
android.view.MotionEvent.html 80 <TABLE summary="Added Methods" WIDTH="100%">
85 <TD VALIGN="TOP" WIDTH="25%">
92 <TD VALIGN="TOP" WIDTH="25%">
103 <TABLE summary="Added Fields" WIDTH="100%">
108 <TD VALIGN="TOP" WIDTH="25%">
115 <TD VALIGN="TOP" WIDTH="25%">
125 <TABLE summary="Changed Fields" WIDTH="100%">
130 <TD VALIGN="TOP" WIDTH="25%">
133 <TD VALIGN="TOP" WIDTH="30%">
139 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
android.media.AudioManager.html 80 <TABLE summary="Added Methods" WIDTH="100%">
85 <TD VALIGN="TOP" WIDTH="25%">
92 <TD VALIGN="TOP" WIDTH="25%">
99 <TD VALIGN="TOP" WIDTH="25%">
106 <TD VALIGN="TOP" WIDTH="25%">
113 <TD VALIGN="TOP" WIDTH="25%">
120 <TD VALIGN="TOP" WIDTH="25%">
127 <TD VALIGN="TOP" WIDTH="25%">
138 <TABLE summary="Added Fields" WIDTH="100%">
143 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
pkg_android.content.html 78 <TABLE summary="Added Classes and Interfaces" WIDTH="100%">
83 <TD VALIGN="TOP" WIDTH="25%">
90 <TD VALIGN="TOP" WIDTH="25%">
97 <TD VALIGN="TOP" WIDTH="25%">
104 <TD VALIGN="TOP" WIDTH="25%">
111 <TD VALIGN="TOP" WIDTH="25%">
118 <TD VALIGN="TOP" WIDTH="25%">
128 <TABLE summary="Changed Classes" WIDTH="100%">
133 <TD VALIGN="TOP" WIDTH="25%">
140 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
  /external/quake/quake/src/WinQuake/
vid_x.cpp 183 void st2_fixup( XImage *framebuf, int x, int y, int width, int height)
196 count = width;
198 dest = ((PIXEL16 *)src) + x+width - 1;
199 src += x+width - 1;
213 // for(xi = (x+width-1); xi >= x; xi--) {
219 void st3_fixup( XImage *framebuf, int x, int y, int width, int height)
232 count = width;
234 dest = ((PIXEL24 *)src) + x+width - 1;
235 src += x+width - 1;
249 // for(xi = (x+width-1); xi >= x; xi--)
    [all...]
  /external/webkit/WebCore/rendering/
RenderTable.cpp 84 // explicit width is specified on the table. Auto width implies auto table layout.
85 if (style()->tableLayout() == TFIXED && !style()->width().isAuto())
218 LengthType widthType = style()->width().type();
219 if (widthType > Relative && style()->width().isPositive()) {
221 setWidth(style()->width().calcMinValue(availableWidth));
222 setWidth(max(minPrefWidth(), width()));
224 // An auto width table should shrink to fit within the line width if necessary in order to
228 // Subtract out any fixed margins from our available width for auto width tables
    [all...]
  /external/opencore/codecs_v2/omx/omx_m4venc/src/
mpeg4_enc.cpp 830 void Mpeg4Encoder_OMX::CopyToYUVIn(uint8 *YUV, Int width, Int height, Int width_16, Int height_16)
834 Int size = width * height;
839 if (height < height_16 || width < width_16) /* if padding */
845 if (width < width_16)
847 offset -= (width_16 - width);
871 if (width_16 >= width)
873 i = ((height_16 - height) >> 1) * width_16 + (((width_16 - width) >> 3) << 2);
874 /* make sure that (width_16-width)>>1 is divisible by 4 */
875 j = ((height_16 - height) >> 2) * (width_16 >> 1) + (((width_16 - width) >> 4) << 2);
876 /* make sure that (width_16-width)>>2 is divisible by 4 *
    [all...]
  /external/qemu/
console.c 128 int width; member in struct:TextConsole
229 int posx, int posy, int width, int height, uint32_t color)
241 for (x = 0; x < width; x++) {
247 for (x = 0; x < width; x++) {
253 for (x = 0; x < width; x++) {
509 last_width = s->width;
510 s->width = s->g_width / FONT_WIDTH;
514 if (s->width < w1)
515 w1 = s->width;
517 cells = qemu_malloc(s->width * s->total_height * sizeof(TextCell))
1325 unsigned width; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_blit.h 415 #define DUFFS_LOOP8(pixel_copy_increment, width) \
416 { int n = (width+7)/8; \
417 switch (width & 7) { \
431 #define DUFFS_LOOP4(pixel_copy_increment, width) \
432 { int n = (width+3)/4; \
433 switch (width & 3) { \
444 double_pixel_copy_increment, width) \
445 { int n, w = width; \
463 quatro_pixel_copy_increment, width) \
464 { int n, w = width; \
    [all...]
  /external/skia/src/core/
SkScan_AntiPath.cpp 43 virtual void blitRect(int x, int y, int width, int height) {
84 virtual void blitH(int x, int y, int width);
93 const int width = fWidth; local
96 fRuns.fRuns = (int16_t*)sk_malloc_throw((width + 1 + (width + 2)/2) * sizeof(int16_t));
97 fRuns.fAlpha = (uint8_t*)(fRuns.fRuns + width + 1);
98 fRuns.reset(width);
125 void SuperBlitter::blitH(int x, int y, int width)
134 width += x;
156 arun.set(x, x + width);
206 int width = bounds.width(); local
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/3/changes/
android.view.View.html 80 <TABLE summary="Added Methods" WIDTH="100%">
85 <TD VALIGN="TOP" WIDTH="25%">
92 <TD VALIGN="TOP" WIDTH="25%">
99 <TD VALIGN="TOP" WIDTH="25%">
106 <TD VALIGN="TOP" WIDTH="25%">
113 <TD VALIGN="TOP" WIDTH="25%">
120 <TD VALIGN="TOP" WIDTH="25%">
127 <TD VALIGN="TOP" WIDTH="25%">
134 <TD VALIGN="TOP" WIDTH="25%">
141 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
pkg_android.os.html 78 <TABLE summary="Added Classes and Interfaces" WIDTH="100%">
83 <TD VALIGN="TOP" WIDTH="25%">
90 <TD VALIGN="TOP" WIDTH="25%">
97 <TD VALIGN="TOP" WIDTH="25%">
104 <TD VALIGN="TOP" WIDTH="25%">
114 <TABLE summary="Changed Classes and Interfaces" WIDTH="100%">
119 <TD VALIGN="TOP" WIDTH="25%">
126 <TD VALIGN="TOP" WIDTH="25%">
133 <TD VALIGN="TOP" WIDTH="25%">
140 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
  /frameworks/base/opengl/libs/GLES2/
gl2_api.in 64 void API_ENTRY(glCompressedTexImage2D)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void* data) {
65 CALL_GL_API(glCompressedTexImage2D, target, level, internalformat, width, height, border, imageSize, data);
67 void API_ENTRY(glCompressedTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void* data) {
68 CALL_GL_API(glCompressedTexSubImage2D, target, level, xoffset, yoffset, width, height, format, imageSize, data);
70 void API_ENTRY(glCopyTexImage2D)(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) {
71 CALL_GL_API(glCopyTexImage2D, target, level, internalformat, x, y, width, height, border);
73 void API_ENTRY(glCopyTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) {
74 CALL_GL_API(glCopyTexSubImage2D, target, level, xoffset, yoffset, x, y, width, height);
265 void API_ENTRY(glLineWidth)(GLfloat width) {
266 CALL_GL_API(glLineWidth, width);
    [all...]
  /frameworks/base/opengl/libs/GLES_CM/
gl_api.in 58 void API_ENTRY(glLineWidth)(GLfloat width) {
59 CALL_GL_API(glLineWidth, width);
166 void API_ENTRY(glCompressedTexImage2D)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) {
167 CALL_GL_API(glCompressedTexImage2D, target, level, internalformat, width, height, border, imageSize, data);
169 void API_ENTRY(glCompressedTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data) {
170 CALL_GL_API(glCompressedTexSubImage2D, target, level, xoffset, yoffset, width, height, format, imageSize, data);
172 void API_ENTRY(glCopyTexImage2D)(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) {
173 CALL_GL_API(glCopyTexImage2D, target, level, internalformat, x, y, width, height, border);
175 void API_ENTRY(glCopyTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) {
176 CALL_GL_API(glCopyTexSubImage2D, target, level, xoffset, yoffset, x, y, width, height)
    [all...]
  /external/webkit/WebCore/platform/
ScrollView.cpp 182 return IntRect(IntPoint(m_scrollOffset.width(), m_scrollOffset.height()),
183 IntSize(max(0, width() - (verticalScrollbar() && !includeScrollbars ? verticalScrollbar()->width() : 0)),
190 return m_fixedLayoutSize.isEmpty() || !m_useFixedLayout ? visibleWidth() : m_fixedLayoutSize.width();
246 return IntPoint(maximumOffset.width(), maximumOffset.height());
285 rect.move(view->x() - view->scrollOffset().width(), view->y() - view->scrollOffset().height());
377 newHasHorizontalScrollbar = docSize.width() > visibleWidth();
378 if (newHasHorizontalScrollbar && !m_updateScrollbarsPass && docSize.width() <= frameSize.width() && docSize.height() <= frameSize.height())
383 if (newHasVerticalScrollbar && !m_updateScrollbarsPass && docSize.width() <= frameSize.width() && docSize.height() <= frameSize.height()
    [all...]
  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextController.cpp 107 CGFloat adjustedAdvance = m_adjustedAdvances[offsetIntoAdjustedGlyphs + j].width;
146 CGFloat width = m_adjustedAdvances[offsetIntoAdjustedGlyphs + firstGlyphBeforeCluster].width; local
147 clusterWidth += width;
148 x += width;
153 clusterWidth += m_adjustedAdvances[offsetIntoAdjustedGlyphs + firstGlyphAfterCluster].width;
397 m_runWidthSoFar += adjustedAdvance.width * (m_characterInCurrentGlyph - oldCharacterInCurrentGlyph) / (glyphEndOffset - glyphStartOffset);
464 advance.width = tabWidth - fmodf(m_run.xPos() + m_totalWidth, tabWidth);
466 advance.width = 0;
470 float roundedAdvanceWidth = roundf(advance.width);
    [all...]
  /external/skia/src/views/
SkWidgets.cpp 268 evt.setScalar("prime-width", this->width());
282 r.set(0, 0, this->width(), this->height());
294 box.setBox(0, 0, this->width(), this->height());
345 SkScalar width = fPaint.measureText(fText.c_str(), fText.size(), NULL, NULL); local
346 this->setWidth(width + fMargin.fX * 2);
350 SkScalar width = this->width() - fMargin.fX * 2; local
351 int lines = width > 0 ? SkTextLineBreaker::CountLines(fText.c_str(), fText.size(), fPaint, width) : 0
    [all...]
  /external/webkit/WebCore/loader/
CachedImage.cpp 183 // Don't let images that have a width/height >= 1 shrink below 1 when zoomed.
184 bool hasWidth = m_image->size().width() > 0;
186 int width = m_image->size().width() * (m_image->hasRelativeWidth() ? 1.0f : multiplier); local
189 width = max(1, width);
192 return IntSize(width, height);
207 // Don't let images that have a width/height >= 1 shrink below 1 when zoomed.
208 bool hasWidth = m_image->rect().width() > 0;
211 int width = static_cast<int>(m_image->rect().width() * widthMultiplier) local
    [all...]
  /external/webkit/WebCore/platform/gtk/
gtk2drawing.c 1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
763 gint x = rect->x, y=rect->y, width=rect->width, height=rect->height; local
773 cliprect->width, cliprect->height);
792 width -= 2 * (focus_width + focus_pad);
801 widget, "buttondefault", x, y, width, height);
812 widget, "button", x, y, width, height);
819 width -= 2 * (widget->style->xthickness + focus_pad);
824 width += 2 * (focus_width + focus_pad);
830 widget, "button", x, y, width, height)
940 gint x, y, width, height; local
1490 gint x, y, width = rect->width, height = rect->height; local
    [all...]
  /frameworks/base/core/java/android/widget/
PopupWindow.java 239 * @param width the popup's width
242 public PopupWindow(int width, int height) {
243 this(null, width, height);
255 * @param width the popup's width
258 public PopupWindow(View contentView, int width, int height) {
259 this(contentView, width, height, false);
270 * @param width the popup's width
    [all...]

Completed in 65 milliseconds

<<21222324252627282930>>