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

<<31323334353637383940>>

  /ndk/build/platforms/android-4/arch-arm/usr/include/machine/
_types.h 51 /* 7.18.1.1 Exact-width integer types */
63 /* 7.18.1.2 Minimum-width integer types */
73 /* 7.18.1.3 Fastest minimum-width integer types */
87 /* 7.18.1.5 Greatest-width integer types */
  /ndk/build/platforms/android-5/arch-arm/usr/include/machine/
_types.h 51 /* 7.18.1.1 Exact-width integer types */
63 /* 7.18.1.2 Minimum-width integer types */
73 /* 7.18.1.3 Fastest minimum-width integer types */
87 /* 7.18.1.5 Greatest-width integer types */
  /ndk/build/platforms/android-5/arch-x86/usr/include/machine/
_types.h 62 /* 7.18.1.1 Exact-width integer types */
74 /* 7.18.1.2 Minimum-width integer types */
84 /* 7.18.1.3 Fastest minimum-width integer types */
98 /* 7.18.1.5 Greatest-width integer types */
  /ndk/build/platforms/android-8/arch-arm/usr/include/machine/
_types.h 51 /* 7.18.1.1 Exact-width integer types */
63 /* 7.18.1.2 Minimum-width integer types */
73 /* 7.18.1.3 Fastest minimum-width integer types */
87 /* 7.18.1.5 Greatest-width integer types */
  /ndk/build/platforms/android-8/arch-x86/usr/include/machine/
_types.h 62 /* 7.18.1.1 Exact-width integer types */
74 /* 7.18.1.2 Minimum-width integer types */
84 /* 7.18.1.3 Fastest minimum-width integer types */
98 /* 7.18.1.5 Greatest-width integer types */
  /ndk/samples/hello-neon/jni/
helloneon-intrinsics.h 20 void fir_filter_neon_intrinsics(short *output, const short* input, const short* kernel, int width, int kernelSize);
  /sdk/layoutopt/libs/uix/src/resources/rules/
InefficientWeight.rule 8 // - The node has a height/width != 0
  /system/core/libpixelflinger/
raster.h 28 void gglCopyPixels(void* c, GGLint x, GGLint y, GGLsizei width, GGLsizei height, GGLenum type);
  /system/core/toolbox/
notify.c 21 int width = 80; local
46 width = atoi(optarg);
81 buf = malloc(width + 2);
114 buflen = width - strlen(display_name);
  /cts/tests/tests/widget/src/android/widget/cts/
TableRow_LayoutParamsTest.java 110 assertEquals(200, layoutParams.width);
117 assertEquals(200, layoutParams.width);
133 assertEquals(200, layoutParams.width);
139 assertEquals(200, layoutParams.width);
173 assertEquals(200, mockLayoutParams.width);
182 assertEquals(400, mockLayoutParams.width);
187 assertEquals(600, mockLayoutParams.width);
197 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, mockLayoutParams.width);
202 assertEquals(TableLayout.LayoutParams.WRAP_CONTENT, mockLayoutParams.width);
212 assertEquals(600, mockLayoutParams.width);
    [all...]
  /external/jpeg/
