/external/pdfium/fpdfsdk/src/ |
fpdf_flatten.cpp | 17 enum FPDF_VALUE { TOP, LEFT, RIGHT, BOTTOM }; 20 if (rect.left - rect.right > 0.000001f || rect.bottom - rect.top > 0.000001f) 23 if (rect.left == 0.0f && rect.top == 0.0f && rect.right == 0.0f && 28 if (rect.left - rcPage.left < -10.000001f || 53 rc.left = pPageObject->m_Left; 136 case LEFT: { 138 pArray[i] = CPDF_Rect(array.GetAt(i)).left; 180 rcRet.left = GetMinMaxValue(*pRectArray, MIN, LEFT); 305 FX_FLOAT left = std::min(std::min(x1, x2), std::min(x3, x4)); local [all...] |
/external/skia/src/core/ |
SkMaskFilter.cpp | 45 const int dx = dst->fBounds.left() - src.fBounds.left(); 63 blitter->blitRect(r.left(), r.top(), r.width(), r.height()); 70 for (int x = mask.fBounds.left(); x < mask.fBounds.right(); ++x) { 86 // top-left 92 m.fBounds.offsetTo(outerR.left(), outerR.top()); 106 // bottom-left 112 m.fBounds.offsetTo(outerR.left(), outerR.bottom() - m.fBounds.height()); 128 innerR.set(outerR.left() + cx - mask.fBounds.left(), [all...] |
/external/autotest/client/site_tests/firmware_TouchMTB/ |
fuzzy.py | 54 parameters: (left, middle, right) 55 grade(x) = 0.0, when x <= left 56 0.0 to 1.0, when left <= x <= middle 66 - When x becomes near 'left' or 'right', its grade may drop 72 self.left, self.middle, self.right = self.para_values 74 self.width_left = self.middle - self.left 80 elif x <= self.left or x >= self.right: 94 parameters: (left, right) 96 0 for x <= left 105 - When x becomes near 'left' value, its grade may drop faste [all...] |
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
property-interpolation.js | 38 function propertyInterpolation(property, left, right) { 39 var handlers = left == right ? [] : propertyHandlers[property]; 41 var parsedLeft = handlers[i][0](left); 48 if (t == 0) return left; 56 return bool ? right : left;
|
/external/opencv/otherlibs/highgui/ |
highgui.h | 273 if( r.left > r.right ) 275 t = r.left; 276 r.left = r.right; 294 return cvRect( sr.left, sr.top, sr.right - sr.left, sr.bottom - sr.top ); 301 dr.left = sr.x; 314 roi.xOffset = r.left; 316 roi.width = r.right - r.left; 356 cvRect( r.left, r.top, r.right - r.left, r.bottom - r.top )) [all...] |
/frameworks/base/core/java/android/text/method/ |
Touch.java | 45 int left, right; local 50 left = Integer.MAX_VALUE; 54 left = (int) Math.min(left, layout.getLineLeft(i)); 58 left = 0; 62 final int actualWidth = right - left; 66 x = left - ((availableWidth - actualWidth) / 2); 71 // direction to resolve it to left or right 72 x = left - (availableWidth - actualWidth); 74 x = left; [all...] |
/frameworks/base/libs/hwui/hwui/ |
Canvas.h | 118 virtual void drawRoundRect(uirenderer::CanvasPropertyPrimitive* left, 141 virtual int saveLayer(float left, float top, float right, float bottom, 143 virtual int saveLayerAlpha(float left, float top, float right, float bottom, 158 virtual bool quickRejectRect(float left, float top, float right, float bottom) const = 0; 161 virtual bool clipRect(float left, float top, float right, float bottom, 182 virtual void drawRect(float left, float top, float right, float bottom, 185 virtual void drawRoundRect(float left, float top, float right, float bottom, 188 virtual void drawOval(float left, float top, float right, float bottom, 190 virtual void drawArc(float left, float top, float right, float bottom, 198 virtual void drawBitmap(const SkBitmap& bitmap, float left, float top [all...] |
/toolchain/binutils/binutils-2.25/intl/ |
plural.y | 63 struct expression *left, 125 new_exp_2 (op, left, right) 127 struct expression *left; 132 args[0] = left; 160 %left '|' /* || */ 161 %left '&' /* && */ 162 %left EQUOP2 /* == != */ 163 %left CMPOP2 /* < > <= >= */ 164 %left ADDOP2 /* + - */ 165 %left MULOP2 /* * / % * [all...] |
/external/replicaisland/src/com/replica/replicaisland/ |
BackgroundCollisionComponent.java | 142 final int left = mHorizontalOffset; local 144 final int right = left + mWidth; 146 final float centerOffsetX = ((mWidth) / 2.0f) + left; 169 horizontalHit = sweepHorizontal(mPreviousCenter, mCurrentPosition, mDelta, left, 180 horizontalHit = sweepHorizontal(mPreviousCenter, mCurrentPosition, mDelta, left, 188 if (mCurrentPosition.x + left < 0.0f) { 189 mCurrentPosition.x = (-left + 1); 250 float xStart = left; 254 xEnd = left; 274 mCurrentPosition.x = (mHorizontalHitPoint.x - left); [all...] |
/external/wpa_supplicant_8/src/common/ |
wpa_common.c | 548 int left; local 580 left = rsn_ie_len - 6; 597 left = rsn_ie_len - sizeof(*hdr); 600 if (left >= RSN_SELECTOR_LEN) { 610 left -= RSN_SELECTOR_LEN; 611 } else if (left > 0) { 613 __func__, left); 617 if (left >= 2) { 621 left -= 2; 622 if (count == 0 || count > left / RSN_SELECTOR_LEN) 744 int left; local [all...] |
/frameworks/native/include/private/ui/ |
RegionHelper.h | 81 TYPE left, right; local 82 int inside = spannerInner.next(current.left, current.right); 84 if (current.left < current.right && 234 SpannerBase::lhs_head = lhs.rects->left + lhs.dx; 243 SpannerBase::rhs_head = rhs.rects->left + rhs.dx; 248 SpannerBase::lhs_head = lhs.rects->left + lhs.dx; 252 SpannerBase::rhs_head = rhs.rects->left + rhs.dx; 263 inline int next(TYPE& left, TYPE& right) 267 int inside = SpannerBase::next(left, right, more_lhs, more_rhs); 279 void advance(region& reg, TYPE& left, TYPE& right) [all...] |
/frameworks/base/core/java/android/view/ |
FocusFinder.java | 128 // make up a rect at top left or bottom right of root 277 * @param direction the direction (up, down, left, right) 334 // for example, for direction left, if rect1 is to the left of the source 366 * checks whether the dest is at least partially to the direction of (e.g left of) 375 return (srcRect.right > destRect.right || srcRect.left >= destRect.right) 376 && srcRect.left > destRect.left; 378 return (srcRect.left < destRect.left || srcRect.right <= destRect.left [all...] |
/external/valgrind/coregrind/ |
m_oset.c | 42 // - First is the AVL metadata, which is three words: a left pointer, a 99 AvlNode* left; member in struct:_OSetNode 203 // Swing to the left. Warning: no balance maintainance. 209 a->right = b->left; 210 b->left = a; 217 AvlNode* b = a->left; 219 a->left = b->right; 228 root->left->balance = 0; 232 root->left->balance =-1; 236 root->left->balance = 0 [all...] |
/external/icu/icu4c/source/i18n/ |
rulebasedcollator.cpp | 698 RuleBasedCollator::compare(const UnicodeString &left, const UnicodeString &right, 701 return doCompare(left.getBuffer(), left.length(), 706 RuleBasedCollator::compare(const UnicodeString &left, const UnicodeString &right, 713 int32_t leftLength = left.length(); 717 return doCompare(left.getBuffer(), leftLength, 722 RuleBasedCollator::compare(const UChar *left, int32_t leftLength, 726 if((left == NULL && leftLength != 0) || (right == NULL && rightLength != 0)) { 735 if(rightLength >= 0) { leftLength = u_strlen(left); } 737 return doCompare(left, leftLength, right, rightLength, errorCode) [all...] |
/external/opencv3/modules/flann/include/opencv2/flann/ |
kdtree_index.h | 395 /* Move vector indices for left subtree to front of list. */ 396 int left = 0; local 399 while (left<=right && dataset_[ind[left]][cutfeat]<cutval) ++left; 400 while (left<=right && dataset_[ind[right]][cutfeat]>=cutval) --right; 401 if (left>right) break; 402 std::swap(ind[left], ind[right]); ++left; --right; 404 lim1 = left; [all...] |
/frameworks/compile/mclinker/include/mcld/ADT/ |
BinTree.h | 35 m_Stack.push(m_pNode->left); 50 m_Stack.push(m_pNode->left); 65 m_Queue.push(m_pNode->left); 80 m_Queue.push(m_pNode->left); 261 // | |left | 264 // | Left Right | 275 TreeImpl() : NodeFactory<DataType>() { node.left = node.right = &node; } 287 if ((*data).left == &pClient.node) 288 (*data).left = &node; 304 result->left = result->right = &m_Root.node [all...] |
/external/pdfium/xfa/src/fwl/src/basewidget/ |
fwl_scrollbarimp.cpp | 323 rect.left = m_rtClient.left;
341 rect.left =
342 IsVertical() ? m_rtClient.left : m_rtClient.right() - m_fButtonLen;
362 rect.Set(m_rtClient.left, m_rtMaxBtn.bottom(), m_rtClient.width, 0);
408 rect.left = rtClient.left;
410 if ((m_rtMinBtn.right() == m_rtMaxBtn.left && m_rtMinBtn.width > 0 &&
413 rect.left += iPos;
415 rect.left += m_rtMinBtn.right() + iPos; [all...] |
/external/libvpx/config/arm/ |
vpx_dsp_rtcd.h | 49 void vpx_d117_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 52 void vpx_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 55 void vpx_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 58 void vpx_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 61 void vpx_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 64 void vpx_d135_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 67 void vpx_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 70 void vpx_d135_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 73 void vpx_d153_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 76 void vpx_d153_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); [all...] |
/cts/tests/camera/src/android/hardware/camera2/cts/helpers/ |
AssertHelpers.java | 52 * Assert that every element in left is less than or equals to the corresponding element in 58 * @param left Left array 61 public static void assertArrayNotGreater(String message, float[] left, float[] right) { 62 assertEquals("Array lengths did not match", left.length, right.length); 64 String leftString = Arrays.toString(left); 67 for (int i = 0; i < left.length; ++i) { 69 "%s: (%s should be less than or equals than %s; item index %d; left = %s; " + 71 message, left[i], right[i], i, leftString, rightString); 73 assertTrue(msg, left[i] <= right[i]) [all...] |
/docs/source.android.com/src/compatibility/5.1/ |
android-cdd-cover.css | 46 text-align: left; 53 text-align: left; 68 text-align: left;
|
/docs/source.android.com/src/compatibility/source/ |
android-cdd-cover.css | 46 text-align: left; 53 text-align: left; 68 text-align: left;
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
DefaultHdfParser.java | 57 output.setValue(createFullPath(context, split.left), split.right); 63 output.setValue(createFullPath(context, split.left), readToToken(lineReader, split.right)); 67 context.add(split.left); 74 output.setSymlink(createFullPath(context, split.left), split.right); 124 result.left = line.substring(0, position).trim(); 133 String left; field in class:DefaultHdfParser.Split
|
/external/libvpx/libvpx/tools/ |
diff.py | 46 self.left = DiffLines(file_a, start_a, len_a) 53 self.left.Append(line) 57 self.left.Append(line) 68 return self.left.Complete() and self.right.Complete() 72 self.left.filename, self.right.filename, 73 max(self.left.length, self.right.length))
|
/external/libvpx/libvpx/vp8/common/ |
findnearmv.c | 37 const MODE_INFO *left = here - 1; local 61 /* Process left */ 62 if (left->mbmi.ref_frame != INTRA_FRAME) 64 if (left->mbmi.mv.as_int) 68 this_mv.as_int = left->mbmi.mv.as_int; 69 mv_bias(ref_frame_sign_bias[left->mbmi.ref_frame], refframe, &this_mv, ref_frame_sign_bias); 83 /* Process above left */ 108 /* See if above-left MV can be merged with NEAREST */ 114 + (left->mbmi.mode == SPLITMV)) * 2
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/index/ |
IndexDecoder.java | 182 int left = 0; 185 while (left < right) { 186 int i = left + (right - left) / 2; 189 left = i + 1; 194 setBlockInfo(info, recordOffset + left);
|