HomeSort by relevance Sort by last modified time
    Searched refs:X1 (Results 101 - 125 of 172) sorted by null

1 2 3 45 6 7

  /external/webkit/Source/WebCore/svg/
SVGLineElement.h 59 DECLARE_ANIMATED_LENGTH(X1, x1)
SVGLinearGradientElement.h 53 DECLARE_ANIMATED_LENGTH(X1, x1)
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/
p8.cpp 105 struct X1 { };
113 struct X1 { };
  /external/clang/test/SemaCXX/
default-assignment-operator.cpp 113 struct X1 : public virtual X0 { };
115 struct X2 : X0, X1 { };
overload-member-call.cpp 58 struct X1 {
63 struct X2 : X1 { };
cxx0x-initializer-constructor.cpp 40 struct X1 { X1(int); };
65 E(X1, int) { static_assert(N == 1, ""); }
94 { X1 x{0}; }
95 { X1 x = {0}; }
new-delete.cpp 113 struct X1 {
123 void test_delete_conv(X0 x0, X1 x1, X2 x2) {
125 delete x1;
309 struct X1 {
313 int X1::value;
321 template int *f<X1>(); // expected-note{{in instantiation of}}
abstract.cpp 195 struct X1 {
197 void g(X1 parm7); // expected-error {{parameter type 'test2::X1' is an abstract class}}
198 void g(X1 parm8[2]); // expected-error {{array of abstract class type 'test2::X1'}}
member-expr.cpp 107 template<typename T> struct X1;
115 y->N::X1<int>; // expected-error{{'rdar8231724::N::X1' is not a member of class 'rdar8231724::Y'}}
  /external/clang/test/CodeGen/
override-layout.c 22 // CHECK: Type: struct X1
23 struct X1 {
120 struct X1 x1; local
121 x1.x[5] = sizeof(struct X1);
  /external/clang/test/SemaTemplate/
instantiate-function-params.cpp 58 template < typename , typename = int, typename = int > struct X1;
69 struct X3_base : X3< X1<int, P> >
71 protected: typedef X1< P> type;
explicit-instantiation.cpp 41 struct X1 { };
42 typedef int X1::*MemPtr;
friend-template.cpp 42 template<typename T> struct X1 {
49 X1<int> x1i;
151 template<typename > struct X1
160 template <typename = int, typename = X1<int> > struct X3
183 template<typename > struct X1
192 template <typename = X1<int> > struct X3
default-arguments.cpp 4 X<int, 1> *x1; variable
46 template<typename T> struct X1 { };
50 template<typename U = typename X1<T>::type> // expected-error{{no type named}}
53 template<T Value = X1<T>::value> // expected-error{{no member named 'value'}}
member-access-expr.cpp 38 struct X1 : Base, OtherBase {
42 void test_f0_through_typedef2(X0 x0, X1 x1) {
44 call_f0_through_typedef2<OtherBase>(x1); // expected-note{{instantiation}}
45 call_f0_through_typedef2<Base>(x1); // expected-note{{instantiation}}
member-function-template.cpp 66 struct X1 {
72 void test_incomplete_access(X1<int> *x1, X2<int> *x2) {
73 float &fr = x1->get<float>();
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
p1.cpp 71 struct X1 {
78 void X1<T>::template B<U>::f() { }
  /external/clang/test/CodeGenCXX/
value-init.cpp 146 struct X1 : X0 {
147 int x1; member in struct:zeroinit::X1
156 X1().f();
  /external/opencv/cv/src/
cvoptflowbm.cpp 140 int X1 = 0;
353 X1 = 0;
387 icvCopyBM_8u_C1R( imgA + X1, imgStep, blockA,
389 icvCopyBM_8u_C1R( imgB + (Y1 + offY)*imgStep + (X1 + offX),
400 icvCopyBM_8u_C1R( imgA + X1, imgStep, blockA, blockSize.width, CurSize );
401 icvCopyBM_8u_C1R( imgB + (Y1 + offY) * imgStep + (X1 + offX), imgStep,
434 int X2 = X1 + offX + ss[k].x;
467 icvCopyBM_8u_C1R( imgB + Y1 * imgStep + X1, imgStep,
515 X1 += blockSize.width;
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
multi-level-substitution.cpp 55 struct X1 {
67 int check2[X1<short, int, long>::Inner<tuple<pair<short, unsigned short>,
74 int check3[X1<short, int>::Inner<tuple<pair<short, unsigned short>,
227 struct X1 {
233 X1<float> x1; local
234 x1.f(17, 3.14159);
  /external/clang/test/CXX/expr/expr.prim/expr.prim.general/
p3-0x.cpp 65 struct X1 {
75 auto X1::h() -> decltype(m) { return 0; } // expected-error{{'this' cannot be implicitly used in a static member function declaration}}
  /external/dropbear/libtommath/
bn_mp_karatsuba_mul.c 49 mp_int x0, x1, y0, y1, t1, x0y0, x1y1; local
64 if (mp_init_size (&x1, a->used - B) != MP_OKAY)
67 goto X1;
81 x1.used = a->used - B;
101 tmpx = x1.dp;
113 * upper words x1/y1 must have a known number of digits
122 if (mp_mul (&x1, &y1, &x1y1) != MP_OKAY)
123 goto X1Y1; /* x1y1 = x1*y1 */
125 /* now calc x1+x0 and y1+y0 */
126 if (s_mp_add (&x1, &x0, &t1) != MP_OKAY
    [all...]
bn_mp_karatsuba_sqr.c 27 mp_int x0, x1, t1, t2, x0x0, x1x1; local
41 if (mp_init_size (&x1, a->used - B) != MP_OKAY)
46 goto X1;
66 dst = x1.dp;
73 x1.used = a->used - B;
77 /* now calc the products x0*x0 and x1*x1 */
80 if (mp_sqr (&x1, &x1x1) != MP_OKAY)
81 goto X1X1; /* x1x1 = x1*x1 */
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.cpp 321 .addReg(PPC::X1);
327 .addReg(PPC::X1);
396 .addReg(PPC::X1)
403 .addReg(PPC::X1, RegState::Kill)
404 .addReg(PPC::X1, RegState::Define)
407 BuildMI(MBB, MBBI, dl, TII.get(PPC::STDU), PPC::X1)
408 .addReg(PPC::X1)
410 .addReg(PPC::X1);
418 .addReg(PPC::X1, RegState::Kill)
419 .addReg(PPC::X1, RegState::Define
    [all...]
  /external/clang/test/CXX/temp/temp.param/
p9-0x.cpp 9 struct X1;

Completed in 528 milliseconds

1 2 3 45 6 7