HomeSort by relevance Sort by last modified time
    Searched defs:X0 (Results 1 - 25 of 151) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/ASTMerge/Inputs/
class-template1.cpp 2 struct X0;
22 extern X0<int> *x0i;
23 extern X0<long> *x0l;
24 extern X0<float> *x0r;
27 struct X0<char> {
32 struct X0<wchar_t> {
class-template2.cpp 2 struct X0;
23 extern X0<Integer> *x0i;
24 extern X0<float> *x0f;
25 extern X0<double> *x0r;
28 struct X0<char> {
33 struct X0<wchar_t> {
  /external/clang/test/CXX/expr/expr.mptr.oper/
p5.cpp 3 struct X0 {
10 void test_object_cvquals(void (X0::*pm)(),
11 void (X0::*pmc)() const,
12 void (X0::*pmv)() volatile,
13 void (X0::*pmcv)() const volatile,
14 X0 *p,
15 const X0 *pc,
16 volatile X0 *pv,
17 const volatile X0 *pcv,
18 X0 &o
    [all...]
  /external/clang/test/CXX/class/class.mem/
p14.cpp 7 struct X0 {
8 int X0; // okay
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p13.cpp 15 struct X0 { };
p14.cpp 23 struct X0 {
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p3.cpp 9 struct X0 {
p6.cpp 19 struct X0 {
29 void X0<T>::f(int = 17) { } // expected-error{{cannot be added}}
33 void X0<T>::Inner::g(int = 17) { } // expected-error{{cannot be added}}
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
p1inst.cpp 4 struct X0 {
10 void X0<T, U>::f(T *t, const U &u) {
14 void test_f(X0<float, int> xfi, X0<void, int> xvi, float *fp, void *vp, int i) {
p1-retmem.cpp 7 struct X0 {
17 typename X0<T>::size_type X0<T>::f0() const {
22 typename X0<U>::value_type *X0<U>::f1() {
27 X1<typename X0<U>::value_type*> X0<U>::f2() {
  /external/clang/test/CXX/temp/temp.param/
p1.cpp 11 class X0 {}; // expected-note{{template is declared here}}
12 X0<int> x0; // expected-error{{too few template arguments for class template 'X0'}} variable
p9.cpp 13 struct X0 {
18 void X0<N>::f() { }
21 template<template<int> class TT = X0> // expected-error{{not permitted on a friend template}}
  /external/clang/test/SemaCXX/
type-formatting.cpp 3 struct X0 { };
8 const T *t = (const X0*)0; // expected-error{{cannot initialize a variable of type 'const X1 *' with an rvalue of type 'const X0 *'}}
attr-regparm.cpp 5 struct X0 {
12 void X0::f0() { }
13 void __attribute__((regparm(3))) X0::f1() { }
14 void __attribute__((regparm(2))) X0::f2() { } // expected-error{{function declared with regparm(2) attribute was previously declared with the regparm(3) attribute}}
15 void __attribute__((regparm(2))) X0::f3() { } // expected-error{{function declared with regparm(2) attribute was previously declared without the regparm attribute}}
static-array-member.cpp 3 struct X0 {
10 int X0::array[sizeof(X0) * 2];
  /external/clang/test/CodeGenCXX/
attr-used.cpp 4 struct X0 {
6 __attribute__((used)) X0() {}
8 __attribute__((used)) ~X0() {}
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p8.cpp 3 class X0 {
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p10.cpp 4 struct X0 {
13 void X0<T>::f(T& t) {
18 struct X0<T>::Inner {
23 T X0<T>::static_var = 1; // expected-error{{cannot initialize}}
25 extern template struct X0<void*>;
26 template struct X0<void*>; // expected-note 2{{instantiation}}
28 template struct X0<int>; // expected-note 4{{explicit instantiation definition is here}}
30 extern template void X0<int>::f(int&); // expected-error{{follows explicit instantiation definition}}
31 extern template struct X0<int>::Inner; // expected-error{{follows explicit instantiation definition}}
32 extern template int X0<int>::static_var; // expected-error{{follows explicit instantiation definition}
    [all...]
p4.cpp 7 struct X0 {
15 template void X0<int>::f1(); // expected-error{{explicit instantiation of undefined member function}}
17 template int X0<int>::value; // expected-error{{explicit instantiation of undefined static data member}}
22 template<> void X0<long>::f1(); // expected-note{{previous template specialization is here}}
23 template void X0<long>::f1(); // expected-warning{{explicit instantiation of 'f1' that occurs after an explicit specialization will be ignored}}
25 template<> struct X0<long>::Inner; // expected-note{{previous template specialization is here}}
26 template struct X0<long>::Inner; // expected-warning{{explicit instantiation of 'Inner' that occurs after an explicit specialization will be ignored}}
28 template<> long X0<long>::value; // expected-note{{previous template specialization is here}}
29 template long X0<long>::value; // expected-warning{{explicit instantiation of 'value' that occurs after an explicit specialization will be ignored}}
31 template<> struct X0<double>; // expected-note{{previous template specialization is here}
    [all...]
p7.cpp 4 struct X0 {
17 T* X0<T>::static_member = ((T*)0) + 1; // expected-error{{pointer to the function}}
19 template class X0<int>; // okay
21 template class X0<int(int)>; // expected-note 3{{requested here}}
26 struct X0<int(long)>::MemberClass { };
30 int_long_func *X0<int_long_func>::f0(int_long_func *) { return 0; }
33 int_long_func *X0<int(long)>::static_member;
35 template class X0<int(long)>;
  /external/clang/test/CXX/class.access/class.friend/
p2-cxx03.cpp 3 class X0 {
9 X0<X1> x0a;
10 X0<X1 *> x0b;
11 X0<int> x0c;
12 X0<E1> x0d;
  /external/clang/test/CXX/temp/temp.res/temp.local/
p1.cpp 11 template <typename T> struct X0 {
12 X0();
13 ~X0();
14 X0 f(const X0&);
31 X0<int> x0; (void)x0; local
  /external/clang/test/SemaTemplate/
temp_explicit_cxx0x.cpp 4 template<typename T> struct X0 { }; // expected-note{{here}}
10 template struct X0<int>;
21 template struct X0<double>; // expected-error{{must occur in namespace 'N1'}}
value-dependent-null-pointer-constant.cpp 4 struct X0 {
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/comm/src/
omxVCCOMM_Copy16x16_s.s 36 X0 RN 2
46 LDRD X0,[pSrc],#8 ;//pSrc after loading pSrc=pSrc+8
50 STRD X0,[pDst],#8
51 LDRD X0,[pSrc],#8
56 STRD X0,[pDst],#8
57 LDRD X0,[pSrc],#8
62 STRD X0,[pDst],#8
63 LDRD X0,[pSrc],#8
68 STRD X0,[pDst],#8
69 LDRD X0,[pSrc],#
    [all...]

Completed in 345 milliseconds

1 2 3 4 5 6 7