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

1 2 3 4 5 6 7 8 910

  /art/test/Nested/
Nested.java 17 class Nested {
  /external/clang/test/CodeGenCXX/
debug-info-ms-abi.cpp 9 struct Nested {};
12 Foo::Nested n;
29 // CHECK: distinct !DICompositeType(tag: DW_TAG_structure_type, name: "Nested",
attr-used.cpp 11 // PR19743: not emitting __attribute__((used)) inline methods in nested classes.
13 struct Nested {
dllimport-members.cpp 64 struct Nested;
236 // Import individual members of a nested class.
237 struct ImportMembers::Nested {
238 // M32-DAG: define dllexport x86_thiscallcc void @"\01?normalDef@Nested@ImportMembers@@QAEXXZ"(%"struct.ImportMembers::Nested"* %this)
239 // M64-DAG: define dllexport void @"\01?normalDef@Nested@ImportMembers@@QEAAXXZ"(%"struct.ImportMembers::Nested"* %this)
240 // M32-DAG: declare dllimport x86_thiscallcc void @"\01?normalDecl@Nested@ImportMembers@@QAEXXZ"(%"struct.ImportMembers::Nested"*)
241 // M64-DAG: declare dllimport void @"\01?normalDecl@Nested@ImportMembers@@QEAAXXZ"(%"struct.ImportMembers::Nested"*
    [all...]
dllexport-members.cpp 27 struct Nested;
155 // Export individual members of a nested class.
156 struct ExportMembers::Nested {
157 // M32-DAG: define dllexport x86_thiscallcc void @"\01?normalDef@Nested@ExportMembers@@QAEXXZ"(%"struct.ExportMembers::Nested"* %this)
158 // M64-DAG: define dllexport void @"\01?normalDef@Nested@ExportMembers@@QEAAXXZ"(%"struct.ExportMembers::Nested"* %this)
159 // M32-DAG: define weak_odr dllexport x86_thiscallcc void @"\01?normalInclass@Nested@ExportMembers@@QAEXXZ"(%"struct.ExportMembers::Nested"* %this)
160 // M64-DAG: define weak_odr dllexport void @"\01?normalInclass@Nested@ExportMembers@@QEAAXXZ"(%"struct.ExportMembers::Nested"* %this
    [all...]
cxx11-exception-spec.cpp 110 template<typename T> struct Nested {
118 Nested<int>().f<true, char>();
120 Nested<long>().f<false, long>();
  /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 {
  /art/test/650-checker-inline-access-thunks/src/
Main.java 20 Nested n = new Nested();
27 private static class Nested {
28 /// CHECK-START: void Main$Nested.$noinline$setPrivateIntField(Main, int) inliner (before)
31 /// CHECK-START: void Main$Nested.$noinline$setPrivateIntField(Main, int) inliner (before)
34 /// CHECK-START: void Main$Nested.$noinline$setPrivateIntField(Main, int) inliner (after)
37 /// CHECK-START: void Main$Nested.$noinline$setPrivateIntField(Main, int) inliner (after)
44 /// CHECK-START: int Main$Nested.$noinline$getPrivateIntField(Main) inliner (before)
47 /// CHECK-START: int Main$Nested.$noinline$getPrivateIntField(Main) inliner (before)
50 /// CHECK-START: int Main$Nested.$noinline$getPrivateIntField(Main) inliner (after
    [all...]
  /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/testng/src/test/java/test/
NestedStaticSampleTest.java 11 public class Nested {
13 public void nested() { method in class:NestedStaticSampleTest.Nested
  /external/llvm/test/tools/dsymutil/X86/
odr-uniquing.cpp 23 struct Nested {};
29 // CHECK: 0x[[NESTED:[0-9a-f]*]]:{{.*}}DW_TAG_structure_type
31 // CHECK: DW_AT_name{{.*}}"Nested"
76 S::Nested n;
114 // ODR: DW_AT_type{{.*}}[[NESTED]]
134 // NOODR: DW_AT_name{{.*}}"Nested"
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
source.py 4 of the handling information extraction from nested definitions using parse
15 class Nested:
16 "This is a nested class."
19 "Method of Nested class."
21 "Function in method of Nested class."
  /external/python/cpython2/Demo/parser/
source.py 4 of the handling information extraction from nested definitions using parse
15 class Nested:
16 "This is a nested class."
19 "Method of Nested class."
21 "Function in method of Nested class."
  /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/SemaCXX/
implicit-exception-spec.cpp 31 // And within a nested class.
32 struct Nested { // expected-note {{implicit default constructor for 'InClassInitializers::Nested::Inner' first required here}}
34 // expected-error@+1 {{cannot use defaulted default constructor of 'Inner' within 'Nested' outside of member functions}}
35 int n = ExceptionIf<noexcept(Nested())>::f(); // expected-note {{implicit default constructor for 'InClassInitializers::Nested' first required here}}
53 struct Nested {
55 T() noexcept(!noexcept(Nested()));
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());
  /kernel/tests/net/test/
cstruct_test.py 59 Nested = cstruct.Struct("Nested", "!HSSi",
64 [TestStructA, Nested])
66 Nested((5, TestStructA((3, 4)), TestStructB((7, 8)), 9)),
87 " nest2=Nested(word1=33214, nest2=TestStructA(byte1=3, int2=4),"
155 # TODO: Add support for nested struct offset
156 Nested = cstruct.Struct("Nested", "!HSSi", "word1 nest2 nest3 int4",
159 [TestStructA, Nested])
160 d = DoubleNested((TestStructA((1, 2)), Nested((5, TestStructA((3, 4))
    [all...]
  /build/blueprint/
unpack_test.go 128 nested: {
135 Nested struct {
139 Nested: struct{ Name string }{
149 nested: {
156 Nested interface{}
158 Nested: &struct{ Name string }{
168 nested: {
177 Nested struct {
183 Nested: struct{ Foo string }{
195 nested:
    [all...]
  /external/clang/test/CXX/special/class.init/class.base.init/
p8-0x.cpp 51 struct Nested {
52 Nested() {}
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorExpr.h 37 typedef typename XprType::Nested XprTypeNested;
58 typedef TensorCwiseNullaryOp<NullaryOp, XprType> Nested;
66 const typename internal::remove_all<typename XprType::Nested>::type&
73 typename XprType::Nested m_xpr;
88 typedef typename XprType::Nested XprTypeNested;
101 struct nested<TensorCwiseUnaryOp<UnaryOp, XprType>, 1, typename eval<TensorCwiseUnaryOp<UnaryOp, XprType> >::type> struct in namespace:Eigen::internal
119 typedef typename Eigen::internal::nested<TensorCwiseUnaryOp>::type Nested;
129 /** \returns the nested expression */
131 const typename internal::remove_all<typename XprType::Nested>::type
177 struct nested<TensorCwiseBinaryOp<BinaryOp, LhsXprType, RhsXprType>, 1, typename eval<TensorCwiseBinaryOp<BinaryOp, LhsXprType, RhsXprType> >::type> struct in namespace:Eigen::internal
254 struct nested<TensorCwiseTernaryOp<TernaryOp, Arg1XprType, Arg2XprType, Arg3XprType>, 1, typename eval<TensorCwiseTernaryOp<TernaryOp, Arg1XprType, Arg2XprType, Arg3XprType> >::type> struct in namespace:Eigen::internal
326 struct nested<TensorSelectOp<IfXprType, ThenXprType, ElseXprType>, 1, typename eval<TensorSelectOp<IfXprType, ThenXprType, ElseXprType> >::type> struct in namespace:Eigen::internal
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/
standalone_parallel_sub_test.go 10 t.Run("Nested", func(t *testing.T) {})
  /prebuilts/go/linux-x86/src/cmd/go/testdata/
standalone_parallel_sub_test.go 10 t.Run("Nested", func(t *testing.T) {})
  /build/blueprint/proptools/
clone_test.go 142 // Clone nested interface
144 Nested struct{ S interface{} }
146 Nested: struct{ S interface{} }{
153 Nested struct{ S interface{} }
155 Nested: struct{ S interface{} }{
197 Nested struct{ EmbeddedStruct }
203 Nested: struct{ EmbeddedStruct }{
212 Nested struct{ EmbeddedStruct }
218 Nested: struct{ EmbeddedStruct }{
230 Nested struct{ EmbeddedInterface
    [all...]

Completed in 434 milliseconds

1 2 3 4 5 6 7 8 910