/external/libvncserver/webclients/novnc/include/ |
black.css | 16 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4c4c4c), color-stop(50%,#2c2c2c), color-stop(51%,#000000), color-stop(100%,#131313)); /* Chrome,Safari4+ */ 25 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f04040), color-stop(50%,#2c2c2c), color-stop(51%,#000000), color-stop(100%,#131313)); /* Chrome,Safari4+ */ 34 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f040), color-stop(50%,#2c2c2c), color-stop(51%,#000000), color-stop(100%,#131313)); /* Chrome,Safari4+ */ 54 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4c4c4c), color-stop(50%,#2c2c2c), color-stop(51%,#000000), color-stop(100%,#131313)); /* Chrome,Safari4+ */ 65 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9dd53a), color-stop(50%,#a1d54f), color-stop(51%,#80c217), color-stop(100%, (…) [all...] |
/external/skia/tests/ |
BlitMaskClip.cpp | 55 for (int left = b.fLeft; left < b.fRight; left++) { 56 for (int right = left + 1; right <= b.fRight; right++) { 57 SkIRect clipRect = {left, top, right, bottom};
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
ExpandableOutlineView.java | 83 setOutlineRect(rect.left, rect.top, rect.right, rect.bottom); 93 return mCustomOutline ? mOutlineRect.left : (int) getTranslation(); 114 protected void setOutlineRect(float left, float top, float right, float bottom) { 118 mOutlineRect.set((int) left, (int) top, (int) right, (int) bottom); 122 mOutlineRect.right = (int) Math.max(left, mOutlineRect.right);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
DESEngine.java | 408 int work, right, left; local 410 left = (in[inOff + 0] & 0xff) << 24; 411 left |= (in[inOff + 1] & 0xff) << 16; 412 left |= (in[inOff + 2] & 0xff) << 8; 413 left |= (in[inOff + 3] & 0xff); 420 work = ((left >>> 4) ^ right) & 0x0f0f0f0f; 422 left ^= (work << 4); 423 work = ((left >>> 16) ^ right) & 0x0000ffff; 425 left ^= (work << 16); 426 work = ((right >>> 2) ^ left) & 0x33333333 [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Region.java | 71 nativeSetRect(mNativeRegion, r.left, r.top, r.right, r.bottom); 76 public Region(int left, int top, int right, int bottom) { 78 nativeSetRect(mNativeRegion, left, top, right, bottom); 97 return nativeSetRect(mNativeRegion, r.left, r.top, r.right, r.bottom); 102 public boolean set(int left, int top, int right, int bottom) { 103 return nativeSetRect(mNativeRegion, left, top, right, bottom); 182 return quickContains(r.left, r.top, r.right, r.bottom); 191 public native boolean quickContains(int left, int top, int right, 200 return quickReject(r.left, r.top, r.right, r.bottom); 208 public native boolean quickReject(int left, int top, int right, int bottom) [all...] |
/frameworks/support/v7/gridlayout/tests/src/android/support/v7/widget/ |
GridLayoutTest.java | 70 int left = mLeftView.getWidth(); local 73 assertTrue("left item should get some width", left > 0); 76 assertTrue("left view should be almost two times right view " + left + " vs " + right, 77 Math.abs(right * 2 - left) < 2); 83 int left = mLeftView.getWidth(); local 86 assertTrue("left item should get some width", left > 0); 89 assertTrue("left view should be almost two times right view " + left + " vs " + right 96 int left = mLeftView.getWidth(); local 121 int left = mLeftView.getHeight(); local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/mips-dspr2/ |
vp9_rtcd.h | 27 void vp9_d207_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 30 void vp9_d45_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 33 void vp9_d63_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 36 void vp9_h_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 37 void vp9_h_predictor_4x4_dspr2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 40 void vp9_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 43 void vp9_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 46 void vp9_d153_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 49 void vp9_v_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 52 void vp9_tm_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); [all...] |
/external/pdfium/core/src/fxge/ge/ |
fx_ge_device.cpp | 28 m_ClipBox.left = 0; 96 path.AppendRect((FX_FLOAT)(pRect->left), (FX_FLOAT)(pRect->bottom), 108 m_ClipBox.left = 0; 160 int width = (int)FXSYS_ceil(rect_f.right - rect_f.left); 163 if (rect_i.left == rect_i.right) { 175 if (rect_f.left - (FX_FLOAT)(rect_i.left) > 177 rect_i.left++; 254 if (!m_pDeviceDriver->GetDIBits(&bitmap, rect.left, rect.top, NULL)) { 265 matrix.TranslateI(-rect.left, -rect.top) [all...] |
/external/pdfium/fpdfsdk/src/pdfwindow/ |
PWL_ComboBox.cpp | 127 if (IsFloatBigger(rectWnd.right - rectWnd.left, 158 if (IsFloatBigger(rectWnd.right - rectWnd.left, 367 rcButton.left = rcButton.right - PWL_COMBOBOX_BUTTON_WIDTH; 369 if (rcButton.left < rclient.left) 370 rcButton.left = rclient.left; 374 rcEdit.right = rcButton.left - 1.0f; 376 if (rcEdit.left < rclient.left) [all...] |
/external/libvpx/libvpx/vpx_dsp/mips/ |
intrapred_msa.c | 265 v16u8 top, left, out; local 271 left = LD_UB(src_left); 272 HADD_UB2_UH(top, left, sum_top, sum_left); 554 const uint8_t *above, const uint8_t *left) { 555 (void)left; 561 const uint8_t *above, const uint8_t *left) { 562 (void)left; 568 const uint8_t *above, const uint8_t *left) { 569 (void)left; 575 const uint8_t *above, const uint8_t *left) { [all...] |
/external/zlib/src/examples/ |
gzappend.c | 122 /* rotate list[0..len-1] left by rot positions, in place */ 137 /* do simple left shift by one */ 163 *to = *from; /* shift left */ 173 unsigned left; /* bytes available at next */ member in struct:__anon27238 186 in->left = (unsigned)len; 198 #define read1(in) (in->left == 0 ? readmore(in) : 0, \ 199 in->left--, *(in->next)++) 206 if (n > in->left) { 207 n -= in->left; 215 if (n > in->left) 261 int ret, lastbit, left, full; local 391 unsigned left; local [all...] |
/sdk/templates/docs/ |
default.css | 68 left: 0; 86 padding-left: 16px; 105 margin-left: 16px; 118 left: -32px; 176 border-left: 4px solid #09c; 177 padding-left: 16px; 191 margin-left: 32px; 197 margin-left: 32px; 201 margin-left: 16px; 205 float: left; [all...] |
/external/libvpx/libvpx/vpx_dsp/arm/ |
intrapred_neon.c | 22 const uint8_t *above, const uint8_t *left, 36 const uint8x8_t L = vld1_u8(left); // left border 37 const uint16x4_t p0 = vpaddl_u8(L); // cascading summation of the left 63 const uint8_t *above, const uint8_t *left) { 64 dc_4x4(dst, stride, above, left, 1, 1); 68 const uint8_t *above, const uint8_t *left) { 70 dc_4x4(dst, stride, NULL, left, 0, 1); 74 const uint8_t *above, const uint8_t *left) { 75 (void)left; [all...] |
/external/webp/src/enc/ |
picture_rescale.c | 34 // Adjust top-left corner to chroma sample position. 36 int* const left, int* const top) { 38 *left &= ~1; 43 // Adjust top-left corner and verify that the sub-rectangle is valid. 45 int* const left, int* const top, 47 SnapTopLeftPosition(pic, left, top); 48 if ((*left) < 0 || (*top) < 0) return 0; 50 if ((*left) + width > pic->width) return 0; 90 int left, int top, int width, int height, 95 if (!AdjustAndCheckRectangle(src, &left, &top, width, height)) return 0 [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
RectFTest.java | 60 assertEquals(10.0f, mRectF.left); 66 assertEquals(5.0f, mRectF.left); 77 assertEquals(1.0f, mRectF.left); 89 assertEquals(1.0f, mRectF.left); 101 assertEquals(1.0f, mRectF.left); 112 assertEquals(0.0f, mRectF.left); 119 assertEquals(0.0f, mRectF.left); 145 assertEquals(5.0f, mRectF.left); 152 assertEquals(0.0f, mRectF.left); 166 assertEquals(5.0f, mRectF.left); [all...] |
/external/v8/benchmarks/spinning-balls/ |
splay-tree.js | 78 node.left = this.root_; 83 node.left = this.root_.left; 84 this.root_.left = null; 107 if (!this.root_.left) { 111 this.root_ = this.root_.left; 165 // the left subtree. 168 } else if (this.root_.left) { 169 return this.findMax(this.root_.left); 204 // the L tree of the algorithm. The left child of the dummy nod [all...] |
/frameworks/base/libs/hwui/ |
OpenGLRenderer.h | 138 float left, float top, float right, float bottom, bool opaque); 155 virtual int saveLayer(float left, float top, float right, float bottom, 157 return saveLayer(left, top, right, bottom, paint, flags, nullptr); 162 int saveLayer(float left, float top, float right, float bottom, 165 int saveLayerDeferred(float left, float top, float right, float bottom, 180 float left, float top, float right, float bottom, const SkPaint* paint); 182 void drawRect(float left, float top, float right, float bottom, 184 void drawRoundRect(float left, float top, float right, float bottom, 187 void drawOval(float left, float top, float right, float bottom, 189 void drawArc(float left, float top, float right, float bottom [all...] |
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
Trans.java | 102 int left = line.indexOf('<', right+1); local 103 if (left < 0) { 110 // Append transliterated segment right+1..left-1 111 buf.append(trans.transliterate(line.substring(right+1, left))); 112 if (DEBUG) System.out.println("T:" + line.substring(right+1, left)); 113 right = line.indexOf('>', left+1); 116 buf.append(line.substring(left)); 117 if (DEBUG) System.out.println("S:" + line.substring(left)); 120 buf.append(line.substring(left, right+1)); 121 if (DEBUG) System.out.println("S:" + line.substring(left, right+1)) [all...] |
/frameworks/av/services/audioflinger/ |
AudioResamplerFirOps.h | 52 int32_t mulRL(int left, int32_t in, uint32_t vRL) 56 if (left) { 69 int16_t v = left ? static_cast<int16_t>(vRL) : static_cast<int16_t>(vRL>>16); 120 int32_t mulAddRL(int left, uint32_t inRL, int16_t v, int32_t a) 124 if (left) { 137 int16_t s = left ? static_cast<int16_t>(inRL) : static_cast<int16_t>(inRL>>16); 143 int32_t mulAddRL(int left, uint32_t inRL, int32_t v, int32_t a) 147 if (left) { 160 int16_t s = left ? static_cast<int16_t>(inRL) : static_cast<int16_t>(inRL>>16);
|
/external/elfutils/libebl/ |
eblstrtab.c | 56 struct Ebl_Strent *left; member in struct:Ebl_Strent 75 size_t left; member in struct:Ebl_Strtab 132 st->left = len - overhead; 164 if (st->left < align + sizeof (struct Ebl_Strent) + len) 177 newstr->left = NULL; 184 st->left -= align + sizeof (struct Ebl_Strent) + len; 210 return searchstring (&(*sep)->left, newstr); 250 st->left += st->backp - (char *) newstr; 259 st->left += newstr->len; 271 newstr->left = (*sep)->left [all...] |
/external/icu/icu4c/ |
icu4c.css | 67 padding-left: 4px; 86 padding-left: 0; 87 margin-left: 1em; 104 margin-left: 1.5em; 122 margin-left: 1.8em; 125 padding-left: 0.75em; 131 margin-left: 2em; 147 * Navigation sidebar on the left hand of most pages 156 padding-left: 0.2em; 164 margin-left: 0px [all...] |
/hardware/ti/omap4-aah/camera/ |
CameraHalUtilClasses.cpp | 121 size_t &left, 131 hRange = CameraArea::RIGHT - CameraArea::LEFT; 137 left = ( mLeft + hRange / 2 ) * hScale; 141 areaWidth -= left; 149 ssize_t left, 156 if ( ( 0 == top ) && ( 0 == left ) && ( 0 == bottom ) && ( 0 == right ) && ( 0 == weight ) ) { 175 if ( ( CameraArea::LEFT > left ) || ( CameraArea::RIGHT < left ) ) { 176 CAMHAL_LOGEB("Camera area left coordinate is invalid %d", left ) 210 ssize_t top, left, bottom, right, weight; local [all...] |
/hardware/ti/omap4xxx/camera/ |
CameraHalUtilClasses.cpp | 123 size_t &left, 133 hRange = CameraArea::RIGHT - CameraArea::LEFT; 139 left = ( mLeft + hRange / 2 ) * hScale; 143 areaWidth -= left; 151 ssize_t left, 158 if ( ( 0 == top ) && ( 0 == left ) && ( 0 == bottom ) && ( 0 == right ) && ( 0 == weight ) ) { 177 if ( ( CameraArea::LEFT > left ) || ( CameraArea::RIGHT < left ) ) { 178 CAMHAL_LOGEB("Camera area left coordinate is invalid %d", left ) 212 ssize_t top, left, bottom, right, weight; local [all...] |
/toolchain/binutils/binutils-2.25/bfd/ |
mep-relocs.pl | 104 my ($bits, $left, $right, $ci, $c, $cv); 106 $left = 0; 110 $left++; 112 $left = 0; 123 return ($bits, $left, $right, $mask, $rmask); 134 ($bits, $left, $right, $mask) = mask2shifts ($mask); 143 $c, $bytesize, $bits, $left, $right, $pcrel, $overflow, $mask); 177 ($bits, $left, $right, $mask, $rmask) = mask2shifts ($mask); 178 if ($left > $right) { $left -= $right; $right = 0; [all...] |
/external/libvpx/config/arm-neon/ |
vpx_dsp_rtcd.h | 57 void vpx_d117_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 60 void vpx_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 63 void vpx_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 66 void vpx_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 69 void vpx_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 72 void vpx_d135_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 75 void vpx_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 76 void vpx_d135_predictor_4x4_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 79 void vpx_d135_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 82 void vpx_d153_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); [all...] |