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

1 2

  /dalvik/dx/tests/115-merge/testdata/
Annotated.java 7 c = @Annotated.Nested(e="E1", f=1695938256, g=7264081114510713000L),
8 d = { @Annotated.Nested(e="E2", f=1695938256, g=7264081114510713000L) })
21 Nested c() default @Nested;
22 Nested[] d() default {};
26 public @interface Nested {
  /external/clang/test/SemaCXX/
implicit-exception-spec.cpp 32 // And within a nested class.
33 struct Nested {
35 int n = ExceptionIf<noexcept(Nested())>::f(); // expected-error {{exception specification is not available until end of class definition}}
38 bool y = noexcept(Nested());
39 bool z = noexcept(Nested::Inner());
43 struct Nested {
45 T() noexcept(!noexcept(Nested())); // expected-error{{exception specification is not available until end of class definition}}
default2.cpp 63 struct Nested {
65 int j = c, // OK; use Y::Nested::c
68 Nested* self = this, // expected-error{{invalid use of 'this' outside of a non-static member function}}
71 Nested(int i = 42);
74 int mem7(Nested n = Nested());
MicrosoftExtensions.cpp 176 class Nested {
nested-name-spec.cpp 111 namespace Nested {
168 Y::foo y; // expected-error{{incomplete type 'Y' named in nested name specifier}}
190 foo<somens:a> a2; // expected-error {{unexpected ':' in nested name specifier}}
228 A::execute(path); // expected-error {{incomplete type 'test3::A' named in nested name specifier}}
  /external/clang/test/CXX/temp/temp.spec/
p5.cpp 32 // Make sure that we don't get tricked by redeclarations of nested classes.
36 struct Nested;
37 friend struct Nested;
39 struct Nested {
40 Nested() {}
41 } nested; member in struct:NestedClassRedecls::X
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p6.cpp 10 struct Nested {
20 X0<int>::Nested nested; // expected-note{{implicit instantiation first required here}} local
33 struct X0<int>::Nested { }; // expected-error{{after instantiation}}
  /external/clang/test/PCH/
struct.c 28 struct Nested nested = { 1, 2 }; variable in typeref:struct:Nested
struct.h 28 struct Nested { int x, y; } nest;
  /external/clang/test/CXX/special/class.init/class.base.init/
p8-0x.cpp 54 struct Nested {
55 Nested() {}
  /external/clang/test/CodeGenCXX/
cxx11-exception-spec.cpp 109 template<typename T> struct Nested {
117 Nested<int>().f<true, char>();
119 Nested<long>().f<false, long>();
  /external/clang/test/SemaTemplate/
dependent-base-classes.cpp 41 class Nested { };
49 class HasDepBase::Nested nested; local
58 class NoDepBase::Nested nested; // expected-error{{no class named 'Nested' in 'NoDepBase<T>'}} local
nested-template.cpp 7 struct Nested {
14 S::A<int>::Nested::type *ip = &i;
  /external/qemu/distrib/sdl-1.2.12/include/
begin_code.h 28 /* This shouldn't be nested -- included it around code only. */
30 #error Nested inclusion of begin_code.h
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
begin_code.h 28 /* This shouldn't be nested -- included it around code only. */
30 #error Nested inclusion of begin_code.h
  /prebuilts/tools/linux-x86/sdl/include/SDL/
begin_code.h 28 /* This shouldn't be nested -- included it around code only. */
30 #error Nested inclusion of begin_code.h
  /prebuilts/tools/windows/sdl/host/include/SDL/
begin_code.h 28 /* This shouldn't be nested -- included it around code only. */
30 #error Nested inclusion of begin_code.h
  /prebuilts/tools/windows/sdl/include/SDL/
begin_code.h 28 /* This shouldn't be nested -- included it around code only. */
30 #error Nested inclusion of begin_code.h
  /external/protobuf/src/google/protobuf/
repeated_field_unittest.cc 854 typedef TestAllTypes::NestedMessage Nested;
855 Nested nesteds[2];
856 std::vector<Nested*> nested_ptrs;
893 nested_ptrs.push_back(new Nested);
895 nested_ptrs.push_back(new Nested);
947 vector<Nested*> data;
950 Nested* new_data = new Nested;
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 102 bool Nested = MF.getFunction()->
105 if (Nested) {
  /external/v8/test/mjsunit/
debug-liveedit-breakpoints.js 50 + "function Nested() {\n"
debug-scopes.js 329 // Nested empty with blocks.
371 // Nested with blocks using in-place object literals.
394 // Nested with blocks using existing object.
420 // Nested with blocks using existing object in global code.
  /external/chromium/chrome/browser/resources/net_internals/
socketpoolwrapper.js 28 * in |socketPoolInfo|. Nested socket pools appear immediately after their
  /external/v8/test/mjsunit/compiler/
optimized-for-in.js 83 // Nested for-in loops.
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]

Completed in 494 milliseconds

1 2