HomeSort by relevance Sort by last modified time
    Searched refs:right (Results 426 - 450 of 4231) sorted by null

<<11121314151617181920>>

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropObject.java 205 dx = Math.min(crop.left + dX, crop.right - minWidthHeight) - crop.left;
211 dx = Math.max(crop.right + dX, crop.left + minWidthHeight)
212 - crop.right;
224 crop.right, crop.top
251 crop.right += dx;
268 float right = Math.abs(x - cropped.right); local
273 // Check left or right.
275 && ((y - mTouchTolerance) <= cropped.bottom) && (left < right)) {
278 else if ((right <= mTouchTolerance) && ((y + mTouchTolerance) >= cropped.top
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
splay.js 58 right: GeneratePayloadTree(depth - 1, tag)
97 // Verify that the splay tree has the right size.
174 node.right = this.root_.right;
175 this.root_.right = null;
177 node.right = this.root_;
203 this.root_ = this.root_.right;
205 var right = this.root_.right;
207 // Splay to make sure that the new root has an empty right child
    [all...]
  /external/chromium_org/cc/layers/
tiled_layer.h 92 int right,
98 int right,
105 int right,
112 int right,
119 int right,
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-splay.js 53 right: GeneratePayloadTree(depth - 1, tag)
92 // Verify that the splay tree has the right size.
169 node.right = this.root_.right;
170 this.root_.right = null;
172 node.right = this.root_;
198 this.root_ = this.root_.right;
200 var right = this.root_.right;
202 // Splay to make sure that the new root has an empty right child
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
OverviewGrid.js 111 * @param {number} right
113 setWindow: function(left, right)
115 this._window._setWindow(left, right);
182 this._rightResizeElement = parentElement.createChild("div", "overview-grid-window-resizer overview-grid-window-resizer-right");
183 this._rightResizeElement.style.right = 0;
201 this._overviewWindowBordersElement.style.right = "0%";
357 var right = windowRight;
366 right = ((windowRight + windowLeft) + width * factor) / 2;
372 this._rightResizeElement.style.left = right * 100 + "%";
376 this._overviewWindowElement.style.width = (right - left) * 100 + "%"
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
tztrans.cpp 55 TimeZoneTransition::operator=(const TimeZoneTransition& right) {
56 if (this != &right) {
57 fTime = right.fTime;
58 setFrom(*right.fFrom);
59 setTo(*right.fTo);
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_region.h 34 RowSpan(int32_t left, int32_t right);
38 return left == that.left && right == that.right;
42 int32_t right; member in struct:webrtc::DesktopRegion::RowSpan
134 // Comparison functions used for std::lower_bound(). Compare left or right
140 static void AddSpanToRow(Row* row, int32_t left, int32_t right);
  /external/chromium_org/v8/benchmarks/
splay.js 58 right: GeneratePayloadTree(depth - 1, tag)
97 // Verify that the splay tree has the right size.
174 node.right = this.root_.right;
175 this.root_.right = null;
177 node.right = this.root_;
203 this.root_ = this.root_.right;
205 var right = this.root_.right;
207 // Splay to make sure that the new root has an empty right child
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
UnsignedInts.java 128 // For pre-sizing a builder, just get the right order of magnitude
157 public int compare(int[] left, int[] right) {
158 int minLength = Math.min(left.length, right.length);
160 if (left[i] != right[i]) {
161 return UnsignedInts.compare(left[i], right[i]);
164 return left.length - right.length;
  /external/icu/icu4c/source/i18n/
tztrans.cpp 55 TimeZoneTransition::operator=(const TimeZoneTransition& right) {
56 if (this != &right) {
57 fTime = right.fTime;
58 setFrom(*right.fFrom);
59 setTo(*right.fTo);
  /external/llvm/docs/_static/
llvm.css 11 address img { float: right; width: 88px; height: 31px; }
12 address { clear: right; }
16 margin-right: 1em; margin-bottom: 1em; }
54 .doc_text { text-align: left; padding-left: 20pt; padding-right: 10pt }
81 h2+div, h2+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
82 h3+div, h3+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
83 h4+div, h4+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
98 tr.layout, td.layout, td.left, td.right
101 td.right { text-align: right }
    [all...]
  /external/openfst/src/lib/
symbol-table-ops.cc 21 SymbolTable *MergeSymbolTable(const SymbolTable &left, const SymbolTable &right,
24 // copied version of SymbolTable of left or right if either symbol table is
27 right.Name());
34 int64 key = right.Find(liter.Symbol());
47 return right.Copy();
49 // add all symbols we can from right symbol table
51 SymbolTableIterator riter(right);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyguardUserSwitcherScrim.java 63 canvas.drawRect(isLtr ? bounds.right - width : 0, 0,
64 isLtr ? bounds.right : bounds.left + width, width, mRadialGradientPaint);
89 public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft,
91 if (left != oldLeft || top != oldTop || right != oldRight || bottom != oldBottom) {
92 mLayoutWidth = right - left;
  /frameworks/rs/scriptc/
rs_math.rsh 95 * @param right plane
103 float4 *left, float4 *right,
112 right->x = viewProj->m[3] - viewProj->m[0];
113 right->y = viewProj->m[7] - viewProj->m[4];
114 right->z = viewProj->m[11] - viewProj->m[8];
115 right->w = viewProj->m[15] - viewProj->m[12];
139 len = length(right->xyz);
140 *right /= len;
155 * @param right plane
163 float4 *left, float4 *right,
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/scriptc/
rs_math.rsh 95 * @param right plane
103 float4 *left, float4 *right,
112 right->x = viewProj->m[3] - viewProj->m[0];
113 right->y = viewProj->m[7] - viewProj->m[4];
114 right->z = viewProj->m[11] - viewProj->m[8];
115 right->w = viewProj->m[15] - viewProj->m[12];
139 len = length(right->xyz);
140 *right /= len;
155 * @param right plane
163 float4 *left, float4 *right,
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/scriptc/
rs_math.rsh 95 * @param right plane
103 float4 *left, float4 *right,
112 right->x = viewProj->m[3] - viewProj->m[0];
113 right->y = viewProj->m[7] - viewProj->m[4];
114 right->z = viewProj->m[11] - viewProj->m[8];
115 right->w = viewProj->m[15] - viewProj->m[12];
139 len = length(right->xyz);
140 *right /= len;
155 * @param right plane
163 float4 *left, float4 *right,
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/scriptc/
rs_math.rsh 95 * @param right plane
103 float4 *left, float4 *right,
112 right->x = viewProj->m[3] - viewProj->m[0];
113 right->y = viewProj->m[7] - viewProj->m[4];
114 right->z = viewProj->m[11] - viewProj->m[8];
115 right->w = viewProj->m[15] - viewProj->m[12];
139 len = length(right->xyz);
140 *right /= len;
155 * @param right plane
163 float4 *left, float4 *right,
    [all...]
  /prebuilts/sdk/renderscript/include/
rs_math.rsh 95 * @param right plane
103 float4 *left, float4 *right,
112 right->x = viewProj->m[3] - viewProj->m[0];
113 right->y = viewProj->m[7] - viewProj->m[4];
114 right->z = viewProj->m[11] - viewProj->m[8];
115 right->w = viewProj->m[15] - viewProj->m[12];
139 len = length(right->xyz);
140 *right /= len;
155 * @param right plane
163 float4 *left, float4 *right,
    [all...]
  /external/pdfium/core/include/fxcrt/
fx_coordinates.h 269 baseType right() const function in class:CFX_RTemplate
304 void Inflate(baseType left, baseType top, baseType right, baseType bottom)
308 FXT_RECT::width += left + right;
326 void Deflate(baseType left, baseType top, baseType right, baseType bottom)
330 FXT_RECT::width -= left + right;
359 return rt.left >= left && rt.right() <= right() && rt.top >= top && rt.bottom() <= bottom();
442 baseType r = right(), b = bottom();
464 baseType r = right(), b = bottom();
468 if (r < rt.right()) {
534 int right; member in struct:FX_RECT
740 FX_FLOAT right; member in class:CFX_FloatRect
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/renderers/
GLArrowSensorTestRenderer.java 200 * @param right the right operand of the cross product
203 public static void crossProduct(float[] left, float[] right, float[] out) {
204 out[0] = left[1] * right[2] - left[2] * right[1];
205 out[1] = left[2] * right[0] - left[0] * right[2];
206 out[2] = left[0] * right[1] - left[1] * right[0];
213 * @param right the second dot product operan
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
BstTesting.java 19 import static com.google.common.collect.BstSide.RIGHT;
39 SimpleNode(Character key, @Nullable SimpleNode left, @Nullable SimpleNode right) {
40 super(key, left, right);
54 && Objects.equal(childOrNull(RIGHT), node.childOrNull(RIGHT));
61 return Objects.hashCode(getKey(), childOrNull(LEFT), childOrNull(RIGHT));
68 SimpleNode source, @Nullable SimpleNode left, @Nullable SimpleNode right) {
69 return new SimpleNode(source.getKey(), left, right);
76 @Nullable SimpleNode left, @Nullable SimpleNode right) {
77 return checkNotNull(nodeFactory).createNode(source, left, right);
    [all...]
  /frameworks/base/libs/hwui/
Renderer.h 124 * @param right The right coordinate of the dirty rectangle
130 virtual status_t prepareDirty(float left, float top, float right, float bottom,
148 virtual int saveLayer(float left, float top, float right, float bottom,
151 int saveLayerAlpha(float left, float top, float right, float bottom,
155 return saveLayer(left, top, right, bottom, &paint, flags);
171 float right, float bottom) const = 0;
172 virtual bool clipRect(float left, float top, float right, float bottom, SkRegion::Op op) = 0;
194 float left, float top, float right, float bottom, const SkPaint* paint) = 0;
197 virtual status_t drawRect(float left, float top, float right, float bottom
    [all...]
StatefulBaseRenderer.cpp 153 bool StatefulBaseRenderer::clipRect(float left, float top, float right, float bottom, SkRegion::Op op) {
155 mDirtyClip |= mSnapshot->clip(left, top, right, bottom, op);
160 path.addRect(left, top, right, bottom);
180 clip.setRect(bounds->left, bounds->top, bounds->right, bounds->bottom);
205 clipRect(bounds.left, bounds.top, bounds.right, bounds.bottom, SkRegion::kIntersect_Op);
233 float right, float bottom,
236 if (mSnapshot->isIgnored() || bottom <= top || right <= left) {
240 Rect r(left, top, right, bottom);
274 float right, float bottom) const {
275 if (mSnapshot->isIgnored() || bottom <= top || right <= left)
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
FaceSquareFilter.java 88 int right = (tempRect.right+WIDTH_OFFSET)*dims[0]/FACE_X_RANGE; local
105 if (right > dims[0]) {
106 right = dims[0];
107 } else if (right < 0) {
108 right = 0;
122 // Right edge
123 if (right > 0 && top > 0) {
124 pixels[ImageConstants.PIX_CHANNELS * (dims[0] * (top + j) + right) +
126 pixels[ImageConstants.PIX_CHANNELS * (dims[0] * (top + j) + right)
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/
FaceSquareFilterTest.java 77 // ensure the output image has the rectangle in the right place
90 int right = (faceRect.right+WIDTH_OFFSET)*bitmap.getWidth()/FACE_X_RANGE; local
107 if (right > bitmap.getWidth()) {
108 right = bitmap.getWidth();
109 } else if (right < 0) {
110 right = 0;
124 // Right edge
125 if (right > 0 && top > 0) {
126 pixels[ImageConstants.PIX_CHANNELS * (bitmap.getWidth() * (top + j) + right)
    [all...]

Completed in 561 milliseconds

<<11121314151617181920>>