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

<<11121314151617181920>>

  /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/third_party/skia/include/core/
SkRect.h 59 int left() const { return fLeft; } function in struct:SkIRect
64 /** return the left edge of the rect */
70 * (i.e. left <= right) so the result may be negative.
82 * method is defined to return (right + left) >> 1.
85 * (right + left) / 2 when the sum is negative.
125 void set(int32_t left, int32_t top, int32_t right, int32_t bottom) {
126 fLeft = left;
132 void setLTRB(int32_t left, int32_t top, int32_t right, int32_t bottom) {
133 this->set(left, top, right, bottom);
160 /** Offset set the rectangle by adding dx to its left and right
    [all...]
  /external/skia/include/core/
SkRect.h 59 int left() const { return fLeft; } function in struct:SkIRect
64 /** return the left edge of the rect */
70 * (i.e. left <= right) so the result may be negative.
82 * method is defined to return (right + left) >> 1.
85 * (right + left) / 2 when the sum is negative.
125 void set(int32_t left, int32_t top, int32_t right, int32_t bottom) {
126 fLeft = left;
132 void setLTRB(int32_t left, int32_t top, int32_t right, int32_t bottom) {
133 this->set(left, top, right, bottom);
160 /** Offset set the rectangle by adding dx to its left and right
    [all...]
  /external/chromium_org/cc/layers/
tiled_layer.h 87 void MarkOcclusionsAndRequestTextures(int left,
93 bool UpdateTiles(int left,
100 bool HaveTexturesForTiles(int left,
105 gfx::Rect MarkTilesForUpdate(int left,
111 int left,
  /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;
  /external/chromium_org/cc/resources/
layer_tiling_data.cc 70 int* left,
80 *left = tiling_data_.TileXIndexFromSrcCoord(content_rect.x());
98 int left, top, right, bottom; local
99 ContentRectToTileIndices(content_rect, &left, &top, &right, &bottom);
101 for (int i = left; i <= right; ++i) {
123 int left, top, right, bottom; local
125 gfx::Rect(size), &left, &top, &right, &bottom); local
  /external/chromium_org/chrome_frame/test/
urlmon_moniker_tests.h 107 IMoniker* left,
113 IMoniker* left,
120 IMoniker* left,
137 IMoniker* left,
142 IMoniker* left,
158 IMoniker* left,
163 IMoniker* left,
  /external/wpa_supplicant_8/src/drivers/
netlink.c 40 int left; local
48 left = recvfrom(sock, buf, sizeof(buf), MSG_DONTWAIT,
50 if (left < 0) {
58 while (NLMSG_OK(h, left)) {
70 h = NLMSG_NEXT(h, left);
73 if (left > 0) {
75 "netlink message", left);
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_android.cc 290 size_t left = 0; local
291 while (left < old_len &&
292 left < new_len &&
293 old_value_[left] == new_value_[left]) {
294 left++;
302 return (new_len - left - right);
308 size_t left = 0; local
309 while (left < old_len &&
310 left < new_len &
    [all...]
  /external/elfutils/libebl/
eblgstrtab.c 76 struct Ebl_GStrent *left; member in struct:Ebl_GStrent
96 size_t left; member in struct:Ebl_GStrtab
152 st->left = len - offsetof (struct memoryblock, memory);
185 if (st->left < align + sizeof (struct Ebl_GStrent) + len * st->width)
197 newstr->left = NULL;
206 st->left -= align + sizeof (struct Ebl_GStrent) + len * st->width;
234 return searchstring (&(*sep)->left, newstr);
284 st->left += (st->backp - (char *) newstr) * st->width;
293 st->left += newstr->len;
305 newstr->left = (*sep)->left
    [all...]
eblwstrtab.c 78 struct Ebl_WStrent *left; member in struct:Ebl_WStrent
97 size_t left; member in struct:Ebl_WStrtab
149 st->left = len - offsetof (struct memoryblock, memory);
185 if (st->left < align + sizeof (struct Ebl_WStrent) + len * sizeof (wchar_t))
199 newstr->left = NULL;
206 st->left -= align + sizeof (struct Ebl_WStrent) + len * sizeof (wchar_t);
234 return searchstring (&(*sep)->left, newstr);
278 st->left += st->backp - (char *) newstr;
287 st->left += newstr->len;
299 newstr->left = (*sep)->left
    [all...]
  /external/zlib/src/contrib/puff/
puff.c 124 * bit buffer, using shift left.
139 /* drop need bits and update buffer, always zero to seven bits left */
271 int left; /* bits left in next or left to process */ local
275 left = s->bitcnt;
280 while (left--) {
295 left = (MAXBITS+1) - len;
296 if (left == 0)
301 if (left > 8
344 int left; \/* number of possible codes left of current length *\/ local
    [all...]
  /external/chromium_org/printing/
page_setup_unittest.cc 21 margins.left = rand() % kMax;
43 effective_margins.left = std::max(margins.left, printable_area.x());
56 gfx::Rect overlay_area(effective_margins.left, effective_margins.header,
58 effective_margins.left,
86 EXPECT_EQ(effective_margins.left, setup.effective_margins().left) << seed <<
105 margins.left = 4;
123 effective_margins.left = 4;
151 EXPECT_EQ(effective_margins.left, setup.effective_margins().left) <
    [all...]
  /frameworks/base/libs/hwui/
OpenGLRenderer.cpp 192 void OpenGLRenderer::setupFrameState(float left, float top,
202 mSnapshot->setClip(left, top, right, bottom);
203 mTilingClip.set(left, top, right, bottom);
212 discardFramebuffer(mTilingClip.left, mTilingClip.top, mTilingClip.right, mTilingClip.bottom);
225 return clear(mTilingClip.left, mTilingClip.top,
233 status_t OpenGLRenderer::prepareDirty(float left, float top,
236 setupFrameState(left, top, right, bottom, opaque);
252 void OpenGLRenderer::discardFramebuffer(float left, float top, float right, float bottom) {
257 left <= 0.0f && top <= 0.0f && right >= mWidth && bottom >= mHeight) {
266 status_t OpenGLRenderer::clear(float left, float top, float right, float bottom, bool opaque)
2211 float left = FLT_MAX; local
3286 const float left = x; local
3341 float left = FLT_MAX; local
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
HighlightView.java 92 path.addCircle(mDrawRect.left + (width / 2),
115 int x = mDrawRect.left
124 int left = mDrawRect.left + 1; local
138 int xMiddle = mDrawRect.left
139 + ((mDrawRect.right - mDrawRect.left) / 2);
143 mResizeDrawableWidth.setBounds(left - widthWidth,
145 left + widthWidth,
215 boolean horizCheck = (x >= r.left - hysteresis)
219 if ((Math.abs(r.left - x) < hysteresis) && verticalCheck)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_deblocking.c 71 * Info 701: Shift left of signed quantity (int)
134 u32 left; member in struct:__anon31690
137 enum { TOP = 0, LEFT = 1, INNER = 2 };
232 Function to determine if there is a slice boundary on the left side
304 /* filterLeftMbEdgeFlag, left mb is MB_A */
389 Function to calculate boundary strength value bs for left- or
486 Function to calculate boundary strength value bs for left-
558 filtered macroblock, macroblock above and macroblock on the left of
563 mb pointer to macroblock data structure of the top-left
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/design/
default.css 16 background: #eee none no-repeat fixed top left;
39 padding-left: 10px; }
59 margin-left: 190px;
74 float: left; }
85 float: left; }
141 float: left;
142 margin-left: 20px; }
144 margin-left: 0; }
260 background: transparent url(disclosure_down.png) no-repeat scroll top left;
273 background: transparent url(disclosure_up.png) no-repeat scroll top left;
    [all...]

Completed in 1255 milliseconds

<<11121314151617181920>>