Searched defs:xi (Results 1 - 25 of 50) sorted by relevance

12

/external/clang/test/CodeGenCXX/
H A Ddebug-info-fn-template.cpp9 T fx(XF<T> xi) { argument
10 return xi.member;
H A Dvisibility-hidden-extern-templates.cpp16 void test_X(X<int> xi, X<char> xc) { argument
18 xi.f();
20 xi.g();
H A Dimplicit-instantiation-1.cpp13 void foo(X<int> &xi, X<float> *xfp, int i, float f) { argument
15 xi.f(i);
18 xi.g(f);
/external/clang/test/SemaTemplate/
H A Denum-forward.cpp8 X<int> xi; variable
H A Dextern-templates.cpp27 void test_intptr(X0<int*> xi, X0<int*>::Inner xii) { argument
28 xi.f(0);
H A Dinjected-class-name.cpp14 X<float>::X<int> xi = x; // expected-error{{qualified reference to 'X' is a constructor name rather than a template name wherever a constructor can be declared}} variable
H A Dtemplate-id-expr.cpp27 void test_X0_int(X0<int> xi, float f) { argument
28 xi.f2(f);
H A Dcopy-ctor-assign.cpp32 void test3(X<int> &x, X<int> xi, X<long> xl, X<int Y::*> xmptr) { argument
33 x = xi;
H A Dvirtual-member-functions.cpp83 void test_X(X<int> xi, X<float> xf) { argument
84 xi.f();
H A Dconstructor-template.cpp44 void test_X1(X1<int> xi) { argument
45 Outer<int> oi(xi);
46 Outer<float> of(xi);
H A Dinstantiate-field.cpp14 void test1(const X<int> *xi) { argument
15 int i1 = xi->x;
16 const int &i2 = xi->y;
17 int* ip1 = xi->z;
18 int i3 = xi->bitfield;
19 xi->x2 = 17;
H A Dinstantiate-member-class.cpp40 X<int>::X *xi; // expected-error{{qualified reference to 'X' is a constructor name rather than a type wherever a constructor can be declared}} variable
45 xi = xf; // expected-error{{assigning to 'X<int>::X<int> *' from incompatible type 'X<float>::X<float> *'}}
H A Dinstantiate-method.cpp13 void test(X<int> *xi, int *ip, X<int(int)> *xf) { argument
14 xi->f(17);
15 xi->g(ip);
H A Dtypename-specifier-4.cpp153 void test_X(X<HasIterator> xi) { // expected-note{{in instantiation of template class}} argument
154 xi.f();
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.func.order/
H A Dp3.cpp13 void test(X<int> xi, X<float> xf) { argument
14 float& ir = (xi == xf);
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp14.cpp36 void test(X<int> xi) { argument
39 xi.f();
40 xi.g();
41 xi.h();
H A Dp19.cpp20 void test(X<int> xi, X<long> xl, float *fp) { argument
23 xi.f(17, 25);
24 xi.f(17, 3.14159);
25 xi.f(17, fp); // expected-note{{instantiation}}
/external/openssl/crypto/x509/
H A Dx509_r2x.c71 X509_CINF *xi=NULL; local
81 xi=ret->cert_info;
85 if ((xi->version=M_ASN1_INTEGER_new()) == NULL) goto err;
86 if (!ASN1_INTEGER_set(xi->version,2)) goto err;
87 /* xi->extensions=ri->attributes; <- bad, should not ever be done
97 if (X509_gmtime_adj(xi->validity->notBefore,0) == NULL)
99 if (X509_gmtime_adj(xi->validity->notAfter,(long)60*60*24*days) == NULL)
/external/clang/test/CXX/temp/temp.spec/
H A Dp5.cpp44 X<int> xi; member in namespace:NestedClassRedecls
/external/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp4.cpp24 X2<int> xi; local
25 f(xi);
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp9-linkage.cpp31 int *&test(X0<int*> xi, int *ip) { argument
33 xi.f(ip);
35 xi.g(ip);
37 xi.h(ip);
H A Dp9.cpp31 int *&test(X0<int*> xi, int *ip) { argument
32 xi.f(ip); // expected-note{{instantiation}}
33 xi.g(ip); // expected-note{{instantiation}}
34 xi.h(ip);
/external/openssl/apps/
H A Dcrl2p7.c301 X509_INFO *xi; local
320 xi=sk_X509_INFO_shift(sk);
321 if (xi->x509 != NULL)
323 sk_X509_push(stack,xi->x509);
324 xi->x509=NULL;
327 X509_INFO_free(xi);
/external/openssl/crypto/pem/
H A Dpem_info.c93 X509_INFO *xi=NULL; local
115 if ((xi=X509_INFO_new()) == NULL) goto err;
136 if (xi->x509 != NULL)
138 if (!sk_X509_INFO_push(ret,xi)) goto err;
139 if ((xi=X509_INFO_new()) == NULL) goto err;
142 pp=&(xi->x509);
147 if (xi->x509 != NULL)
149 if (!sk_X509_INFO_push(ret,xi)) goto err;
150 if ((xi=X509_INFO_new()) == NULL) goto err;
153 pp=&(xi
313 PEM_X509_INFO_write_bio(BIO *bp, X509_INFO *xi, EVP_CIPHER *enc, unsigned char *kstr, int klen, pem_password_cb *cb, void *u) argument
[all...]
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-stdinitializerlist.cpp186 void f(X<int> &xi) { argument
187 XCtorInit xc = { xi, xi };

Completed in 290 milliseconds

12