/external/chromium_org/v8/test/webkit/fast/js/ |
stack-overflow-arrity-catch.js | 24 description('Test that if an arrity check causes a stack overflow, the exception goes to the right catch');
|
/external/chromium_org/v8/test/webkit/ |
string-trim.js | 71 rightTrimString = wsString + testString; //trimmed from the right
|
/external/chromium_org/win8/metro_driver/ime/ |
text_service.cc | 403 POINT right_bottom = { bounds.right, bounds.bottom }; 423 POINT right_bottom = { bounds.right, bounds.bottom };
|
/external/freetype/src/cff/ |
cffdrivr.c | 68 #define PAIR_TAG( left, right ) ( ( (FT_ULong)left << 16 ) | \ 69 (FT_ULong)right ) 86 /* right_glyph :: The index of the right glyph in the kern pair. */ 97 /* Only horizontal layouts (left-to-right & right-to-left) are */
|
/external/icu/icu4c/source/common/ |
bytestriebuilder.cpp | 181 compareElementStrings(const void *context, const void *left, const void *right) { 184 const BytesTrieElement *rightElement=static_cast<const BytesTrieElement *>(right);
|
ucharstriebuilder.cpp | 134 compareElementStrings(const void *context, const void *left, const void *right) { 137 const UCharsTrieElement *rightElement=static_cast<const UCharsTrieElement *>(right);
|
/external/icu/icu4c/source/i18n/ |
collationweights.cpp | 71 // "If the value of the right operand is negative 194 compareRanges(const void * /*context*/, const void *left, const void *right) { 198 r=((const CollationWeights::WeightRange *)right)->start;
|
csdetect.cpp | 73 charsetMatchComparator(const void * /*context*/, const void *left, const void *right) 78 const CharsetMatch **csm_r = (const CharsetMatch **) right;
|
/external/libpng/ |
compile | 248 right script to run: please start by reading the file 'INSTALL'.
|
/external/libpng/contrib/gregbook/ |
rpng-win.c | 640 rect.right = (LONG)image_width; /* possibly off by one? */ 652 rect.right = (LONG)image_width; /* possibly off by one? */
|
/external/mesa3d/src/mesa/math/ |
m_matrix.c | 208 * \param m right multiplication matrix array. 229 * \param b right matrix. 252 * \param m right matrix array. 968 * \param right right clipping plane coordinate. 979 GLfloat left, GLfloat right, 986 x = (2.0F*nearval) / (right-left); 988 a = (right+left) / (right-left); 1008 * \param right right clipping plane coordinate [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderBox.cpp | 354 // FIXME: Need to work right with writing modes. 365 // FIXME: Need to work right with writing modes. 389 // FIXME: Need to work right with writing modes. 726 // Check for a box that can be scrolled in its own right. 3754 LayoutUnit right = contentWidth() + borderAndPaddingWidth(); local 3784 LayoutUnit right = left + renderer->contentWidth(); local 3984 LayoutUnit right; local 4326 LayoutUnit right = borderRight(); local [all...] |
/external/deqp/modules/glshared/ |
glsBuiltinPrecisionTests.cpp | 971 template<int Left, int Mid, int Right> 972 ExprP<Matrix<float, Left, Right> > operator* (const ExprP<Matrix<float, Left, Mid> >& left, 973 const ExprP<Matrix<float, Mid, Right> >& right); 976 const ExprP<Matrix<float, Rows, Cols> >& right); 979 const ExprP<Vector<float, Rows> >& right); 982 const ExprP<float>& right); 985 const ExprP<Matrix<float, Rows, Cols> >& right); 3340 const IArg1& right = iargs.b; local 3376 const IArg1& right = iargs.b; local 3408 const IArg1& right = iargs.b; local [all...] |
/external/chromium_org/v8/src/mips/ |
code-stubs-mips.cc | 415 // For equal we already have the right value in v0: Return zero (equal) 627 CompareICStub_CheckInputType(masm, rhs, a3, right(), &miss); 667 // and the right hand side if we have FPU. Otherwise a2, a3 represent 668 // left hand side and a0, a1 represent right hand side. 3592 Register right = a0; local 3633 Register right = a0; local 3678 Register right = a0; local [all...] |
/external/chromium_org/v8/src/mips64/ |
code-stubs-mips64.cc | 410 // For equal we already have the right value in v0: Return zero (equal) 621 CompareICStub_CheckInputType(masm, rhs, a3, right(), &miss); 662 // and the right hand side if we have FPU. Otherwise a2, a3 represent 663 // left hand side and a0, a1 represent right hand side. 3629 Register right = a0; local 3670 Register right = a0; local 3715 Register right = a0; local [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkAAClip.cpp | 266 // Count the number of zeros on the left and right edges of the passed in 337 // modify row in place, trimming off (zeros) from the left and right sides. 452 // number of zeros on the left and right of the clip. This information 907 bool SkAAClip::quickContains(int left, int top, int right, int bottom) const { 911 if (!fBounds.contains(left, top, right, bottom)) { 929 return count >= (right - left) && 0xFF == row[1]; 931 int rectWidth = right - left; 1030 // so we ensure our row goes all the way to our right 1063 // so we ensure our row goes all the way to our right 1332 int right = x + count; variable 1474 int right() const { return fRight; } function in class:RowIter [all...] |
/external/chromium_org/ui/views/controls/menu/ |
menu_controller.cc | 904 // When this menu is opened through a touch event, a simulated right-click [all...] |
/external/chromium_org/third_party/skia/experimental/Intersection/ |
EdgeWalker.cpp | 104 static int LineIntersect(const SkPoint a[2], SkScalar left, SkScalar right, 107 return horizontalLineIntersect(aLine, left, right, y, aRange); 110 static int QuadIntersect(const SkPoint a[3], SkScalar left, SkScalar right, 113 return horizontalIntersect(aQuad, left, right, y, aRange); 116 static int CubicIntersect(const SkPoint a[4], SkScalar left, SkScalar right, 120 return horizontalIntersect(aCubic, left, right, y, aRange); 411 // the curve is deferred and not added right away because the 654 const OutEdge& right = fEdges[rightOutIndex]; 660 right.fPts[rightIndex < 0 ? 0 : right.fVerb] [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
TextViewTest.java | 288 assertEquals(Gravity.TOP | Gravity.RIGHT, mTextView.getGravity()); 297 assertEquals(Gravity.CENTER_VERTICAL | Gravity.RIGHT, mTextView.getGravity()); 309 mTextView.setGravity(Gravity.RIGHT); 310 assertEquals(Gravity.TOP | Gravity.RIGHT, mTextView.getGravity()); 459 // shadow is placed to the right and above the text 2269 Drawable right = getDrawable(R.drawable.red); local [all...] |
/art/runtime/verifier/ |
reg_type_cache.h | 67 RegType& FromUnresolvedMerge(RegType& left, RegType& right)
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/ |
DetermineFovActivity.java | 230 float dstWidth = drawRect.right - drawRect.left + 1;
|
/development/ndk/platforms/android-4/include/GLES/ |
gl.h | 601 GL_API void GL_APIENTRY glFrustumf (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); 619 GL_API void GL_APIENTRY glOrthof (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); 671 GL_API void GL_APIENTRY glFrustumx (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); 707 GL_API void GL_APIENTRY glOrthox (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); [all...] |
/development/ndk/platforms/android-4/samples/san-angeles/jni/ |
app-win32.c | 192 sWindowWidth = rc.right;
|
importgl.h | 90 FNDEF(void, glFrustumx, (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar));
|
/development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/ |
ZoomActivity.java | 145 startBounds.right += deltaWidth;
|