Lines Matching refs:identity
17 struct identity struct
27 : proto::make< identity<proto::protect<_> > > argument
31 : proto::make< identity<proto::protect<int> > >
35 : proto::make< identity<proto::protect<identity<_> > > >
39 : proto::make< identity<proto::protect<identity<int> > > >
43 : proto::make< identity<proto::protect<identity<identity<int> > > > >
53 identity<_> t3 = TestWithMake3()(i); in test_protect_with_make()
54 identity<int> t4 = TestWithMake4()(i); in test_protect_with_make()
55 identity<identity<int> > t5 = TestWithMake5()(i); in test_protect_with_make()
63 : proto::when<_, identity<proto::protect<_> >() >
67 : proto::when<_, identity<proto::protect<int> >() >
71 : proto::when<_, identity<proto::protect<identity<_> > >() >
75 : proto::when<_, identity<proto::protect<identity<int> > >() >
79 : proto::when<_, identity<proto::protect<identity<identity<int> > > >() >
89 identity<_> t3 = TestWithWhen3()(i); in test_protect_with_when()
90 identity<int> t4 = TestWithWhen4()(i); in test_protect_with_when()
91 identity<identity<int> > t5 = TestWithWhen5()(i); in test_protect_with_when()