/external/clang/test/CXX/temp/temp.param/ |
p15.cpp | 12 Y<1 >> 2> *y2; // expected-warning{{use of right-shift operator ('>>') in template argument will require parentheses in C++0x}} variable
|
p15-cxx0x.cpp | 8 Y<1 >> 2> *y2; // FIXME: expected-error{{expected unqualified-id}} variable
|
/external/clang/test/PCH/Inputs/ |
chain-external-defs2.h | 5 int y2; variable
|
/external/clang/test/PCH/ |
chain-external-defs.c | 27 // YB: @y2 = global i32 18 28 // YB-NOT: @y2 = global i32 18 29 int y2 = 18; variable
|
/external/skia/src/animator/ |
SkDrawLine.h | 32 SkScalar y2; member in class:SkLine
|
/external/valgrind/main/exp-ptrcheck/tests/ |
arith.c | 10 long* y2 = y + 3; local 13 long w = y2 - y; 19 w = (long)y2 + (long)y; // bad (same segment) 23 w = (long)y2 / (long)4; // bad, but indistinguishable from 26 w = (long)y2 % (long)4; // ok 27 w = (long)y2 % (long)y; // bad -- modulor(?) is a pointer 30 w = (Ulong)y2 % (Ulong)4; // ok 31 w = (Ulong)y2 % (Ulong)y; // bad -- modulor(?) is a pointer 34 w = (long)y * (long)y2; // bad 41 w = (long)y ^ (long)y2; // o [all...] |
/external/clang/test/CXX/stmt.stmt/stmt.dcl/ |
p3-0x.cpp | 39 Y y2; // expected-note{{jump bypasses variable with a non-trivial destructor}} local
|
/external/valgrind/main/memcheck/tests/ |
badrw.c | 11 short y2; local 22 y2 = *x2; 23 *x2 = y2;
|
/bionic/libm/src/ |
e_hypot.c | 34 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y)) 36 * y1= y with lower 32 bits chopped, y2 = y-y1. 56 double a=x,b=y,t1,t2,y1,y2,w; local 112 y2 = b - y1; 116 w = sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
|
e_hypotf.c | 26 float a=x,b=y,t1,t2,y1,y2,w; local 74 y2 = b - y1; 77 w = __ieee754_sqrtf(t1*y1-(w*(-w)-(t1*y2+t2*b)));
|
/external/clang/test/SemaCXX/ |
warn-literal-conversion.cpp | 10 int y2 = (((1.2222F))); // expected-warning {{implicit conversion turns literal floating-point number into integer}} local
|
default-constructor-initializers.cpp | 29 struct Y2 : Y1 { 30 Y2(int); 31 Y2(); 34 struct Y3 : public Y2 { 39 Y2 y2; member in struct:Y4
|
/external/fdlibm/ |
e_hypot.c | 30 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y)) 32 * y1= y with lower 32 bits chopped, y2 = y-y1. 55 double a=x,b=y,t1,t2,y1,y2,w; local 104 y2 = b - y1; 108 w = ieee_sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
|
/external/webkit/Source/WebCore/svg/ |
SVGPathSegCurvetoCubicSmooth.h | 31 SVGPathSegCurvetoCubicSmooth(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) 36 , m_y2(y2) 61 float y2() const { return m_y2; } function in class:WebCore::SVGPathSegCurvetoCubicSmooth 62 void setY2(float y2) 64 m_y2 = y2; 77 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) 79 return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(element, role, x, y, x2, y2)); 83 SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) 84 : SVGPathSegCurvetoCubicSmooth(element, role, x, y, x2, y2) 94 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) [all...] |
LinearGradientAttributes.h | 43 SVGLength y2() const { return m_y2; } function in struct:WebCore::LinearGradientAttributes
|
SVGPathSegCurvetoCubic.h | 31 SVGPathSegCurvetoCubic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) 38 , m_y2(y2) 77 float y2() const { return m_y2; } function in class:WebCore::SVGPathSegCurvetoCubic 78 void setY2(float y2) 80 m_y2 = y2; 95 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) 97 return adoptRef(new SVGPathSegCurvetoCubicAbs(element, role, x, y, x1, y1, x2, y2)); 101 SVGPathSegCurvetoCubicAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) 102 : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2) 112 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) [all...] |
SVGPathStringSource.cpp | 165 float y2; local 171 || !parseNumber(m_current, m_end, y2) 176 point2 = FloatPoint(x2, y2); 200 float y2; local 204 || !parseNumber(m_current, m_end, y2) 208 point2 = FloatPoint(x2, y2);
|
/frameworks/base/services/audioflinger/ |
AudioResamplerCubic.h | 43 int32_t a, b, c, y0, y1, y2, y3; member in struct:android::AudioResamplerCubic::__anon15444 55 p->y1 = p->y2; 56 p->y2 = p->y3; 58 p->a = (3 * (p->y1 - p->y2) - p->y0 + p->y3) >> 1; 59 p->b = (p->y2 << 1) + p->y0 - (((5 * p->y1 + p->y3)) >> 1); 60 p->c = (p->y2 - p->y0) >> 1;
|
/external/clang/test/CXX/over/over.over/ |
p1.cpp | 86 template<int (&)(int)> struct Y2 { }; 93 Y2<f0> y2; variable
|
/external/qemu/android/skin/ |
rect.h | 61 int x2, y2; member in struct:__anon9280 64 extern void skin_box_init( SkinBox* box, int x1, int y1, int x2, int y2 );
|
/external/webkit/Source/WebCore/css/ |
CSSTimingFunctionValue.h | 69 static PassRefPtr<CSSCubicBezierTimingFunctionValue> create(double x1, double y1, double x2, double y2) 71 return adoptRef(new CSSCubicBezierTimingFunctionValue(x1, y1, x2, y2)); 77 double y2() const { return m_y2; } function in class:WebCore::CSSCubicBezierTimingFunctionValue 80 CSSCubicBezierTimingFunctionValue(double x1, double y1, double x2, double y2) 84 , m_y2(y2)
|
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
conceal.cpp | 142 uint8 *y1, *y2, *u1, *u2, *v1, *v2; local 157 y2 = prevFrame + lumstart; 162 oscl_memcpy(y1, y2, MB_SIZE); 164 y2 += width_Y; 165 oscl_memcpy(y1, y2, MB_SIZE); 167 y2 += width_Y; 168 oscl_memcpy(y1, y2, MB_SIZE); 170 y2 += width_Y; 171 oscl_memcpy(y1, y2, MB_SIZE); 173 y2 += width_Y [all...] |
get_pred_adv_b_add.cpp | 867 uint32 x1, x2, x1m, x2m, y1, y2, y1m, y2m; /* new way */ local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/ |
ConstraintPainter.java | 328 int x1, y1, x2, y2; local 345 y2 = targetBounds.y + 1 * targetBounds.h / 4; 347 y2 = targetBounds.y + 3 * targetBounds.h / 4; 351 graphics.drawArrow(x1, y1, x2, y2, ARROW_SIZE); 590 int ty = targetBounds.y2(); 629 targetX + PARENT_RECT_SIZE / 2, targetBounds.y2()); 633 int minBottom = Math.min(sourceBounds.y2(), targetBounds.y2()); 638 if (center > sourceBounds.y && center < sourceBounds.y2()) { 644 graphics.drawLine(sharedX, targetBounds.y, sharedX, targetBounds.y2()); [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
nine_box.cc | 120 int y2 = images_[6] ? dst_height - gdk_pixbuf_get_height(images_[6]) : y1; local 122 if (x2 < x1 || y2 < y1) 149 TileImage(cr, images_[3], 0, y1, x1, y2 - y1, opacity); 151 TileImage(cr, images_[4], x1, y1, x2 - x1, y2 - y1, opacity); 153 TileImage(cr, images_[5], x2, y1, dst_width - x2, y2 - y1, opacity); 157 DrawPixbuf(cr, images_[6], 0, y2, opacity); 159 TileImage(cr, images_[7], x1, y2, x2 - x1, dst_height - y2, opacity); 161 DrawPixbuf(cr, images_[8], x2, y2, opacity);
|