/external/libjpeg-turbo/java/doc/ |
stylesheet.css | 84 margin-left:.5em; 96 background-position:left top; 119 float:left; 132 float:left; 143 float:left; 148 clear:left; 149 float:left; 153 float:left; 159 float:left; 164 float:left; [all...] |
/external/pdfium/fpdfsdk/src/ |
fpdftext.cpp | 78 double* left, 90 *left = charinfo.m_CharBox.left; 122 str = str.Left(count); 142 double* left, 150 textpage->GetRect(rect_index, rect.left, rect.top, rect.right, rect.bottom); 151 *left = rect.left; 158 double left, 167 CFX_FloatRect rect((FX_FLOAT)left, (FX_FLOAT)bottom, (FX_FLOAT)right [all...] |
/external/pdfium/third_party/freetype/src/base/ |
ftpfr.c | 100 FT_UInt left, 116 error = service->get_kerning( face, left, right, avector ); 118 error = FT_Get_Kerning( face, left, right,
|
/external/pdfium/xfa/src/fxbarcode/common/ |
BC_WhiteRectangleDetector.cpp | 62 int32_t left = m_leftInit;
local 85 bottomBorderNotWhite = ContainsBlackPoint(left, right, down, TRUE);
96 while (leftBorderNotWhite && left >= 0) {
97 leftBorderNotWhite = ContainsBlackPoint(up, down, left, FALSE);
99 left--;
103 if (left < 0) {
109 topBorderNotWhite = ContainsBlackPoint(left, right, up, TRUE);
124 int32_t maxSize = right - left;
128 GetBlackPointOnSegment((FX_FLOAT)left, (FX_FLOAT)(down - i),
129 (FX_FLOAT)(left + i), (FX_FLOAT)(down))); [all...] |
/external/skia/tests/ |
PathOpsLineIntersectionTest.cpp | 121 double left = SkTMin(line1[0].fX, line1[1].fX); local 124 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left); 128 double left = SkTMin(line2[0].fX, line2[1].fX); local 131 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left); 164 double left = SkTMin(line1[0].fX, line1[1].fX); local 167 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left); 173 double left = SkTMin(line2[0].fX, line2[1].fX) local [all...] |
/external/toybox/toys/other/ |
inotifyd.c | 86 int left = len - (((char *)event)-(char *)buf), local 90 if (left >= size) size += event->len; 91 if (left < size) break;
|
/external/v8/src/compiler/ |
type-hints.h | 21 BinaryOperationHints(Hint left, Hint right, Hint result) 22 : bit_field_(LeftField::encode(left) | RightField::encode(right) | 29 Hint left() const { return LeftField::decode(bit_field_); } function in class:v8::internal::compiler::final
|
/external/v8/src/crankshaft/ |
hydrogen-dehoist.cc | 20 if (binary_operation->left()->IsConstant() && index->IsAdd()) { 22 constant = HConstant::cast(binary_operation->left()); 24 subexpression = binary_operation->left();
|
/external/webrtc/webrtc/modules/desktop_capture/ |
screen_capturer_helper.cc | 96 int left = DownToMultiple(it.rect().left(), grid_size_mask); local 100 result->AddRect(DesktopRect::MakeLTRB(left, top, right, bottom));
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
FixedSizeFrameLayout.java | 58 protected final void onLayout(boolean changed, int left, int top, int right, int bottom) { 59 mLayoutBounds.set(left, top, right, bottom); 90 super.onLayout(changed, bounds.left, bounds.top, bounds.right, bounds.bottom);
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
GradientsActivity.java | 223 float left = 40.0f; local 237 mMatrix.postTranslate(left, top); 240 canvas.drawRect(left, top, right, top + mDrawHeight, mPaint); 242 left += 40.0f + mDrawWidth; 249 mMatrix.postTranslate(left, bottom); 252 canvas.drawRect(left, bottom - mDrawHeight, right, bottom, mPaint); 259 mMatrix.postTranslate(left, top); 262 canvas.drawRect(left, top, left + mDrawWidth, bottom, mPaint); 264 right = left + mDrawWidth [all...] |
/hardware/qcom/display/msm8960/libhwcomposer/ |
hwc_fbupdate.cpp | 98 ovutils::Dim dcrop(sourceCrop.left, sourceCrop.top, 99 sourceCrop.right - sourceCrop.left, 109 ovutils::Dim dpos(displayFrame.left, 111 displayFrame.right - displayFrame.left, 174 //Request left RGB pipe 220 ovutils::Dim dcropL(sourceCrop.left, sourceCrop.top, 221 (sourceCrop.right - sourceCrop.left) / 2, 224 sourceCrop.left + (sourceCrop.right - sourceCrop.left) / 2, 226 (sourceCrop.right - sourceCrop.left) / 2 [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/ |
fmtflags.pass.cpp | 19 // static const fmtflags left; 29 // static const fmtflags adjustfield = left | right | internal; 43 assert(std::ios_base::left); 61 & std::ios_base::left 73 assert(std::ios_base::adjustfield == (std::ios_base::left
|
/packages/apps/Camera2/src/com/android/camera/tinyplanet/ |
TinyPlanetPreview.java | 103 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { 104 super.onLayout(changed, left, top, right, bottom); 106 int width = right - left;
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/cr16/ |
ash_test.s | 5 # ASHUB cnt(left +)/cnt (right -), reg 22 # ASHUW cnt(left +)/cnt (right -), reg 40 # ASHUD cnt(left +)/cnt (right -), regp
|
/cts/tests/tests/view/src/android/view/cts/ |
View_LayoutPositionTest.java | 66 int left = vLocation[0] - pLocation[0]; local 68 int right = left + vRect.width(); 71 assertEquals(left, view.getLeft()); 98 assertEquals(left + h_offset , nleft);
|
/developers/build/prebuilts/gradle/ElevationDrag/Application/src/main/java/com/example/android/elevationdrag/ |
DragFrameLayout.java | 72 public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) { 73 super.onViewPositionChanged(changedView, left, top, dx, dy); 77 public int clampViewPositionHorizontal(View child, int left, int dx) { 78 return left;
|
/developers/samples/android/ui/views/Elevation/ElevationDrag/Application/src/main/java/com/example/android/elevationdrag/ |
DragFrameLayout.java | 72 public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) { 73 super.onViewPositionChanged(changedView, left, top, dx, dy); 77 public int clampViewPositionHorizontal(View child, int left, int dx) { 78 return left;
|
/development/samples/SampleSyncAdapter/samplesyncadapter_server/static/css/ |
main.css | 26 text-align: left; 54 text-align: left;
|
/development/samples/browseable/ElevationDrag/src/com.example.android.elevationdrag/ |
DragFrameLayout.java | 72 public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) { 73 super.onViewPositionChanged(changedView, left, top, dx, dy); 77 public int clampViewPositionHorizontal(View child, int left, int dx) { 78 return left;
|
/external/android-clat/ |
checksum.c | 36 int left = len; local 39 while(left > 1) { 42 left -= 2; 44 if(left) {
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
Operation.java | 36 /** The left operand expression. 80 * Set the left and right operand expressions for this operation. 83 * @param l The left expression operand. 109 XObject left = m_left.execute(xctxt, true); local 112 XObject result = operate(left, right); 113 left.detach(); 122 * @param left non-null reference to the evaluated left operand. 129 public XObject operate(XObject left, XObject right) 135 /** @return the left operand of binary operation, as an Expression [all...] |
/external/autotest/frontend/static/ |
jsonview.css | 55 left: -1em; 100 padding-left: 1em;
|
/external/avahi/avahi-core/ |
prioq.h | 38 AvahiPrioQueueNode *left, *right, *parent, *next, *prev; member in struct:AvahiPrioQueueNode
|
/external/chromium-trace/catapult/third_party/polymer/components/paper-progress/ |
paper-progress.css | 25 -webkit-transform-origin: left center; 26 transform-origin: left center;
|