/external/chromium_org/third_party/WebKit/Source/core/dom/ |
ClientRect.h | 48 float left() const { return m_rect.x(); } function in class:WebCore::ClientRect
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
inspector.css | 38 left: 0; 69 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(191, 191, 191)), to(rgb(151, 151, 151))); 115 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(233, 233, 233)), to(rgb(207, 207, 207))); 150 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(175, 175, 175)), to(rgb(151, 151, 151))) !important; 155 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(221, 221, 221)), to(rgb(207, 207, 207))) !important; 160 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(189, 189, 189)), to(rgb(167, 167, 167))) !important [all...] |
/external/chromium_org/third_party/WebKit/Source/web/resources/ |
colorSuggestionPicker.css | 39 float: left; 43 float: left;
|
/external/chromium_org/third_party/freetype/include/freetype/ |
ftpfr.h | 110 * left :: Index of the left glyph. 130 FT_UInt left,
|
/external/chromium_org/third_party/freetype/include/freetype/internal/services/ |
svpfr.h | 41 FT_UInt left,
|
/external/chromium_org/third_party/skia/src/svg/ |
SkSVGRect.cpp | 30 SVG_ADD_ATTRIBUTE_ALIAS(left, x);
|
/external/chromium_org/tools/gn/ |
operators.h | 31 const ParseNode* left,
|
/external/chromium_org/ui/gfx/ |
canvas_paint_win.h | 52 return ps_.rcPaint.right - ps_.rcPaint.left == 0 ||
|
/external/chromium_org/ui/views/controls/ |
focusable_border.h | 26 void SetInsets(int top, int left, int bottom, int right);
|
/external/chromium_org/ui/webui/resources/css/ |
trash.css | 24 left: 8px; 56 margin-left: 1px;
|
/external/freetype/include/freetype/ |
ftpfr.h | 110 * left :: Index of the left glyph. 130 FT_UInt left,
|
/external/freetype/include/freetype/internal/services/ |
svpfr.h | 41 FT_UInt left,
|
/external/guava/guava/src/com/google/common/collect/ |
ReverseNaturalOrdering.java | 33 @Override public int compare(Comparable left, Comparable right) { 34 checkNotNull(left); // right null is caught later 35 if (left == right) { 39 return right.compareTo(left);
|
/external/guava/guava/src/com/google/common/primitives/ |
UnsignedBytes.java | 278 // @Override public int compare(byte[] left, byte[] right) { 279 // int minLength = Math.min(left.length, right.length); 288 // long lw = theUnsafe.getLong(left, BYTE_ARRAY_BASE_OFFSET + (long) i); 323 // int result = UnsignedBytes.compare(left[i], right[i]); 328 // return left.length - right.length; 337 @Override public int compare(byte[] left, byte[] right) { 338 int minLength = Math.min(left.length, right.length); 340 int result = UnsignedBytes.compare(left[i], right[i]); 345 return left.length - right.length;
|
/external/openfst/src/lib/ |
symbol-table-ops.cc | 21 SymbolTable *MergeSymbolTable(const SymbolTable &left, const SymbolTable &right, 24 // copied version of SymbolTable of left or right if either symbol table is 26 SymbolTable *merged = new SymbolTable("merge_" + left.Name() + "_" + 28 // copy everything from the left symbol table 30 SymbolTableIterator liter(left); 61 // Symbol doesn't exist from left 76 return left.Copy();
|
/external/skia/src/svg/ |
SkSVGRect.cpp | 30 SVG_ADD_ATTRIBUTE_ALIAS(left, x);
|
/external/zlib/src/contrib/infback9/ |
infback9.c | 179 if (left == 0) { \ 181 left = WSIZE; \ 183 if (out(out_desc, put, (unsigned)left)) { \ 228 unsigned long left; /* available output */ local 268 left = WSIZE; 332 if (copy > left) copy = left; 336 left -= copy; 494 left--; 553 if (offset > WSIZE - (wrap ? 0: left)) { [all...] |
/frameworks/av/libvideoeditor/vss/common/inc/ |
VideoEditorResampler.h | 28 void LVAudiosetVolume(M4OSA_Context resamplerContext, M4OSA_Int16 left, M4OSA_Int16 right) ;
|
/frameworks/av/media/libmedia/ |
Metadata.cpp | 146 size_t left = curr - mBegin; local 147 while (left > 0) { 150 if (size < kRecordHeaderSize || size > left) { 160 left -= size;
|
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
ms_stereo.c | 107 Word32 left, right; local 108 left = (mdctSpectrumLeft[j] >> 1); 110 mdctSpectrumLeft[j] = left + right; 111 mdctSpectrumRight[j] = left - right;
|
/frameworks/base/core/java/android/view/ |
GLES20Canvas.java | 193 int left, int top, int right, int bottom); 257 return nPrepareDirty(mRenderer, dirty.left, dirty.top, dirty.right, dirty.bottom, 265 private static native int nPrepareDirty(int renderer, int left, int top, int right, int bottom, 493 public boolean clipRect(float left, float top, float right, float bottom) { 494 return nClipRect(mRenderer, left, top, right, bottom, Region.Op.INTERSECT.nativeInt); 497 private static native boolean nClipRect(int renderer, float left, float top, 501 public boolean clipRect(float left, float top, float right, float bottom, Region.Op op) { 502 return nClipRect(mRenderer, left, top, right, bottom, op.nativeInt); 506 public boolean clipRect(int left, int top, int right, int bottom) { 507 return nClipRect(mRenderer, left, top, right, bottom, Region.Op.INTERSECT.nativeInt) 850 int left, top, right, bottom; local 877 float left, top, right, bottom; local [all...] |
/frameworks/base/core/tests/coretests/src/android/view/ |
GlobalFocusChange.java | 35 findViewById(R.id.left).getViewTreeObserver().addOnGlobalFocusChangeListener(this);
|
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/ |
ActionBarOverlayLayout.java | 69 private boolean applyInsets(View view, Rect insets, boolean left, boolean top, 73 if (left && lp.leftMargin != insets.left) { 75 lp.leftMargin = insets.left;
|
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/ |
AccessibilityNodeInfoHelper.java | 45 displayRect.left = 0;
|
/ndk/sources/android/support/src/musl-locale/ |
strfmon.c | 12 int fill, nogrp, negpar, nosym, left, intl; local 29 left = 0; 46 left = 1; 64 if (!left && fw>w) w = fw;
|