Home
last modified time | relevance | path

Searched refs:FooPtr (Results 1 – 25 of 120) sorted by relevance

12345

/dports/www/chromium-legacy/chromium-88.0.4324.182/mojo/public/cpp/bindings/tests/
H A Dmojom_types_downgrader_unittest.cc20 void InterfacePtr(mojom::FooPtr ptr) override {} in InterfacePtr()
26 void PendingRemote(mojom::FooPtr remote) override {} in PendingRemote()
31 void MultipleParams2(mojom::FooPtr remote, in MultipleParams2()
33 void MultipleParams3(mojom::FooPtr remote, in MultipleParams3()
38 mojom::FooPtr remote, in MultipleParams4()
43 mojom::FooPtr data, in MethodWithResponseCallbackOneLine()
46 mojom::FooPtr data, in MethodWithResponseCallbackTwoLines()
48 void OddSpaces(mojom::FooPtr remote, mojom::FooRequest receiver) override {} in OddSpaces()
49 void OddSpacesAndLineBreak(mojom::FooPtr remote, in OddSpacesAndLineBreak()
65 base::OnceCallback<void(mojom::FooPtr)> foo_ptr_callback = in TEST_F()
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/smart_ptr/example/
H A Dshared_ptr_example.cpp37 typedef boost::shared_ptr<Foo> FooPtr; typedef
41 bool operator()( const FooPtr & a, const FooPtr & b ) in operator ()()
43 void operator()( const FooPtr & a ) in operator ()()
49 std::vector<FooPtr> foo_vector; in main()
50 std::set<FooPtr,FooPtrOps> foo_set; // NOT multiset! in main()
52 FooPtr foo_ptr( new Foo( 2 ) ); in main()
/dports/devel/boost-python-libs/boost_1_72_0/libs/smart_ptr/example/
H A Dshared_ptr_example.cpp37 typedef boost::shared_ptr<Foo> FooPtr; typedef
41 bool operator()( const FooPtr & a, const FooPtr & b ) in operator ()()
43 void operator()( const FooPtr & a ) in operator ()()
49 std::vector<FooPtr> foo_vector; in main()
50 std::set<FooPtr,FooPtrOps> foo_set; // NOT multiset! in main()
52 FooPtr foo_ptr( new Foo( 2 ) ); in main()
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/smart_ptr/example/
H A Dshared_ptr_example.cpp37 typedef boost::shared_ptr<Foo> FooPtr; typedef
41 bool operator()( const FooPtr & a, const FooPtr & b ) in operator ()()
43 void operator()( const FooPtr & a ) in operator ()()
49 std::vector<FooPtr> foo_vector; in main()
50 std::set<FooPtr,FooPtrOps> foo_set; // NOT multiset! in main()
52 FooPtr foo_ptr( new Foo( 2 ) ); in main()
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/smart_ptr/example/
H A Dshared_ptr_example.cpp37 typedef boost::shared_ptr<Foo> FooPtr; typedef
41 bool operator()( const FooPtr & a, const FooPtr & b ) in operator ()()
43 void operator()( const FooPtr & a ) in operator ()()
49 std::vector<FooPtr> foo_vector; in main()
50 std::set<FooPtr,FooPtrOps> foo_set; // NOT multiset! in main()
52 FooPtr foo_ptr( new Foo( 2 ) ); in main()
/dports/databases/percona57-server/boost_1_59_0/libs/smart_ptr/example/
H A Dshared_ptr_example.cpp37 typedef boost::shared_ptr<Foo> FooPtr; typedef
41 bool operator()( const FooPtr & a, const FooPtr & b ) in operator ()()
43 void operator()( const FooPtr & a ) in operator ()()
49 std::vector<FooPtr> foo_vector; in main()
50 std::set<FooPtr,FooPtrOps> foo_set; // NOT multiset! in main()
52 FooPtr foo_ptr( new Foo( 2 ) ); in main()
/dports/databases/xtrabackup/boost_1_59_0/libs/smart_ptr/example/
H A Dshared_ptr_example.cpp37 typedef boost::shared_ptr<Foo> FooPtr; typedef
41 bool operator()( const FooPtr & a, const FooPtr & b ) in operator ()()
43 void operator()( const FooPtr & a ) in operator ()()
49 std::vector<FooPtr> foo_vector; in main()
50 std::set<FooPtr,FooPtrOps> foo_set; // NOT multiset! in main()
52 FooPtr foo_ptr( new Foo( 2 ) ); in main()
/dports/databases/percona57-client/boost_1_59_0/libs/smart_ptr/example/
H A Dshared_ptr_example.cpp37 typedef boost::shared_ptr<Foo> FooPtr; typedef
41 bool operator()( const FooPtr & a, const FooPtr & b ) in operator ()()
43 void operator()( const FooPtr & a ) in operator ()()
49 std::vector<FooPtr> foo_vector; in main()
50 std::set<FooPtr,FooPtrOps> foo_set; // NOT multiset! in main()
52 FooPtr foo_ptr( new Foo( 2 ) ); in main()
/dports/devel/boost-libs/boost_1_72_0/libs/smart_ptr/example/
H A Dshared_ptr_example.cpp37 typedef boost::shared_ptr<Foo> FooPtr; typedef
41 bool operator()( const FooPtr & a, const FooPtr & b ) in operator ()()
43 void operator()( const FooPtr & a ) in operator ()()
49 std::vector<FooPtr> foo_vector; in main()
50 std::set<FooPtr,FooPtrOps> foo_set; // NOT multiset! in main()
52 FooPtr foo_ptr( new Foo( 2 ) ); in main()
/dports/devel/hyperscan/boost_1_75_0/libs/smart_ptr/example/
H A Dshared_ptr_example.cpp37 typedef boost::shared_ptr<Foo> FooPtr; typedef
41 bool operator()( const FooPtr & a, const FooPtr & b ) in operator ()()
43 void operator()( const FooPtr & a ) in operator ()()
49 std::vector<FooPtr> foo_vector; in main()
50 std::set<FooPtr,FooPtrOps> foo_set; // NOT multiset! in main()
52 FooPtr foo_ptr( new Foo( 2 ) ); in main()
/dports/devel/swig/swig-4.0.2/Examples/test-suite/
H A Ddirector_ref.i23 class FooPtr {
25 FooPtr(Foo* f = NULL) : my_f(f) { if (my_f) { my_f->Ref(); } } in my_f()
26 ~FooPtr() { if (my_f) { my_f->Unref(); } } in ~FooPtr()
66 class FooPtr {
68 FooPtr(Foo* f = NULL) : my_f(f) { if (my_f) { my_f->Ref(); } } in my_f()
69 ~FooPtr() { if (my_f) { my_f->Unref(); } } in ~FooPtr()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/test/SemaCXX/
H A Dms-exception-spec.cpp23 template <typename T> struct FooPtr { struct
24 template <typename U> FooPtr(U *p) : m_pT(nullptr) {} in FooPtr() function
30FooPtr(T *pInterface) throw() // expected-warning {{exception specification in declaration does no… in FooPtr() argument
36 template struct FooPtr<Bar>; // expected-note {{requested here}} argument
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/test/SemaCXX/
H A Dms-exception-spec.cpp23 template <typename T> struct FooPtr { struct
24 template <typename U> FooPtr(U *p) : m_pT(nullptr) {} in FooPtr() function
30FooPtr(T *pInterface) throw() // expected-warning {{exception specification in declaration does no… in FooPtr() function
36 template struct FooPtr<Bar>; // expected-note {{requested here}} variable
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/test/SemaCXX/
H A Dms-exception-spec.cpp23 template <typename T> struct FooPtr { struct
24 template <typename U> FooPtr(U *p) : m_pT(nullptr) {} in FooPtr() function
30FooPtr(T *pInterface) throw() // expected-warning {{exception specification in declaration does no… in FooPtr() function
36 template struct FooPtr<Bar>; // expected-note {{requested here}} variable
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/test/SemaCXX/
H A Dms-exception-spec.cpp23 template <typename T> struct FooPtr { struct
24 template <typename U> FooPtr(U *p) : m_pT(nullptr) {} in FooPtr() argument
30FooPtr(T *pInterface) throw() // expected-warning {{exception specification in declaration does no… in FooPtr() argument
36 template struct FooPtr<Bar>; // expected-note {{requested here}} argument
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/test/SemaCXX/
H A Dms-exception-spec.cpp23 template <typename T> struct FooPtr { struct
24 template <typename U> FooPtr(U *p) : m_pT(nullptr) {} in FooPtr() argument
30FooPtr(T *pInterface) throw() // expected-warning {{exception specification in declaration does no… in FooPtr() argument
36 template struct FooPtr<Bar>; // expected-note {{requested here}} variable
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang/test/SemaCXX/
H A Dms-exception-spec.cpp23 template <typename T> struct FooPtr { struct
24 template <typename U> FooPtr(U *p) : m_pT(nullptr) {} in FooPtr() argument
30FooPtr(T *pInterface) throw() // expected-warning {{exception specification in declaration does no… in FooPtr() argument
36 template struct FooPtr<Bar>; // expected-note {{requested here}} argument
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/test/SemaCXX/
H A Dms-exception-spec.cpp23 template <typename T> struct FooPtr { struct
24 template <typename U> FooPtr(U *p) : m_pT(nullptr) {} in FooPtr() argument
30FooPtr(T *pInterface) throw() // expected-warning {{exception specification in declaration does no… in FooPtr() function
36 template struct FooPtr<Bar>; // expected-note {{requested here}} variable
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/test/SemaCXX/
H A Dms-exception-spec.cpp23 template <typename T> struct FooPtr { struct
24 template <typename U> FooPtr(U *p) : m_pT(nullptr) {} in FooPtr() argument
30FooPtr(T *pInterface) throw() // expected-warning {{exception specification in declaration does no… in FooPtr() argument
36 template struct FooPtr<Bar>; // expected-note {{requested here}} variable
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang/test/SemaCXX/
H A Dms-exception-spec.cpp23 template <typename T> struct FooPtr { struct
24 template <typename U> FooPtr(U *p) : m_pT(nullptr) {} in FooPtr() argument
30FooPtr(T *pInterface) throw() // expected-warning {{exception specification in declaration does no… in FooPtr() argument
36 template struct FooPtr<Bar>; // expected-note {{requested here}} argument
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang/test/SemaCXX/
H A Dms-exception-spec.cpp23 template <typename T> struct FooPtr { struct
24 template <typename U> FooPtr(U *p) : m_pT(nullptr) {} in FooPtr() argument
30FooPtr(T *pInterface) throw() // expected-warning {{exception specification in declaration does no… in FooPtr() function
36 template struct FooPtr<Bar>; // expected-note {{requested here}} variable
/dports/lang/clang-mesa/clang-13.0.1.src/test/SemaCXX/
H A Dms-exception-spec.cpp23 template <typename T> struct FooPtr { struct
24 template <typename U> FooPtr(U *p) : m_pT(nullptr) {} in FooPtr() function
30FooPtr(T *pInterface) throw() // expected-warning {{exception specification in declaration does no… in FooPtr() function
36 template struct FooPtr<Bar>; // expected-note {{requested here}} argument
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang/test/SemaCXX/
H A Dms-exception-spec.cpp23 template <typename T> struct FooPtr { struct
24 template <typename U> FooPtr(U *p) : m_pT(nullptr) {} in FooPtr() argument
30FooPtr(T *pInterface) throw() // expected-warning {{exception specification in declaration does no… in FooPtr() argument
36 template struct FooPtr<Bar>; // expected-note {{requested here}} argument
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/clang/test/SemaCXX/
H A Dms-exception-spec.cpp23 template <typename T> struct FooPtr { struct
24 template <typename U> FooPtr(U *p) : m_pT(nullptr) {} in FooPtr() function
30FooPtr(T *pInterface) throw() // expected-warning {{exception specification in declaration does no… in FooPtr() function
36 template struct FooPtr<Bar>; // expected-note {{requested here}} variable
/dports/devel/llvm13/llvm-project-13.0.1.src/clang/test/SemaCXX/
H A Dms-exception-spec.cpp23 template <typename T> struct FooPtr { struct
24 template <typename U> FooPtr(U *p) : m_pT(nullptr) {} in FooPtr() argument
30FooPtr(T *pInterface) throw() // expected-warning {{exception specification in declaration does no… in FooPtr() function
36 template struct FooPtr<Bar>; // expected-note {{requested here}} argument

12345