OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:scoped_refptr
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/libjingle/source/talk/base/
scoped_ref_ptr.h
42
//
scoped_refptr
<MyFoo> foo = new MyFoo();
48
//
scoped_refptr
<MyFoo> foo = new MyFoo();
56
// The above examples show how
scoped_refptr
<T> acts like a pointer to T.
57
// Given two
scoped_refptr
<T> classes, it is also possible to exchange
61
//
scoped_refptr
<MyFoo> a = new MyFoo();
62
//
scoped_refptr
<MyFoo> b;
72
//
scoped_refptr
<MyFoo> a = new MyFoo();
73
//
scoped_refptr
<MyFoo> b;
86
class
scoped_refptr
{
class in namespace:talk_base
88
scoped_refptr
() : ptr_(NULL)
function in class:talk_base::scoped_refptr
91
scoped_refptr
(T* p) : ptr_(p) {
function in class:talk_base::scoped_refptr
96
scoped_refptr
(const
scoped_refptr
<T>& r) : ptr_(r.ptr_) {
function in class:talk_base::scoped_refptr
102
scoped_refptr
(const
scoped_refptr
<U>& r) : ptr_(r.get()) {
function in class:talk_base::scoped_refptr
[
all
...]
/external/webrtc/src/system_wrappers/interface/
scoped_refptr.h
24
//
scoped_refptr
<MyFoo> foo = new MyFoo();
30
//
scoped_refptr
<MyFoo> foo = new MyFoo();
38
// The above examples show how
scoped_refptr
<T> acts like a pointer to T.
39
// Given two
scoped_refptr
<T> classes, it is also possible to exchange
43
//
scoped_refptr
<MyFoo> a = new MyFoo();
44
//
scoped_refptr
<MyFoo> b;
54
//
scoped_refptr
<MyFoo> a = new MyFoo();
55
//
scoped_refptr
<MyFoo> b;
62
class
scoped_refptr
{
class in namespace:webrtc
64
scoped_refptr
() : ptr_(NULL)
function in class:webrtc::scoped_refptr
67
scoped_refptr
(T* p) : ptr_(p) {
function in class:webrtc::scoped_refptr
72
scoped_refptr
(const
scoped_refptr
<T>& r) : ptr_(r.ptr_) {
function in class:webrtc::scoped_refptr
78
scoped_refptr
(const
scoped_refptr
<U>& r) : ptr_(r.get()) {
function in class:webrtc::scoped_refptr
[
all
...]
/external/chromium/base/memory/
ref_counted.h
180
//
scoped_refptr
<MyFoo> foo = new MyFoo();
186
//
scoped_refptr
<MyFoo> foo = new MyFoo();
194
// The above examples show how
scoped_refptr
<T> acts like a pointer to T.
195
// Given two
scoped_refptr
<T> classes, it is also possible to exchange
199
//
scoped_refptr
<MyFoo> a = new MyFoo();
200
//
scoped_refptr
<MyFoo> b;
210
//
scoped_refptr
<MyFoo> a = new MyFoo();
211
//
scoped_refptr
<MyFoo> b;
218
class
scoped_refptr
{
class
220
scoped_refptr
() : ptr_(NULL)
function in class:scoped_refptr
223
scoped_refptr
(T* p) : ptr_(p) {
function in class:scoped_refptr
228
scoped_refptr
(const
scoped_refptr
<T>& r) : ptr_(r.ptr_) {
function in class:scoped_refptr
234
scoped_refptr
(const
scoped_refptr
<U>& r) : ptr_(r.get()) {
function in class:scoped_refptr
[
all
...]
/external/chromium_org/base/memory/
ref_counted.h
187
//
scoped_refptr
<MyFoo> foo = new MyFoo();
193
//
scoped_refptr
<MyFoo> foo = new MyFoo();
201
// The above examples show how
scoped_refptr
<T> acts like a pointer to T.
202
// Given two
scoped_refptr
<T> classes, it is also possible to exchange
206
//
scoped_refptr
<MyFoo> a = new MyFoo();
207
//
scoped_refptr
<MyFoo> b;
217
//
scoped_refptr
<MyFoo> a = new MyFoo();
218
//
scoped_refptr
<MyFoo> b;
225
class
scoped_refptr
{
class
229
scoped_refptr
() : ptr_(NULL)
function in class:scoped_refptr
232
scoped_refptr
(T* p) : ptr_(p) {
function in class:scoped_refptr
237
scoped_refptr
(const
scoped_refptr
<T>& r) : ptr_(r.ptr_) {
function in class:scoped_refptr
243
scoped_refptr
(const
scoped_refptr
<U>& r) : ptr_(r.get()) {
function in class:scoped_refptr
[
all
...]
Completed in 1045 milliseconds