/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
FrameImage2D.java | 83 * top-left of the image and 1,1 is the bottom-right. 162 (int) srcRect.right * srcImage.getWidth(), 166 (int) dstRect.right * srcImage.getWidth(),
|
/frameworks/native/libs/gui/tests/ |
FillBuffer.cpp | 64 bool inside = rect.left <= x && x < rect.right && 68 bool inside = rect.left <= 2*x && 2*x < rect.right &&
|
/frameworks/native/opengl/tools/glgen/specs/gles11/ |
GLES11Ext.spec | 22 void glFrustumxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) 40 void glOrthoxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) 77 void glFrustumfOES ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) 78 void glOrthofOES ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
|
/frameworks/support/v4/java/android/support/v4/view/ |
KeyEventCompat.java | 54 int modifiers, int basic, int left, int right) { 56 final int directional = left | right;
|
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/ |
GridLayoutManager.java | 423 int left = 0, right = 0, top = 0, bottom = 0; local 434 right = layoutState.mOffset; 435 left = right - maxSize; 438 right = left + maxSize; 446 right = left + mOrientationHelper.getDecoratedMeasurementInOther(view); 454 right - params.rightMargin, bottom - params.bottomMargin); 458 + (right - params.rightMargin) + ", b:" + (bottom - params.bottomMargin) 482 lp.rightMargin + mDecorInsets.right);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/ |
lint-hunks.py | 99 filename = hunk.right.filename[2:] 102 file_affected_line_map[filename].update(hunk.right.delta_line_nums)
|
/hardware/intel/img/hwcomposer/ips/anniedale/ |
PlaneCapabilities.cpp | 173 srcW = (int)src.right - (int)src.left; 175 dstW = dest.right - dest.left;
|
/hardware/libhardware/include/hardware/ |
hwcomposer.h | 53 int right; member in struct:hwc_rect 60 float right; member in struct:hwc_frect [all...] |
/hardware/qcom/display/msm8226/libvirtual/ |
virtual.cpp | 147 extW = r.right - r.left; 200 mHwcContext->mViewFrame[HWC_DISPLAY_VIRTUAL].right =
|
/hardware/qcom/display/msm8974/libhwcomposer/ |
hwc_copybit.cpp | 57 rect->r = me->mRegion.rects[me->r.current].right; 180 (layer->displayFrame.right - layer->displayFrame.left) % 16)) 229 rect.right, 348 sourceCrop.right, 354 displayFrame.right, 367 int32_t screen_w = displayFrame.right - displayFrame.left; 369 int32_t src_crop_width = sourceCrop.right - sourceCrop.left; 544 width = displayFrame.right - displayFrame.left;
|
/libcore/luni/src/main/java/java/util/concurrent/ |
PriorityBlockingQueue.java | 361 int right = child + 1; local 362 if (right < n && 363 ((Comparable<? super T>) c).compareTo((T) array[right]) > 0) 364 c = array[child = right]; 382 int right = child + 1; local 383 if (right < n && cmp.compare((T) c, (T) array[right]) > 0) 384 c = array[child = right];
|
/packages/apps/Camera/src/com/android/camera/ui/ |
RotateLayout.java | 63 boolean change, int left, int top, int right, int bottom) { 64 int width = right - left;
|
/packages/apps/FMRadio/src/com/android/fmradio/views/ |
FmVisualizerView.java | 169 float right = left + colWidth; local 176 RectF rect = new RectF(left, startY, right, bottom);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
ImageFilterTinyPlanet.java | 142 int right = left + croppedAreaWidth; local 144 RectF destRect = new RectF(left * scale, top * scale, right * scale, bottom * scale);
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
Paper.java | 70 float right = mAnimationRight.getValue(); local 72 // We linearly interpolate the value [left, right] for the screenX 77 float t = ((range - x) * left - x * right) / range;
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
ButtonSwitcher.java | 68 protected void onLayout(final boolean changed, final int left, final int top, final int right, 70 super.onLayout(changed, left, top, right, bottom);
|
/packages/apps/Calendar/src/com/android/calendar/ |
DayView.java | 490 * should be ignored are 1) right after a scale gesture and 2) finger was 2284 final int right = computeDayLeftPosition(mNumDays); local 3236 int right = (int) ev.right; local [all...] |
/build/tools/droiddoc/templates-pdk/assets/design/ |
default.css | 73 margin-right: 20px; 266 right: 10px; } 330 margin-right: 5px; } 333 right: 10px; } 383 padding-right: 10px; 526 padding-right: 2px; 532 .figure .figure-callout.right { 533 right: -5px; } 622 margin-right: 8px; } 658 border-right: 1px solid #494949 [all...] |
/external/chromium_org/ui/login/account_picker/ |
user_pod_row.css | 73 right: 10px; 129 right: 10px; 346 right: 0; 353 right: auto; 384 right: 0; 418 right: 5px; 426 .action-box-area.active ~ .action-box-menu.right-edge-offset { 427 right: 0 !important; 444 right: auto; 510 right: 5px [all...] |
/external/chromium_org/v8/src/ |
runtime.js | 105 var right; 127 right = %ToPrimitive(x, NUMBER_HINT); 128 if (IS_STRING(left) && IS_STRING(right)) { 129 return %_StringCompare(left, right); 132 var right_number = %ToNumber(right); 180 // Right operand (y) is already a string. 250 // Make sure to convert the right operand to a number before 252 // left operand. This ensures that valueOf methods on the right 288 // Make sure to convert the right operand to a number before 290 // left operand. This ensures that valueOf methods on the right [all...] |
/external/opencv/cv/src/ |
cvfloodfill.cpp | 169 int right = data[k][2]; local 175 for( i = left; i <= right; i++ ) 191 for( i = left; i <= right; i++ ) 301 int right = data[k][2]; local 307 for( i = left; i <= right; i++ ) 323 for( i = left; i <= right; i++ ) 484 int right = data[k][2]; local 487 for( i = left; i <= right; i++ ) 503 for( i = left; i <= right; i++ ) 521 for( i = left; i <= right; i++ 572 int right = data[k][2]; local 790 int right = data[k][2]; local 879 int right = data[k][2]; local [all...] |
/bionic/libc/kernel/uapi/drm/ |
qxl_drm.h | 82 uint32_t right; member in struct:drm_qxl_update_area
|
/cts/tests/tests/gesture/src/android/gesture/cts/ |
GestureStrokeTest.java | 100 assertEquals(LineGestureStrokeHelper.LINE_QUARTER_POINT, bounds.right);
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
DrawableContainerStateTest.java | 294 mPadding.right = rect.right; 309 padding.right = mPadding.right;
|
/developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/ |
CardBoundsWatchFaceService.java | 94 mCardBounds.right + BORDER_WIDTH_PX,
|