HomeSort by relevance Sort by last modified time
    Searched refs:y2 (Results 1 - 25 of 718) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/odr/
b.h 4 } y2; variable in typeref:struct:Y
8 return y2.m + e2 + y2.f;
  /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/valgrind/main/memcheck/tests/
badrw.c 11 short y2; local
22 y2 = *x2;
23 *x2 = y2;
  /external/chromium_org/third_party/skia/src/animator/
SkDrawLine.cpp 21 SK_MEMBER(y2, Float)
28 SkLine::SkLine() : x1(0), x2(0), y1(0), y2(0) {
33 maker.fCanvas->drawLine(x1, y1, x2, y2, *maker.fPaint);
SkDrawLine.h 24 SkScalar y2; member in class:SkLine
  /external/skia/src/animator/
SkDrawLine.cpp 21 SK_MEMBER(y2, Float)
28 SkLine::SkLine() : x1(0), x2(0), y1(0), y2(0) {
33 maker.fCanvas->drawLine(x1, y1, x2, y2, *maker.fPaint);
SkDrawLine.h 24 SkScalar y2; member in class:SkLine
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegCurvetoCubicSmoothAbs.h 31 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
33 return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(element, role, x, y, x2, y2));
37 SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
38 : SVGPathSegCurvetoCubicSmooth(element, role, x, y, x2, y2)
SVGPathSegCurvetoCubicSmoothRel.h 31 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
33 return adoptRef(new SVGPathSegCurvetoCubicSmoothRel(element, role, x, y, x2, y2));
37 SVGPathSegCurvetoCubicSmoothRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
38 : SVGPathSegCurvetoCubicSmooth(element, role, x, y, x2, y2)
SVGPathSegCurvetoCubicSmoothAbs.idl 33 attribute float y2;
SVGPathSegCurvetoCubicSmoothRel.idl 33 attribute float y2;
SVGPathSegCurvetoCubic.h 30 SVGPathSegCurvetoCubic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
37 , m_y2(y2)
76 float y2() const { return m_y2; } function in class:WebCore::SVGPathSegCurvetoCubic
77 void setY2(float y2)
79 m_y2 = y2;
SVGPathSegCurvetoCubicSmooth.h 30 SVGPathSegCurvetoCubicSmooth(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
35 , m_y2(y2)
60 float y2() const { return m_y2; } function in class:WebCore::SVGPathSegCurvetoCubicSmooth
61 void setY2(float y2)
63 m_y2 = y2;
SVGPathSegCurvetoCubicAbs.h 31 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
33 return adoptRef(new SVGPathSegCurvetoCubicAbs(element, role, x, y, x1, y1, x2, y2));
37 SVGPathSegCurvetoCubicAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
38 : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2)
SVGPathSegCurvetoCubicRel.h 31 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
33 return adoptRef(new SVGPathSegCurvetoCubicRel(element, role, x, y, x1, y1, x2, y2));
37 SVGPathSegCurvetoCubicRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
38 : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2)
SVGLineElement.idl 30 readonly attribute SVGAnimatedLength y2;
SVGLinearGradientElement.idl 30 readonly attribute SVGAnimatedLength y2;
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_code.h 104 Word16 y2[], /* i : filtered innovation vector */
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree_perf.tcl 19 set y2 [expr {$y1+rand()*50}]
20 lappend data $x1 $x2 $y1 $y2
25 set sql1 {CREATE TABLE btree(ii INTEGER PRIMARY KEY, x1, x2, y1, y2)}
26 set sql2 {CREATE VIRTUAL TABLE rtree USING rtree(ii, x1, x2, y1, y2)}
39 foreach {x1 x2 y1 y2} $data {
40 db eval {INSERT INTO btree VALUES($ii, $x1, $x2, $y1, $y2)}
50 foreach {x1 x2 y1 y2} $data {
52 db eval {INSERT INTO rtree VALUES($ii, $x1, $x2, $y1, $y2)}
61 foreach {x1 x2 y1 y2} [lrange $data 0 [expr $NQUERY*4-1]] {
62 db eval {SELECT * FROM btree WHERE x1<$x1 AND x2>$x2 AND y1<$y1 AND y2>$y2
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebFilterAnimationCurve.h 49 virtual void add(const WebFilterKeyframe&, double x1, double y1, double x2, double y2) = 0;
WebFloatAnimationCurve.h 45 virtual void add(const WebFloatKeyframe&, double x1, double y1, double x2, double y2) = 0;
WebTransformAnimationCurve.h 45 virtual void add(const WebTransformKeyframe&, double x1, double y1, double x2, double y2) = 0;
  /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++11}} variable
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
geometry_utils.h 33 static AK_FORCE_INLINE float getAngle(const int x1, const int y1, const int x2, const int y2) {
35 const int dy = y1 - y2;
51 const int y2) {
52 return static_cast<int>(hypotf(static_cast<float>(x1 - x2), static_cast<float>(y1 - y2)));

Completed in 710 milliseconds

1 2 3 4 5 6 7 8 91011>>