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

1 2 3 4 5

  /art/test/Nested/
Nested.java 18 class Inner {
  /external/clang/test/Modules/Inputs/
cxx-templates-b-impl.h 3 struct Inner {};
cxx-templates-common.h 5 struct 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 {
  /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/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}}
p4.cpp 8 struct Inner;
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}}
  /external/clang/test/SemaTemplate/
typo-dependent-name.cpp 6 T inner; member in struct:Base
12 struct Inner {
16 return this->inner < other;
temp_explicit_cxx0x.cpp 6 namespace Inner {
11 template struct Inner::X1<int>;
16 template struct ::N1::Inner::X1<float>;
extern-templates.cpp 8 struct Inner {
23 void X0<T>::Inner::g(T t) {
27 void test_intptr(X0<int*> xi, X0<int*>::Inner xii) {
34 void test_longptr(X0<long*> xl, X0<long*>::Inner xli) {
  /external/clang/test/CXX/class/class.nest/
p1-cxx0x.cpp 9 class Inner {
p1.cpp 9 class Inner {
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p6.cpp 22 struct Inner {
33 void X0<T>::Inner::g(int = 17) { } // expected-error{{cannot be added}}
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p15.cpp 27 struct Inner {
32 template<> unsigned X<1>::Inner::array[]; // okay
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
  /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;
  /external/clang/test/SemaCXX/
virtual-member-functions-key-function.cpp 23 struct Inner {
29 void Outer::Inner::g() { }
  /external/chromium_org/chrome/browser/value_store/
value_store_change.cc 32 : inner_(new Inner(key, old_value, new_value)) {}
51 ValueStoreChange::Inner::Inner(
55 ValueStoreChange::Inner::~Inner() {}
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_;
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/a/
A.java 6 public class Inner
8 public Inner() { throw new RuntimeException("Stub!"); }
  /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/
p5.cpp 9 union Inner { };
26 template union X0<float>::Inner; // expected-note{{previous explicit instantiation}}
27 template union X0<float>::Inner; // expected-error{{duplicate explicit instantiation}}
  /external/clang/test/PCH/Inputs/
namespaces.h 18 namespace Inner {
34 namespace Alias1 = N2::Inner;
36 using namespace N2::Inner;

Completed in 418 milliseconds

1 2 3 4 5