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

1 2 3 4 5

  /art/test/Nested/
Nested.java 17 class Nested {
  /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/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/CodeGenCXX/
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 x86_thiscallcc void @"\01?normalDef@Nested@ImportMembers@@QAEXXZ"(%"struct.ImportMembers::Nested"* %this)
239 // M64-DAG: define 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 25 struct Nested;
150 // Export individual members of a nested class.
151 struct ExportMembers::Nested {
152 // M32-DAG: define dllexport x86_thiscallcc void @"\01?normalDef@Nested@ExportMembers@@QAEXXZ"(%"struct.ExportMembers::Nested"* %this)
153 // M64-DAG: define dllexport void @"\01?normalDef@Nested@ExportMembers@@QEAAXXZ"(%"struct.ExportMembers::Nested"* %this)
154 // M32-DAG: define weak_odr dllexport x86_thiscallcc void @"\01?normalInclass@Nested@ExportMembers@@QAEXXZ"(%"struct.ExportMembers::Nested"* %this)
155 // 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>();
mangle-ms-templates.cpp 13 class Nested { };
61 Class<Nested<Typename> > c2;
62 // CHECK: call {{.*}} @"\01??0?$Class@V?$Nested@VTypename@@@@@@QAE@XZ"
63 // X64: call {{.*}} @"\01??0?$Class@V?$Nested@VTypename@@@@@@QEAA@XZ"
  /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/chromium_org/third_party/WebKit/Source/wtf/
TemporaryChangeTest.cpp 33 TEST(TemporaryChangeTest, Nested)
  /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 32 // And within a nested class.
33 struct Nested { // expected-error {{cannot be used by non-static data member initializer}}
35 int n = ExceptionIf<noexcept(Nested())>::f(); // expected-note {{implicit default constructor for 'InClassInitializers::Nested' first required here}}
52 struct Nested { // expected-note {{not complete}}
54 T() noexcept(!noexcept(Nested())); // expected-error{{incomplete type}}
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());
  /external/clang/test/CXX/special/class.init/class.base.init/
p8-0x.cpp 51 struct Nested {
52 Nested() {}
  /external/eigen/Eigen/src/SparseCore/
SparseDot.h 52 typedef typename Derived::Nested Nested;
53 typedef typename OtherDerived::Nested OtherNested;
54 typedef typename internal::remove_all<Nested>::type NestedCleaned;
57 Nested nthis(derived());
  /external/eigen/Eigen/src/Core/
Select.h 38 typedef typename ConditionMatrixType::Nested ConditionMatrixNested;
39 typedef typename ThenMatrixType::Nested ThenMatrixNested;
40 typedef typename ElseMatrixType::Nested ElseMatrixNested;
107 typename ConditionMatrixType::Nested m_condition;
108 typename ThenMatrixType::Nested m_then;
109 typename ElseMatrixType::Nested m_else;
CwiseUnaryOp.h 44 typedef typename XprType::Nested XprTypeNested;
76 /** \returns the nested expression */
77 const typename internal::remove_all<typename XprType::Nested>::type&
80 /** \returns the nested expression */
81 typename internal::remove_all<typename XprType::Nested>::type&
85 typename XprType::Nested m_xpr;
CwiseUnaryView.h 37 typedef typename MatrixType::Nested MatrixTypeNested;
77 /** \returns the nested expression */
78 const typename internal::remove_all<typename MatrixType::Nested>::type&
81 /** \returns the nested expression */
82 typename internal::remove_all<typename MatrixType::Nested>::type&
86 // FIXME changed from MatrixType::Nested because of a weird compilation error with sun CC
87 typename internal::nested<MatrixType>::type m_matrix;
  /external/clang/test/SemaTemplate/
dependent-base-classes.cpp 40 class Nested { };
48 class HasDepBase::Nested nested; local
57 class NoDepBase::Nested nested; // expected-error{{no class named 'Nested' in 'NoDepBase<T>'}} local
  /external/eigen/Eigen/src/misc/
SparseSolve.h 30 typedef typename remove_all<typename Rhs::Nested>::type RhsNestedCleaned;
68 typename Rhs::Nested m_rhs;
120 const typename Rhs::Nested m_rhs;
121 const typename Guess::Nested m_guess;
Solve.h 35 typedef typename remove_all<typename Rhs::Nested>::type RhsNestedCleaned;
56 typename Rhs::Nested m_rhs;
  /external/eigen/test/
nesting_ops.cpp 14 typename MatrixType::Nested m(_m);
  /external/eigen/Eigen/src/Geometry/
Homogeneous.h 37 typedef typename nested<MatrixType>::type MatrixTypeNested;
111 typename MatrixType::Nested m_matrix;
239 typedef typename remove_all<typename LhsMatrixTypeCleaned::Nested>::type LhsMatrixTypeNested;
260 typename LhsMatrixTypeCleaned::Nested m_lhs;
261 typename MatrixType::Nested m_rhs;
279 typedef typename remove_all<typename Rhs::Nested>::type RhsNested;
299 typename MatrixType::Nested m_lhs;
300 typename Rhs::Nested m_rhs;
  /external/eigen/Eigen/src/LU/
Determinant.h 95 typedef typename internal::nested<Derived,Base::RowsAtCompileTime>::type Nested;
96 return internal::determinant_impl<typename internal::remove_all<Nested>::type>::run(derived());

Completed in 1062 milliseconds

1 2 3 4 5