/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/include/gpu/ |
GrTextContext.h | 25 void drawPackedGlyph(GrGlyph::PackedID, GrFixed left, GrFixed top,
|
/external/skia/src/core/ |
SkBlitter.cpp | 270 void SkRectClipBlitter::blitH(int left, int y, int width) { 277 int right = left + width; 279 if (left < fClipRect.fLeft) { 280 left = fClipRect.fLeft; 286 width = right - left; 288 fBlitter->blitH(left, y, width); 292 void SkRectClipBlitter::blitAntiH(int left, int y, const SkAlpha aa[], 294 if (!y_in_rect(y, fClipRect) || left >= fClipRect.fRight) { 298 int x0 = left; 299 int x1 = left + compute_anti_width(runs) [all...] |
/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;
|
/frameworks/uiautomator/src/com/android/uiautomator/core/ |
AccessibilityNodeInfoHelper.java | 45 displayRect.left = 0;
|
/frameworks/wilhelm/tests/sandbox/ |
intbufq.c | 52 short left; member in struct:__anon32607 153 sine[i].left = sin((float) (i / (sr / hz)) * pi2 ) * 32000.0; 154 sine[i].right = sine[i].left; 157 square[i].left = (i % (unsigned) (sr / hz)) < 50 ? 32767 : -32768; 158 square[i].right = square[i].left; 161 sawtooth[i].left = ((((int) (i % (unsigned) (sr / hz))) - 50) / 100.0) * 60000.0 - 30000.0; 162 sawtooth[i].right = sawtooth[i].left; 165 half[i].left = sine[i].left;
|
/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;
|
/packages/apps/Camera2/src/com/android/camera/crop/ |
CropMath.java | 42 r.left, r.top, 45 r.left, r.bottom 61 return !(x > r.right || x < r.left || y > r.bottom || y < r.top); 77 r.left = (x < r.left) ? x : r.left; 98 array[x] = GeometryMathUtils.clamp(array[x], imageBound.left, imageBound.right); 201 r.left = r.centerX() - finalW / 2; 202 r.right = r.left + finalW;
|
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
CallTypeIconsView.java | 104 int left = 0; local 107 final int right = left + drawable.getIntrinsicWidth(); 108 drawable.setBounds(left, 0, right, drawable.getIntrinsicHeight()); 110 left = right + mResources.iconMargin;
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/ |
CropMath.java | 44 r.left, r.top, 47 r.left, r.bottom 63 return !(x > r.right || x < r.left || y > r.bottom || y < r.top); 79 r.left = (x < r.left) ? x : r.left; 100 array[x] = GeometryMathUtils.clamp(array[x], imageBound.left, imageBound.right); 203 r.left = r.centerX() - finalW / 2; 204 r.right = r.left + finalW;
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
GLView.java | 192 return mBounds.right - mBounds.left; 271 int xoffset = component.mBounds.left - mScrollX; 298 int left = rect.left; local 301 event.offsetLocation(-left, -top); 303 event.offsetLocation(left, top); 306 event.offsetLocation(left, top); 348 public void layout(int left, int top, int right, int bottom) { 349 boolean sizeChanged = setBounds(left, top, right, bottom); 355 onLayout(sizeChanged, left, top, right, bottom) [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
WnnClause.java | 67 new WnnPOS(stem.partOfSpeech.left, fzk.partOfSpeech.right),
|