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

<<11121314151617181920>>

  /external/skia/src/svg/
SkSVGEllipse.cpp 32 SkScalar left, top, right, bottom; local
33 left = cx - rx;
38 sprintf(scratch, "%g", SkScalarToDouble(left));
39 parser._addAttribute("left", scratch);
  /external/srec/tools/grxmlcompile/
netw_arc.h 42 left= -1;
55 left= -1;
69 left= arcsrc->left;
89 left= -1;
123 /* Assign left context
125 void AssignLeft (int leftData) { left= leftData; };
152 /* Get left context
154 int GetLeft() { return left; };
270 else if (left > test->left
336 int left; \/* left context *\/ member in class:NUANArc
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
FocusAfterRemoval.java 38 final LinearLayout left = (LinearLayout) findViewById(R.id.leftLayout); local
40 // top left makes parent layout GONE
45 left.setVisibility(View.GONE);
49 // bottom left makes parent layout INVISIBLE
50 // top left makes parent layout GONE
55 left.setVisibility(View.INVISIBLE);
  /frameworks/base/graphics/java/android/graphics/
LargeBitmap.java 64 if (rect.left < 0 || rect.top < 0 || rect.right > getWidth() || rect.bottom > getHeight())
66 return nativeDecodeRegion(mNativeLargeBitmap, rect.left, rect.top,
67 rect.right - rect.left, rect.bottom - rect.top, options);
  /packages/apps/Browser/src/com/android/browser/view/
PieListView.java 42 public void layout(int anchorX, int anchorY, boolean left, float angle,
44 super.layout(anchorX, anchorY, left, angle, pHeight);
48 mLeft = anchorX + (left ? 0 : - mChildWidth);
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
MosaicTypes.h 37 left = right = top = bottom = 0.0;
42 return right - left;
53 int left, right, top, bottom; member in class:MosaicRect
  /packages/apps/Camera2/jni/feature_mos/src/mosaic/
MosaicTypes.h 37 left = right = top = bottom = 0.0;
42 return right - left;
53 int left, right, top, bottom; member in class:MosaicRect
  /packages/apps/Gallery/src/com/android/camera/
ActionMenuButton.java 77 final int left = getCompoundPaddingLeft(); local
80 rect.set(left + layout.getLineLeft(0) - PADDING_H,
82 Math.min(left + layout.getLineRight(0) + PADDING_H,
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
MosaicTypes.h 37 left = right = top = bottom = 0.0;
42 return right - left;
53 int left, right, top, bottom; member in class:MosaicRect
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
EmojiCategoryPageIndicatorView.java 62 final float left = unitWidth * mCurrentCategoryPageId + mOffset * unitWidth; local
64 final float right = left + unitWidth;
66 canvas.drawRect(left, top, right, bottom, mPaint);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
auditsPanel.css 44 text-align: left;
58 left: -8px;
75 left: 0;
88 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(194, 194, 194)), to(rgb(239, 239, 239)));
102 margin-left: 0;
109 left: 0;
127 float: left;
128 margin-left: -28px;
157 float: left;
    [all...]
  /packages/apps/Camera2/src/com/android/camera/crop/
CropObject.java 203 dx = Math.min(crop.left + dX, crop.right - minWidthHeight) - crop.left;
209 dx = Math.max(crop.right + dX, crop.left + minWidthHeight)
219 crop.left, crop.bottom
243 crop.left += dx;
265 float left = Math.abs(x - cropped.left); local
271 // Check left or right.
272 if ((left <= mTouchTolerance) && ((y + mTouchTolerance) >= cropped.top)
273 && ((y - mTouchTolerance) <= cropped.bottom) && (left < right))
    [all...]
  /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)
221 crop.left, crop.bottom
245 crop.left += dx;
267 float left = Math.abs(x - cropped.left); local
273 // Check left or right.
274 if ((left <= mTouchTolerance) && ((y + mTouchTolerance) >= cropped.top)
275 && ((y - mTouchTolerance) <= cropped.bottom) && (left < right))
    [all...]
  /bootable/recovery/edify/
expr.c 190 char* left = Evaluate(state, argv[0]); local
191 if (left == NULL) return NULL;
192 if (BooleanString(left) == true) {
193 free(left);
196 return StringValue(left);
202 char* left = Evaluate(state, argv[0]); local
203 if (left == NULL) return NULL;
204 if (BooleanString(left) == false) {
205 free(left);
208 return StringValue(left);
238 char* left = Evaluate(state, argv[0]); local
253 char* left = Evaluate(state, argv[0]); local
268 Value* left = EvaluateValue(state, argv[0]); local
281 char* left; local
    [all...]
  /external/chromium_org/cc/layers/
tiled_layer.h 88 void MarkOcclusionsAndRequestTextures(int left,
94 bool UpdateTiles(int left,
101 bool HaveTexturesForTiles(int left,
108 int left,
115 int left,
  /external/chromium_org/tools/gn/
parser.h 19 typedef scoped_ptr<ParseNode> (Parser::*InfixFunc)(scoped_ptr<ParseNode> left,
59 scoped_ptr<ParseNode> BinaryOperator(scoped_ptr<ParseNode> left, Token token);
60 scoped_ptr<ParseNode> IdentifierOrCall(scoped_ptr<ParseNode> left,
62 scoped_ptr<ParseNode> Assignment(scoped_ptr<ParseNode> left, Token token);
63 scoped_ptr<ParseNode> Subscript(scoped_ptr<ParseNode> left, Token token);
  /external/clang/include/clang/Basic/
ObjCRuntime.h 297 friend bool operator==(const ObjCRuntime &left, const ObjCRuntime &right) {
298 return left.getKind() == right.getKind() &&
299 left.getVersion() == right.getVersion();
302 friend bool operator!=(const ObjCRuntime &left, const ObjCRuntime &right) {
303 return !(left == right);
  /external/guava/guava/src/com/google/common/primitives/
UnsignedInts.java 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/wpa_supplicant_8/src/eap_common/
eap_pax_common.c 39 size_t num_blocks, left; local
57 left = output_len;
59 size_t clen = left > EAP_PAX_MAC_LEN ? EAP_PAX_MAC_LEN : left;
63 left -= clen;
  /frameworks/native/libs/ui/
Region.cpp 125 int left = current->left; local
131 // iterating over previous span RTL, quit if it's too far left
132 if (prev->right <= left) break;
134 if (prev->right > left && prev->right < right) {
139 if (prev->left > left && prev->left < right) {
140 dst.add(Rect(prev->left, top, right, bottom));
141 right = prev->left;
    [all...]
  /frameworks/rs/scriptc/
rs_math.rsh 94 * @param left plane
103 float4 *left, float4 *right,
107 left->x = viewProj->m[3] + viewProj->m[0];
108 left->y = viewProj->m[7] + viewProj->m[4];
109 left->z = viewProj->m[11] + viewProj->m[8];
110 left->w = viewProj->m[15] + viewProj->m[12];
137 float len = length(left->xyz);
138 *left /= len;
154 * @param left plane
163 float4 *left, float4 *right
    [all...]
  /prebuilts/sdk/renderscript/include/
rs_math.rsh 94 * @param left plane
103 float4 *left, float4 *right,
107 left->x = viewProj->m[3] + viewProj->m[0];
108 left->y = viewProj->m[7] + viewProj->m[4];
109 left->z = viewProj->m[11] + viewProj->m[8];
110 left->w = viewProj->m[15] + viewProj->m[12];
137 float len = length(left->xyz);
138 *left /= len;
154 * @param left plane
163 float4 *left, float4 *right
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
FadedEdgeDrawHelper.java 86 int left, int right, int top, int bottom, int scrollX, int scrollY,
123 if (!mIsVertical && (left + length > right - length)) {
124 length = (right - left) / 2;
143 mFadeMatrix.postTranslate(left, top);
145 canvas.drawRect(left, top, right, top + length, mFadePaint);
152 canvas.drawRect(left, top - mPaddingTop, right, top, mBlackPaint);
158 mFadeMatrix.postTranslate(left, bottom);
160 canvas.drawRect(left, bottom - length, right, bottom, mFadePaint);
166 mFadeMatrix.postTranslate(left, top);
168 canvas.drawRect(left, top, left + length, bottom, mFadePaint)
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
BlackFrame.java 34 final int left; field in class:BlackFrame.BlackSurface
41 left = l;
70 mTmpMatrix.setTranslate(left, top);
79 Slog.i(WindowManagerService.TAG, "Black Surface @ (" + left + "," + top + "): ("
110 pw.print(" left="); pw.print(bs.left);
126 outer.left, outer.top, inner.right, inner.top, layerStack);
128 if (outer.left < inner.left) {
130 outer.left, inner.top, inner.left, outer.bottom, layerStack)
    [all...]
  /bootable/recovery/mtdutils/
flash_image.c 128 int left = block_size - headerlen; local
129 while (left < 0) left += block_size;
130 while (left > 0) {
131 len = read(fd, buf, left > (int)sizeof(buf) ? (int)sizeof(buf) : left);
135 left -= len;

Completed in 1756 milliseconds

<<11121314151617181920>>