rdrle.c 84 JDIMENSION width, height; local
115 width = source->header.xmax - source->header.xmin + 1;
118 source->header.xmax = width-1;
120 cinfo->image_width = width;
126 TRACEMS2(cinfo, 1, JTRC_RLE_GRAY, width, height);
129 TRACEMS3(cinfo, 1, JTRC_RLE_MAPGRAY, width, height,
133 TRACEMS3(cinfo, 1, JTRC_RLE_MAPPED, width, height,
137 TRACEMS3(cinfo, 1, JTRC_RLE_FULLMAP, width, height,
141 TRACEMS2(cinfo, 1, JTRC_RLE, width, height);
160 (JDIMENSION) width, (JDIMENSION) cinfo->input_components)
    [all...]
  /external/webkit/WebCore/platform/image-decoders/ico/
ICOImageDecoder.cpp 90 bool ICOImageDecoder::setSize(unsigned width, unsigned height)
93 return ImageDecoder::setSize(width, height);
97 if (IntSize(width, height) != m_frameSize)
146 const int aEntryArea = a.m_size.width() * a.m_size.height();
147 const int bEntryArea = b.m_size.width() * b.m_size.height();
285 setSize(dirEntry.m_size.width(), dirEntry.m_size.height());
293 // type of the width and height values. Storing them in ints (instead of
296 int width = static_cast<uint8_t>(m_data->data()[m_decodedOffset]);
297 if (!width)
298 width = 256
    [all...]
  /external/webkit/WebKit/android/WebCoreSupport/
MediaPlayerPrivateAndroid.cpp 256 float originalRatio = static_cast<float>(m_poster->width()) / static_cast<float>(m_poster->height());
257 int posterWidth = r.width() > m_poster->width() ? m_poster->width() : r.width();
259 int posterX = ((r.width() - posterWidth) / 2) + r.x();
352 void MediaPlayerPrivate::onPrepared(int duration, int width, int height) {
354 m_naturalSize = IntSize(width, height);
380 m_naturalSize = IntSize(poster->width(), poster->height());
394 static void OnPrepared(JNIEnv* env, jobject obj, int duration, int width, int height, int pointer)
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebTextCompletionController.mm 89 [column setWidth:tableFrame.size.width];
139 float width = ceilf([[_completions objectAtIndex:i] sizeWithAttributes:attributes].width);
140 if (width > maxWidth) {
141 maxWidth = width;
145 windowFrame.size.width = 100;
147 maxWidth = ceilf([NSScrollView frameSizeForContentSize:NSMakeSize(maxWidth, 100.0f) hasHorizontalScroller:NO hasVerticalScroller:YES borderType:NSNoBorder].width);
148 maxWidth = ceilf([NSWindow frameRectForContentRect:NSMakeRect(0.0f, 0.0f, maxWidth, 100.0f) styleMask:NSBorderlessWindowMask].size.width);
150 windowFrame.size.width = max(maxWidth, windowFrame.size.width);
    [all...]
  /external/webkit/WebKit/win/WebCoreSupport/
WebDragClient.cpp 247 //First step in drawing the link drag image width
250 IntSize labelSize(labelFont->width(labelRun), labelFont->ascent() + labelFont->descent());
252 if (labelSize.width() > MAX_DRAG_LABEL_STRING_WIDTH){
258 IntSize imageSize(labelSize.width() + DRAG_LABEL_BORDER_X * 2,
262 urlStringSize.setWidth(urlFont->width(urlRun));
265 if (urlStringSize.width() > MAX_DRAG_LABEL_STRING_WIDTH) {
269 imageSize.setWidth(std::max(labelSize.width(), urlStringSize.width()) + DRAG_LABEL_BORDER_X * 2);
297 IntRect rect(0, 0, imageSize.width(), imageSize.height());
305 urlString = StringTruncator::rightTruncate(urlString, imageSize.width() - (DRAG_LABEL_BORDER_X * 2.0f), *urlFont, false)
    [all...]
  /frameworks/base/awt/java/awt/image/
BandedSampleModel.java 67 * of samples, the width, height and bands number of image data.
72 * the width of image data.
85 * of samples, the width, height and bands number of image data.
90 * the width of image data.
154 return new BandedSampleModel(dataType, width, height, scanlineStride, indices, offsets);
264 if (x < 0 || y < 0 || x >= this.width || y >= this.height) {
274 if (x < 0 || y < 0 || x >= this.width || y >= this.height) {
284 if (x < 0 || y < 0 || x >= this.width || y >= this.height) {
385 if (x < 0 || y < 0 || x >= this.width || y >= this.height) {
395 if (x < 0 || y < 0 || x >= this.width || y >= this.height)
    [all...]
  /frameworks/base/core/jni/android/graphics/
NinePatchImpl.cpp 78 } else if (src.width() == 1 && src.height() == 1) {
146 LOGV("======== ninepatch bounds [%g %g]\n", SkScalarToFloat(bounds.width()), SkScalarToFloat(bounds.height()));
147 LOGV("======== ninepatch paint bm [%d,%d]\n", bitmap.width(), bitmap.height());
154 bitmap.width() == 0 || bitmap.height() == 0 ||
186 const int bitmapWidth = bitmap.width();
205 bitmap.width(), bitmap.height(),
207 SkScalarToFloat(bounds.width()), SkScalarToFloat(bounds.height()),
309 src.fLeft, src.fTop, src.width(), src.height(),
311 SkScalarToFloat(dst.width()), SkScalarToFloat(dst.height()));
312 if (2 == src.width() && SkIntToScalar(5) == dst.width())
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/3/changes/
android.content.DialogInterface.html 81 <TABLE summary="Added Fields" WIDTH="100%">
86 <TD VALIGN="TOP" WIDTH="25%">
93 <TD VALIGN="TOP" WIDTH="25%">
100 <TD VALIGN="TOP" WIDTH="25%">
110 <TABLE summary="Changed Fields" WIDTH="100%">
115 <TD VALIGN="TOP" WIDTH="25%">
118 <TD VALIGN="TOP" WIDTH="30%">
124 <TD VALIGN="TOP" WIDTH="25%">
127 <TD VALIGN="TOP" WIDTH="30%">
133 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
android.text.method.MetaKeyKeyListener.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...]
java.lang.Class.html 80 <TABLE summary="Changed Methods" WIDTH="100%">
85 <TD VALIGN="TOP" WIDTH="25%">
89 <TD VALIGN="TOP" WIDTH="30%">
95 <TD VALIGN="TOP" WIDTH="25%">
99 <TD VALIGN="TOP" WIDTH="30%">
105 <TD VALIGN="TOP" WIDTH="25%">
109 <TD VALIGN="TOP" WIDTH="30%">
115 <TD VALIGN="TOP" WIDTH="25%">
119 <TD VALIGN="TOP" WIDTH="30%">
125 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/4/changes/
android.Manifest.permission.html 81 <TABLE summary="Removed Fields" WIDTH="100%">
86 <TD VALIGN="TOP" WIDTH="25%">
93 <TD VALIGN="TOP" WIDTH="25%">
100 <TD VALIGN="TOP" WIDTH="25%">
110 <TABLE summary="Added Fields" WIDTH="100%">
115 <TD VALIGN="TOP" WIDTH="25%">
122 <TD VALIGN="TOP" WIDTH="25%">
129 <TD VALIGN="TOP" WIDTH="25%">
136 <TD VALIGN="TOP" WIDTH="25%">
143 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
android.content.res.Configuration.html 81 <TABLE summary="Added Fields" WIDTH="100%">
86 <TD VALIGN="TOP" WIDTH="25%">
93 <TD VALIGN="TOP" WIDTH="25%">
100 <TD VALIGN="TOP" WIDTH="25%">
107 <TD VALIGN="TOP" WIDTH="25%">
114 <TD VALIGN="TOP" WIDTH="25%">
121 <TD VALIGN="TOP" WIDTH="25%">
128 <TD VALIGN="TOP" WIDTH="25%">
135 <TD VALIGN="TOP" WIDTH="25%">
142 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/5/changes/
android.os.BatteryManager.html 81 <TABLE summary="Added Fields" WIDTH="100%">
86 <TD VALIGN="TOP" WIDTH="25%">
93 <TD VALIGN="TOP" WIDTH="25%">
100 <TD VALIGN="TOP" WIDTH="25%">
107 <TD VALIGN="TOP" WIDTH="25%">
114 <TD VALIGN="TOP" WIDTH="25%">
121 <TD VALIGN="TOP" WIDTH="25%">
128 <TD VALIGN="TOP" WIDTH="25%">
135 <TD VALIGN="TOP" WIDTH="25%">
142 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
android.view.WindowManager.LayoutParams.html 81 <TABLE summary="Added Fields" WIDTH="100%">
86 <TD VALIGN="TOP" WIDTH="25%">
93 <TD VALIGN="TOP" WIDTH="25%">
100 <TD VALIGN="TOP" WIDTH="25%">
107 <TD VALIGN="TOP" WIDTH="25%">
114 <TD VALIGN="TOP" WIDTH="25%">
124 <TABLE summary="Changed Fields" WIDTH="100%">
129 <TD VALIGN="TOP" WIDTH="25%">
132 <TD VALIGN="TOP" WIDTH="30%">
138 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
android.webkit.UrlInterceptRegistry.html 81 <TABLE summary="Changed Methods" WIDTH="100%">
86 <TD VALIGN="TOP" WIDTH="25%">
90 <TD VALIGN="TOP" WIDTH="30%">
96 <TD VALIGN="TOP" WIDTH="25%">
100 <TD VALIGN="TOP" WIDTH="30%">
106 <TD VALIGN="TOP" WIDTH="25%">
110 <TD VALIGN="TOP" WIDTH="30%">
116 <TD VALIGN="TOP" WIDTH="25%">
120 <TD VALIGN="TOP" WIDTH="30%">
126 <TD VALIGN="TOP" WIDTH="25%"
    [all...]

Completed in 439 milliseconds

<<31323334353637383940>>