/external/nanopb-c/docs/ |
lsr.css | 157 border-right: 2px solid #555; 206 text-align: right; 226 border-right: 2px solid #555;
|
/external/pdfium/core/src/fxge/ge/ |
fx_ge_font.cpp | 251 bbox.right = cbox.xMax;
256 bbox.right = cbox.xMax * 1000 / pixel_size_x;
277 bbox.right = bbox.left + FXFT_Get_Glyph_Width(m_Face);
281 bbox.right = (FXFT_Get_Glyph_HoriBearingX(m_Face) + FXFT_Get_Glyph_Width(m_Face)) * 1000 / em;
367 bbox.right = FXFT_Get_Face_xMax(m_Face);
371 bbox.right = FXFT_Get_Face_xMax(m_Face) * 1000 / em;
|
/frameworks/base/core/java/android/text/method/ |
BaseMovementMethod.java | 177 return right(widget, buffer); 257 * Performs a right movement action. 258 * Moves the cursor or scrolls right by one character. 264 protected boolean right(TextView widget, Spannable buffer) { method in class:BaseMovementMethod 446 int right = Integer.MIN_VALUE; local 449 if (lineRight > right) { 450 right = lineRight; 453 return right; 478 * Performs a scroll right action. 479 * Scrolls right by the specified number of characters [all...] |
/frameworks/base/graphics/java/android/graphics/drawable/ |
InsetDrawable.java | 252 padding.right += mState.mInsetRight; 266 contentInsets.right + mState.mInsetRight, 276 public void setHotspotBounds(int left, int top, int right, int bottom) { 277 mState.mDrawable.setHotspotBounds(left, top, right, bottom); 358 r.right -= mState.mInsetRight; 361 mState.mDrawable.setBounds(r.left, r.top, r.right, r.bottom);
|
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/ |
PrintContentView.java | 272 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { 273 mStaticContent.layout(left, top, right, mStaticContent.getMeasuredHeight()); 276 mSummaryContent.layout(left, mStaticContent.getMeasuredHeight(), right, 283 mDynamicContent.layout(left, dynContentTop, right, dynContentBottom); 289 printButtonLeft = right - mPrintButton.getMeasuredWidth() - params.getMarginStart(); 303 mEmbeddedContentContainer.layout(left, embContentTop, right, embContentBottom);
|
/frameworks/base/tools/layoutlib/bridge/src/android/view/ |
ShadowPainter.java | 85 int right = shadowSize - left; local 87 int xStop = dstWidth - right; 89 int yStop = dstHeight - right; 99 int lastPixelOffset = right * dstWidth; 112 bufferOffset -= right; 122 a = dataBuffer[bufferOffset + right] >>> 24; 173 * @return the source image with a drop shadow on the bottom and right 200 * @return the source image with a drop shadow on the bottom and right 388 // After making the graphics, I cut out the top right, bottom left 389 // and bottom right corners as 20x20 images, and these are reproduced b [all...] |
/packages/apps/Contacts/src/com/android/contacts/activities/ |
PhotoSelectionActivity.java | 232 // The current look may not seem right on the new configuration, so let's just close self. 309 mOriginalPos.right = mOriginalPos.left + mSourceBounds.width(); 311 layoutParams.setMargins(mOriginalPos.left, mOriginalPos.top, mOriginalPos.right, 331 public void onLayoutChange(View v, int left, int top, int right, int bottom, 340 PropertyValuesHolder.ofInt("right", mOriginalPos.right, right); 393 mOriginalPos.right = mPhotoView.getRight();
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/ |
dic_node.h | 429 AK_FORCE_INLINE bool compare(const DicNode *right) const { 432 const bool rightExactMatch = ErrorTypeUtils::isExactMatch(right->getContainedErrorTypes()); 437 right->getNormalizedCompoundDistance() - getNormalizedCompoundDistance(); 445 const int depthDiff = right->getNodeCodePointCount() - depth; 452 right->mDicNodeState.mDicNodeStateOutput.getCurrentWordCodePointAt(i); 458 return this > right;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
AndroidXmlAutoEditStrategy.java | 133 ITextRegion right = getRegionAt(doc, offset, false /*biasLeft*/); local 134 if (right != null && right.getType().equals(XML_END_TAG_OPEN)) { 163 ITextRegion right = getRegionAt(doc, offset, false /*biasLeft*/); local 164 if (left != null && right != null 166 && right.getType().equals(XML_END_TAG_OPEN)) { 366 * right. In other words, if | represents the caret position, in the XML 368 * the subregion with bias right is the opening {@code </}. 372 * @param biasLeft whether we should look at the token on the left or on the right
|
/external/chromium_org/third_party/icu/source/i18n/ |
rbt_pars.cpp | 80 #define ALT_FORWARD_RULE_OP ((UChar)0x2192) // Right Arrow 81 #define ALT_FWDREV_RULE_OP ((UChar)0x2194) // Left Right Arrow 272 // right of the key. This is indicated by characters on the output 387 * pos on entry points right after it. Accumulate everything 1280 RuleHalf* right = &_right; local [all...] |
/external/icu/icu4c/source/i18n/ |
rbt_pars.cpp | 80 #define ALT_FORWARD_RULE_OP ((UChar)0x2192) // Right Arrow 81 #define ALT_FWDREV_RULE_OP ((UChar)0x2194) // Left Right Arrow 272 // right of the key. This is indicated by characters on the output 387 * pos on entry points right after it. Accumulate everything 1280 RuleHalf* right = &_right; local [all...] |
/hardware/qcom/display/msm8226/libhwcomposer/ |
hwc_copybit.cpp | 60 rect->r = me->mRegion.rects[me->r.current].right; 234 finalW = max(finalW, ALIGN((overlap.right - overlap.left), 32)); 244 // calculate the right and bottom values 245 ptorInfo->displayFrame[i].right = ptorInfo->displayFrame[i].left + 246 (overlap.right - overlap.left); 321 src_h = sourceCrop.right - sourceCrop.left; 325 src_w = sourceCrop.right - sourceCrop.left; 328 dst_w = layer->displayFrame.right - layer->displayFrame.left; 389 rect.right, 674 copybit_rect_t srcRect = {crop.left, crop.top, crop.right, [all...] |
/external/chromium_org/third_party/angle/src/compiler/translator/ |
IntermNode.cpp | 22 TPrecision GetHigherPrecision(TPrecision left, TPrecision right) 24 return left > right ? left : right; 27 bool ValidateMultiplication(TOperator op, const TType &left, const TType &right) 33 return left.getNominalSize() == right.getNominalSize() && 34 left.getSecondarySize() == right.getSecondarySize(); 39 return left.getNominalSize() == right.getRows(); 41 return left.getNominalSize() == right.getRows() && 42 left.getNominalSize() == right.getCols(); 44 return left.getCols() == right.getNominalSize() [all...] |
/external/pdfium/core/src/fpdfdoc/ |
doc_ap.cpp | 319 rcBBox = CPDF_Rect(0, 0, rcAnnot.right - rcAnnot.left, rcAnnot.top - rcAnnot.bottom);
322 matrix = CPDF_Matrix(0, 1, -1, 0, rcAnnot.right - rcAnnot.left, 0);
323 rcBBox = CPDF_Rect(0, 0, rcAnnot.top - rcAnnot.bottom, rcAnnot.right - rcAnnot.left);
326 matrix = CPDF_Matrix(-1, 0, 0, -1, rcAnnot.right - rcAnnot.left, rcAnnot.top - rcAnnot.bottom);
327 rcBBox = CPDF_Rect(0, 0, rcAnnot.right - rcAnnot.left, rcAnnot.top - rcAnnot.bottom);
331 rcBBox = CPDF_Rect(0, 0, rcAnnot.top - rcAnnot.bottom, rcAnnot.right - rcAnnot.left);
390 rcBBox.right - fBorderWidth, rcBBox.top - fBorderWidth);
437 CPVT_FontMap map(pDoc, pStreamDict->GetDict("Resources"), pDefFont, sFontName.Right(sFontName.GetLength() - 1));
486 CPVT_FontMap map(pDoc, pStreamDict->GetDict("Resources"), pDefFont, sFontName.Right(sFontName.GetLength() - 1));
491 rcButton.left = rcButton.right - 13; [all...] |
/external/pdfium/fpdfsdk/src/formfiller/ |
FFL_FormFiller.cpp | 153 this->InvalidateRect(rect.left, rect.top, rect.right, rect.bottom);
169 this->InvalidateRect(rcFFL.left, rcFFL.top, rcFFL.right, rcFFL.bottom);
315 this->InvalidateRect(rcRect.left, rcRect.top, rcRect.right, rcRect.bottom);
528 mt = CPDF_Matrix(0,1,-1,0,rcDA.right - rcDA.left,0);
531 mt = CPDF_Matrix(-1,0,0,-1,rcDA.right - rcDA.left,rcDA.top - rcDA.bottom);
557 FX_FLOAT fWidth = rectAnnot.right - rectAnnot.left;
771 this->InvalidateRect(rcRect.left, rcRect.top, rcRect.right, rcRect.bottom);
804 void CFFL_FormFiller::InvalidateRect(double left, double top, double right, double bottom)
807 m_pApp->FFI_Invalidate(pPage, left, top, right, bottom);
827 this->InvalidateRect(rect.left, rect.top, rect.right, rect.bottom); [all...] |
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
ScreenMagnifier.java | 174 final int right = args.argi3; 176 handleOnRectangleOnScreenRequested(left, top, right, bottom); 242 public void onRectangleOnScreenRequested(int left, int top, int right, int bottom) { 246 args.argi3 = right; 251 private void handleOnRectangleOnScreenRequested(int left, int top, int right, int bottom) { 254 if (!magnifiedFrame.intersects(left, top, right, bottom)) { 261 if (right - left > magnifFrameInScreenCoords.width()) { 266 scrollX = right - magnifFrameInScreenCoords.right; 270 } else if (right > magnifFrameInScreenCoords.right) [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
TileImageView.java | 194 boolean changeSize, int left, int top, int right, int bottom) { 195 super.onLayout(changeSize, left, top, right, bottom); 271 for (int x = r.left, right = r.right; x < right; x += size) { 318 int right = (int) FloatMath.ceil(left + width / scale); local 325 right = Math.min(mImageWidth, right); 328 out.set(left, top, right, bottom); 438 for (int tx = r.left, j = 0; tx < r.right; tx += size, j++) [all...] |
/frameworks/base/core/java/android/text/ |
Layout.java | 106 * @param align whether to left, right, or center the text. Styles can 126 * @param align whether to left, right, or center the text. Styles can 240 int right = mWidth; local 273 // Draw all leading margin spans. Adjust left or right according 293 margin.drawLeadingMargin(canvas, paint, right, dir, ltop, 296 right -= margin.getLeadingMargin(useFirstLineMargin); 333 x = right; 339 x = right - max; 345 x = (right + left - max) >> 1; 466 * Return the start position of the line, given the left and right bound 860 int right = getParagraphRight(line); local 889 int right = getParagraphRight(line); local 920 int right = getParagraphRight(line); local 1404 float right = Math.max(h1, h2); local 1508 int right = mWidth; local [all...] |
/external/chromium_org/third_party/lcov/bin/ |
genhtml | [all...] |
/build/tools/droiddoc/templates-ds/assets/ |
android-developer-docs.css | 301 float:right; 314 margin-right: 2px; 317 /* right alignment for the return type in sumtable */ 319 text-align:right; 335 /* page-top-right container for reference pages (holds 341 float:right; 342 text-align:right; 350 float:right; 361 float:right; 390 right:15px [all...] |
/build/tools/droiddoc/templates-pdk/assets/ |
android-developer-docs.css | 301 float:right; 314 margin-right: 2px; 317 /* right alignment for the return type in sumtable */ 319 text-align:right; 335 /* page-top-right container for reference pages (holds 341 float:right; 342 text-align:right; 350 float:right; 361 float:right; 390 right:15px [all...] |
/cts/suite/cts/deviceTests/opengl/jni/primitive/fullpipeline/ |
FullPipelineRenderer.cpp | 136 float right = ratio; local 142 mProjectionMatrix = Matrix::newFrustum(left, right, bottom, top, near, far);
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
ScaleDrawableTest.java | 322 assertEquals(expected.right, mockDrawable.getBounds().right); 329 mockDrawable, Gravity.BOTTOM | Gravity.RIGHT, scaleWidth, scaleHeight); 333 Gravity.apply(Gravity.BOTTOM | Gravity.RIGHT, 339 assertEquals(expected.right, mockDrawable.getBounds().right); 345 mockDrawable, Gravity.BOTTOM | Gravity.RIGHT, scaleWidth, scaleHeight); 350 assertEquals(bounds.right, mockDrawable.getBounds().right); 356 mockDrawable, Gravity.BOTTOM | Gravity.RIGHT, scaleWidth, scaleHeight) [all...] |
/cts/tests/tests/media/libmediandkjni/ |
codec-utils-jni.cpp | 38 int right; member in struct:NativeImage::crop 151 gFields.fieldRight = env->GetFieldID(rectClazz, "right", "I"); 181 img->crop.right = env->GetIntField(area, gFields.fieldRight); 183 if (img->crop.right == 0 && img->crop.bottom == 0) { 184 img->crop.right = img->width; 224 ((img->crop.right + (1 << xDecim) - 1) >> xDecim) - (img->crop.left >> xDecim); 279 tgt->crop.left, tgt->crop.top, tgt->crop.right, tgt->crop.bottom, 285 src->crop.left, src->crop.top, src->crop.right, src->crop.bottom, 350 size_t rightOdd = img->crop.right & 1;
|
/cts/tests/tests/text/src/android/text/method/cts/ |
LinkMovementMethodTest.java | 393 assertTrue(method.right(mView, mSpannable)); 396 assertTrue(method.right(mView, mSpannable)); 399 assertFalse(method.right(mView, mSpannable)); 404 method.right(null, mSpannable); 411 method.right(mView, null); 434 assertFalse(method.right(mView, mSpannable)); 519 protected boolean right(TextView widget, Spannable buffer) { method in class:LinkMovementMethodTest.MyLinkMovementMethod 520 return super.right(widget, buffer);
|