/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/ |
D | p2-0x.cpp | 4 typedef int T; typedef 5 using T = int; typedef 6 using T = int; typedef 7 typedef T T; typedef 8 using T = T; typedef 9 typedef int T; typedef 35 using T = int[42]; // ok typedef 38 …using T = int[n]; // expected-error {{variable length array declaration not allowed at file scope}} typedef 41 using U = int[m]; // expected-note {{previous definition}} typedef 42 using U = int[42]; // ok typedef [all …]
|
/external/clang/test/CodeGenCXX/ |
D | mangle-subst.cpp | 6 void f(X, X) { } in f() function 9 void f(X&, X&) { } in f() function 12 void f(const X&, const X&) { } in f() function 14 typedef void T(); typedef 18 void f(T*, T (S::*)) {} in f() argument 26 void f(A::A a, A::B b) { } in f() function 33 void f(C::D, C&, C*, C&) { } in f() function 37 typedef int U; typedef 40 template <typename T> void f1(typename V<T>::U, V<T>) { } in f1() 45 template <typename T> void f2(V<T>, typename V<T>::U) { } in f2() [all …]
|
D | mangle-template.cpp | 4 template <int& D> class T { }; class 63 template <void(A::*)(float)> class T { }; class 102 void f(int_c<meta<T>::type::value>) { } in f() function 141 typename X<T>::template definition<U> f(T, U) { } in f() argument 152 template <typename T> void f(A<T,cmp> &) {} in f() function
|
D | new.cpp | 34 struct T { struct 41 T *t = new T; in t4() argument 63 struct U { struct 159 void f() { in f() function 225 void f() { in f() function 240 NewTy* f() { return new NewTy[2](); } in f() function 261 void* f() { return new B[2](); } in f() function
|
D | mangle.cpp | 19 void f(s) { } in f() function 23 void f(e) { } in f() function 27 void f(u) { } in f() function 31 void f(y) { } in f() function 34 void f() { } in f() function 37 namespace N { void f() { } } in f() function 40 namespace N { namespace N { void f() { } } } in f() function 49 namespace N { int f(int, int) { static int b; return b; } } in f() function 54 void f(__int128_t, __uint128_t) { } in f() function 59 void f(S1<int>) {} in f() function [all …]
|
/external/clang/test/SemaCXX/ |
D | trailing-return-0x.cpp | 15 auto f() -> int in f() function 28 using T = auto (int) -> auto (*)(char) -> void; // expected-note {{previous}} typedef 29 using T = void; // expected-error {{type alias redefinition with different types ('void' vs 'auto (… typedef 31 using U = auto (int) -> auto (*)(char) -> void; typedef 32 using U = void (*(int))(char); // ok typedef 47 auto f(T x) -> T { return x; } in f() function
|
D | constexpr-printing.cpp | 15 void f() { in f() function 22 struct T { struct 23 constexpr T() : arr() {} in T() function 26 struct U : T { argument 27 constexpr U(const int *p) : T(), another(), p(p) {} in U() function 28 constexpr U(const U &u) : T(), another(), p(u.p) {} in U() function 32 constexpr U u1(&u1.arr[2]); argument 35 int *e, int &f, vector_int g, U h) { in test_printing()
|
D | alias-template.cpp | 4 template<typename U> using T = int; typedef 5 template<typename U> using T = int; typedef 6 template<typename U> using T = T<U>; typedef 32 template<typename Z> using T = int[42]; // ok typedef 35 …template<typename Z> using T = int[n]; // expected-error {{variable length array declaration not a… typedef 38 template<typename Z> using U = int[m]; // expected-note {{previous definition}} typedef 39 template<typename Z> using U = int[42]; // ok typedef 40 …template<typename Z> using U = int; // expected-error {{type alias template redefinition with diff… typedef 45 template<typename Z> using T = int; typedef 57 …template<typename Z> using U = T*; // expected-error {{declaration type contains unexpanded parame… typedef [all …]
|
D | constant-expression-cxx11.cpp | 29 struct U { int n; }; argument 93 void f(int n) { in f() function 167 constexpr int f() { return 1; } in f() function 177 static constexpr int f(int n) { return n * k + 2; } in f() function 222 constexpr int f(int n, const int *a, const int *b, const int *c) { in f() function 297 struct U {}; struct 331 constexpr int f(const int &r) { return r; } in f() function 391 struct T { struct 392 char c[6]; 393 constexpr T() : c{"foo"} {} in T() function [all …]
|
D | cxx0x-initializer-aggregates.cpp | 10 struct T { struct 11 int i1; 12 int i2; 14 struct U { struct 15 int i1; 83 void f() { in f() function
|
D | new-delete.cpp | 12 struct U struct 189 void f(X8 *x8) { in f() function 199 void f(X9 *x9) { in f() function 211 void f() { in f() function 223 static void* f(void* g) in f() function 233 void f(X14 *x14a, X14 *x14b) { in f() function 243 void f(X15* x) { in f() function 257 void f() { in f() function 260 typedef int T[10]; in f() typedef 316 int *f() { in f() function [all …]
|
/external/clang/test/Sema/ |
D | nested-redef.c | 7 void f(void) { in f() function 13 struct T { int x; } t; struct 14 struct U { int x; } u; argument
|
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/ |
D | p1.cpp | 25 void X0<T, U>::f0(const T&, const U&) { // expected-note{{previous definition}} in f0() 50 void X0<T, U>::f0(const T&, const U&) { // expected-error{{redefinition}} in f0() 78 void X1<T>::template B<U>::f() { } in f() function in X1::B
|
/external/clang/test/PCH/ |
D | cxx-for-range.h | 8 struct T { }; struct 12 struct U { }; struct 18 void f() { in f() function
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/ |
D | p3.cpp | 29 struct T : SS, NonLiteral { // expected-note {{base class 'NonLiteral' of non-literal type}} struct 41 constexpr ~T(); // expected-error {{destructor cannot be marked constexpr}} argument 57 …constexpr T &operator=(const T&) = default; // expected-error {{an explicitly-defaulted copy assig… argument 59 struct U { struct 79 typedef struct S T; in AllowedStmts() typedef 131 constexpr int f(int k) { in f() function 136 constexpr int f() { // expected-error {{constexpr function never produces a constant expression}} in f() function
|
D | p4.cpp | 36 struct T : virtual S { // expected-note {{here}} struct 37 …constexpr T() {} // expected-error {{constexpr constructor not allowed in struct with virtual base… in T() function 49 struct U { struct 50 constexpr U() in U() argument 71 typedef struct S T; in V() typedef 75 struct U; in V() argument 123 void *f; member 169 Int<T> f; // desired-note {{not initialized}} member
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/ |
D | p3-0x.cpp | 15 void f() { in f() function 21 new struct T {}; // expected-error {{'T' can not be defined in a type specifier}} in f() struct 24 try {} catch (struct U {}) {} // expected-error {{'U' can not be defined in a type specifier}} in f() local
|
/external/clang/test/Parser/ |
D | cxx0x-ambig.cpp | 8 struct T { int n; }; struct 25 struct T final : S {}; // expected-error {{base 'S' is marked 'final'}} struct 34 struct T { struct 35 constexpr T() {} in T() function 36 constexpr T(int) {} in T() function 37 constexpr T(T, T, T, T) {} in T() argument 38 constexpr T operator=(T) { return *this; } in operator =() 39 constexpr operator int() { return 4; } in operator int() 67 struct U { struct 68 constexpr operator T() { return T(); } // expected-note 2{{candidate}} in operator T() [all …]
|
/external/doclava/res/assets/templates/assets/ |
D | jquery-resizable.min.js | 12 …[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nod… argument 19 …unction(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||type… argument 40 …function(c){c.widget("ui.resizable",c.extend({},c.ui.mouse,{_init:function(){var e=this,j=this.opt… argument
|
/external/clang/test/CXX/expr/expr.const/ |
D | p2-0x.cpp | 24 static int f() { return 1; } // expected-note {{here}} in f() function 77 struct T { struct 78 constexpr T(const int &r) : in T() argument 81 const int &r; 132 void f(int n) { in f() function 179 constexpr const int &f(const int *q) { in f() function 183 struct T { struct 184 …t an integral constant expression}} expected-note {{read of dereferenced one-past-the-end pointer}} 208 constexpr int f() { return 0; } in f() function 323 constexpr volatile S f() { return S(); } in f() function [all …]
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | example-tuple.cpp | 106 float f; in test_tuple() local 136 float f; in test_creation_functions() local 211 float f; in test_element_access() local 222 bool operator==(const tuple<T, TTail...>& t, const tuple<U, UTail...>& u) { in operator ==() 234 bool operator<(const tuple<T, TTail...>& t, const tuple<U, UTail...>& u) { in operator <()
|
D | example-bind.cpp | 170 bool operator==(const tuple<T, TTail...>& t, const tuple<U, UTail...>& u) { in operator ==() 182 bool operator<(const tuple<T, TTail...>& t, const tuple<U, UTail...>& u) { in operator <() 234 explicit bound_functor(const F& f, const BoundArgs&... bound_args) in bound_functor() 237 private: F f; member in bound_functor 242 inline bound_functor<F, BoundArgs...> bind(const F& f, const BoundArgs&... bound_args) { in bind() 288 unwrap_and_forward(F& f, int_tuple<Indexes...>, const tuple<Args&...>& args) { in unwrap_and_forward() 320 typename F::result_type apply_functor(F& f, tuple<BoundArgs...>& bound_args, in apply_functor()
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
D | EnumSetTest.java | 33 a, b, c, d, e, f { enumConstant 43 …a, b,c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, A, B, C, D, E, F, G, … enumConstant 51 …f{}, g{}, h{}, i{}, j{}, k{}, l{}, m{}, n{}, o{}, p{}, q{}, r{}, s{}, t{}, u{}, v{}, w{}, x{}, y{}… enumConstant 55 …, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, A, B, C, D, E, F, G, … enumConstant
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | CheckSecuritySyntaxOnly.cpp | 29 const llvm::Triple &T = Ctx.getTargetInfo().getTriple(); in isArc4RandomAvailable() local 69 const ChecksFilter &f) in WalkAST() 205 if (const UnaryOperator *U = dyn_cast<UnaryOperator>(expr)) in getIncrementedVar() local
|
/external/opencv/cv/src/ |
D | cvcalibration.cpp | 610 double R[9], U[9], V[9], W[3], rx, ry, rz; in cvRodrigues2() local 1138 double MM[9], U[9], V[9], W[3]; in cvFindExtrinsicCameraParams2() local 1351 double H[9], f[2]; in cvInitIntrinsicParams2D() local 1988 CvMat om[2], R[2], T[2], imgpt_i[2]; in cvStereoCalibrate() local 2060 CvMat om[2], T[2], imgpt_i[2]; in cvStereoCalibrate() local 2246 double e[9], f[9]; in cvStereoCalibrate() local 2417 double u[9], v[9], w[9], f[9], h1[9], h2[9], h0[9], e2[3]; in cvStereoRectifyUncalibrated() local 2419 CvMat U = cvMat( 3, 3, CV_64F, u ); in cvStereoRectifyUncalibrated() local 2507 CvMat T = cvMat(3, 3, CV_64F, t); in cvStereoRectifyUncalibrated() local
|