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

1 2 3 4 5 6

  /art/test/Nested/
Nested.java 18 class Inner {
  /external/javassist/src/main/javassist/runtime/
Inner.java 19 * A support class for compiling a method declared in an inner class.
23 public class Inner {
  /external/clang/test/Modules/Inputs/
cxx-templates-b-impl.h 3 struct Inner {};
cxx-templates-common.h 5 struct Inner {};
  /external/clang/test/CodeGenCXX/
template-inner-struct-visibility-hidden.cpp 10 struct Inner {
19 template<typename T> void C<T>::Inner::f() { }
20 template<typename T> void C<T>::Inner::Inner2::g() { }
21 template<typename T> int C<T>::Inner::Inner2::Static;
  /ndk/tests/device/test-stlport_shared-exception/jni/
new5.cpp 11 struct Inner { ~Inner() {} };
14 Inner * ic = new (std::nothrow) Inner[1]; // SegFault here
  /ndk/tests/device/test-stlport_static-exception/jni/
new5.cpp 11 struct Inner { ~Inner() {} };
14 Inner * ic = new (std::nothrow) Inner[1]; // SegFault here
  /external/clang/test/SemaCXX/
virtual-member-functions-key-function.cpp 23 struct Inner {
29 void Outer::Inner::g() { }
implicit-exception-spec.cpp 34 struct Inner {
36 } inner; member in struct:InClassInitializers::Nested
40 struct Inner;
41 int n = Inner().n; // expected-error {{cannot be used by non-static data member initializer}}
42 struct Inner {
44 } inner; member in struct:InClassInitializers::Nested2
71 struct Inner {
72 ~Inner() throw();
74 Inner inner; member in struct:ImplicitDtorExceptionSpec::A
    [all...]
  /external/clang/test/PCH/Inputs/
namespaces.h 18 namespace Inner {
34 namespace Alias1 = N2::Inner;
36 using namespace N2::Inner;
  /external/clang/test/SemaTemplate/
temp_explicit_cxx0x.cpp 6 namespace Inner {
11 template struct Inner::X1<int>;
16 template struct ::N1::Inner::X1<float>;
temp_explicit.cpp 51 struct Inner {
56 void f1(X3<int&>); // okay, Inner, not instantiated
61 struct Inner {
68 void f2(X4<int&>); // okay, Inner, not instantiated
69 void f3(X4<int&>::Inner); // okay, Inner::VeryInner, not instantiated
105 struct Inner { // expected-note{{here}}
110 template struct X6::Inner; // expected-error{{non-templated}}
133 namespace Inner {
138 template struct Inner::X8<int>
    [all...]
  /external/chromium_org/chrome/browser/value_store/
value_store_change.h 43 class Inner : public base::RefCountedThreadSafe<Inner> {
45 Inner(
53 friend class base::RefCountedThreadSafe<Inner>;
54 virtual ~Inner();
57 scoped_refptr<Inner> inner_;
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p10.cpp 7 struct Inner;
18 struct X0<T>::Inner {
31 extern template struct X0<int>::Inner; // expected-error{{follows explicit instantiation definition}}
p1.cpp 29 struct Inner {
40 template struct X1<int>::Inner<float>;
41 template struct X1<int>::Inner<double>;
42 template struct X1<int>::Inner<void>; // expected-note{{instantiation}}
61 struct Inner {
80 template struct X2<int, float>::Inner;
81 template struct X2<int, Incomplete>::Inner; // expected-note{{instantiation}}
  /external/clang/test/CXX/class/class.nest/
p1-cxx0x.cpp 9 class Inner {
p1.cpp 9 class Inner {
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.class/
p1.cpp 5 struct Inner;
9 struct X0<T, U>::Inner {
18 X0<int, float>::Inner inner; local
19 inner.x = 5;
20 inner.y = 3.4;
21 inner.f();
23 X0<int*, float *>::Inner inner2;
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p19.cpp 5 template<typename U> struct Inner { };
11 struct X<int>::Inner {
21 X<int>::Inner<float*> xii;
26 X<long>::Inner<float*> xli;
p4.cpp 15 struct Inner { // expected-error{{implicit default}}
29 X<IntHolder, int>::Inner inner; // expected-note {{first required here}} local
40 struct X<IntHolder, long>::Inner {
41 Inner() : value(17) { }
52 X<IntHolder, long>::Inner inner; // okay, uses specialization local
p2.cpp 59 struct Inner : public T { }; // expected-note 3{{here}}
140 struct X0<void*>::Inner { };
143 struct X0<int>::Inner { };
146 struct X0<unsigned>::Inner;
149 struct X0<float>::Inner;
152 struct X0<double>::Inner; // expected-note{{forward declaration}}
156 struct N0::X0<long>::Inner { }; // expected-warning{{C++11 extension}}
159 struct N0::X0<float>::Inner { };
163 struct N0::X0<unsigned>::Inner { }; // expected-error{{member class specialization}}
166 struct N0::X0<unsigned long>::Inner { }; // expected-error{{member class specialization}
    [all...]
  /libcore/benchmarks/src/benchmarks/
MethodInvocationBenchmark.java 102 public static class Inner {
112 Inner inner = new Inner(); local
114 inner.publicMethod();
119 Inner inner = new Inner(); local
121 inner.protectedMethod();
126 Inner inner = new Inner() local
133 Inner inner = new Inner(); local
140 Inner inner = new Inner(); local
    [all...]
FieldAccessBenchmark.java 27 private static class Inner {
75 Inner inner = new Inner(); local
77 result = inner.publicInnerIntVal;
83 Inner inner = new Inner(); local
85 result = inner.protectedInnerIntVal;
91 Inner inner = new Inner() local
99 Inner inner = new Inner(); local
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/
p6.cpp 40 template<typename X, typename Y> struct Inner;
41 template<typename Y> struct Inner<T, Y> {}; // expected-note{{previous}}
42 template<typename Y> struct Inner<U, Y> {}; // expected-error{{cannot be redeclared}}
61 struct Inner;
64 struct Inner<T, T> {
69 struct Inner {
74 int array0[Outer<int>::Inner<int, int>::value? 1 : -1];
75 int array1[Outer<int>::Inner<int, float>::value? -1 : 1];
  /external/clang/test/CXX/class/class.mem/
p1.cpp 70 class Inner {
76 Inner<int> _foo;
80 X::Inner<int> c2i;
81 X::Inner<float> c2f;
87 class Inner {

Completed in 422 milliseconds

1 2 3 4 5 6