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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
local-returned-as-raw-expected.cc 5 #include "scoped_refptr.h"
13 scoped_refptr<Foo> GetBuggyFoo();
15 scoped_refptr<Foo> GetBuggyFoo() {
16 scoped_refptr<Foo> unsafe(new Foo);
scoped_refptr.h 8 // Stub scoped_refptr<T> class that supports an implicit cast to T*.
10 class scoped_refptr { class
13 scoped_refptr() : ptr_(0) {} function in class:scoped_refptr
14 scoped_refptr(T* p) : ptr_(p) {} function in class:scoped_refptr
15 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) {} function in class:scoped_refptr
18 scoped_refptr(const scoped_refptr<U>& r) function in class:scoped_refptr
21 ~scoped_refptr() {}
27 scoped_refptr<T>& operator=(T* p)
    [all...]
temp-returned-as-raw-expected.cc 12 scoped_refptr<Foo> TestFunction();
15 scoped_refptr<Foo> CreateFoo();
17 // An example of an unsafe conversion--the scoped_refptr will be destroyed by
20 scoped_refptr<Foo> Bar::TestFunction() {
test6-expected.cc 5 #include "scoped_refptr.h"
15 // Ensure that scoped_refptr<A> -> scoped_refptr<B> conversions are not
17 void ExpectsScopedPtr(const scoped_refptr<Foo>& foo) {
18 scoped_refptr<Foo> temp(foo);
22 scoped_refptr<Bar> temp(new Bar);
test6-original.cc 5 #include "scoped_refptr.h"
15 // Ensure that scoped_refptr<A> -> scoped_refptr<B> conversions are not
17 void ExpectsScopedPtr(const scoped_refptr<Foo>& foo) {
18 scoped_refptr<Foo> temp(foo);
22 scoped_refptr<Bar> temp(new Bar);
temp-assigned-to-field-init-expected.cc 5 #include "scoped_refptr.h"
12 scoped_refptr<Foo> GetBuggyFoo() {
18 scoped_refptr<Foo> f_;
temp-assigned-to-raw-var-expected.cc 5 #include "scoped_refptr.h"
11 // Case 2: An example of an unsafe conversion, where the scoped_refptr<> is
14 scoped_refptr<Foo> GetBuggyFoo() {
18 scoped_refptr<Foo> unsafe = GetBuggyFoo();
temp-bool-test-expected.cc 5 #include "scoped_refptr.h"
11 // A temporary scoped_refptr<T> is used in a boolean test. This doesn't result
14 scoped_refptr<Foo> GetBuggyFoo() {
temp-bool-test-original.cc 5 #include "scoped_refptr.h"
11 // A temporary scoped_refptr<T> is used in a boolean test. This doesn't result
14 scoped_refptr<Foo> GetBuggyFoo() {
test10-original.cc 5 #include "scoped_refptr.h"
12 scoped_refptr<Foo> foo(new Foo);
  /external/chromium_org/remoting/host/
chromoting_host_context.h 31 scoped_refptr<AutoThreadTaskRunner> ui_task_runner);
34 scoped_refptr<AutoThreadTaskRunner> audio_task_runner();
39 scoped_refptr<AutoThreadTaskRunner> file_task_runner();
45 scoped_refptr<AutoThreadTaskRunner> input_task_runner();
50 scoped_refptr<AutoThreadTaskRunner> network_task_runner();
53 scoped_refptr<AutoThreadTaskRunner> ui_task_runner();
57 scoped_refptr<AutoThreadTaskRunner> video_capture_task_runner();
60 scoped_refptr<AutoThreadTaskRunner> video_encode_task_runner();
62 scoped_refptr<net::URLRequestContextGetter> url_request_context_getter();
68 scoped_refptr<AutoThreadTaskRunner> audio_task_runner_
    [all...]
basic_desktop_environment.h 48 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
49 scoped_refptr<base::SingleThreadTaskRunner> input_task_runner,
50 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner);
52 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner() const {
56 scoped_refptr<base::SingleThreadTaskRunner> input_task_runner() const {
60 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner() const {
71 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner_;
74 scoped_refptr<base::SingleThreadTaskRunner> input_task_runner_;
77 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_;
93 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner
    [all...]
  /external/chromium_org/sync/api/
syncable_service.cc 11 scoped_refptr<AttachmentStore> SyncableService::GetAttachmentStore() {
12 return scoped_refptr<AttachmentStore>();
  /external/chromium_org/base/
thread_task_runner_handle.h 22 static scoped_refptr<SingleThreadTaskRunner> Get();
31 const scoped_refptr<SingleThreadTaskRunner>& task_runner);
35 scoped_refptr<SingleThreadTaskRunner> task_runner_;
  /external/chromium_org/components/webdata/common/
web_data_service_test_util.h 31 scoped_refptr<autofill::AutofillWebDataService> fake_autofill,
32 scoped_refptr<TokenWebData> fake_token);
36 virtual scoped_refptr<autofill::AutofillWebDataService>
39 virtual scoped_refptr<TokenWebData> GetTokenWebData() OVERRIDE;
42 scoped_refptr<autofill::AutofillWebDataService> fake_autofill_web_data_;
43 scoped_refptr<TokenWebData> fake_token_web_data_;
web_data_service_test_util.cc 24 scoped_refptr<AutofillWebDataService> fake_autofill,
25 scoped_refptr<TokenWebData> fake_token)
33 scoped_refptr<AutofillWebDataService>
38 scoped_refptr<TokenWebData> MockWebDataServiceWrapper::GetTokenWebData() {
  /external/chromium_org/content/browser/devtools/
devtools_power_handler.h 28 scoped_refptr<DevToolsProtocol::Response> OnStart(
29 scoped_refptr<DevToolsProtocol::Command> command);
30 scoped_refptr<DevToolsProtocol::Response> OnEnd(
31 scoped_refptr<DevToolsProtocol::Command> command);
32 scoped_refptr<DevToolsProtocol::Response> OnCanProfilePower(
33 scoped_refptr<DevToolsProtocol::Command> command);
34 scoped_refptr<DevToolsProtocol::Response> OnGetAccuracyLevel(
35 scoped_refptr<DevToolsProtocol::Command> command);
renderer_overrides_handler.h 56 scoped_refptr<DevToolsProtocol::Response>
58 scoped_refptr<DevToolsProtocol::Command> command);
61 scoped_refptr<DevToolsProtocol::Response> CanEmulateNetworkConditions(
62 scoped_refptr<DevToolsProtocol::Command> command);
63 scoped_refptr<DevToolsProtocol::Response> ClearBrowserCache(
64 scoped_refptr<DevToolsProtocol::Command> command);
65 scoped_refptr<DevToolsProtocol::Response> ClearBrowserCookies(
66 scoped_refptr<DevToolsProtocol::Command> command);
69 scoped_refptr<DevToolsProtocol::Response> PageEnable(
70 scoped_refptr<DevToolsProtocol::Command> command)
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_pending_connection.h 21 scoped_refptr<IndexedDBCallbacks> callbacks_in,
22 scoped_refptr<IndexedDBDatabaseCallbacks> database_callbacks_in,
27 scoped_refptr<IndexedDBCallbacks> callbacks;
28 scoped_refptr<IndexedDBDatabaseCallbacks> database_callbacks;
  /external/chromium_org/media/blink/
webmediaplayer_params.h 41 const scoped_refptr<AudioRendererSink>& audio_renderer_sink,
43 const scoped_refptr<MediaLog>& media_log,
44 const scoped_refptr<GpuVideoAcceleratorFactories>& gpu_factories,
45 const scoped_refptr<base::SingleThreadTaskRunner>& media_task_runner,
46 const scoped_refptr<base::SingleThreadTaskRunner>& compositor_task_runner,
57 const scoped_refptr<AudioRendererSink>& audio_renderer_sink() const {
65 const scoped_refptr<MediaLog>& media_log() const {
69 const scoped_refptr<GpuVideoAcceleratorFactories>&
74 const scoped_refptr<base::SingleThreadTaskRunner>&
79 const scoped_refptr<base::SingleThreadTaskRunner>
    [all...]
  /external/chromium_org/third_party/webrtc/base/
scoped_ref_ptr.h 25 // scoped_refptr<MyFoo> foo = new MyFoo();
31 // scoped_refptr<MyFoo> foo = new MyFoo();
39 // The above examples show how scoped_refptr<T> acts like a pointer to T.
40 // Given two scoped_refptr<T> classes, it is also possible to exchange
44 // scoped_refptr<MyFoo> a = new MyFoo();
45 // scoped_refptr<MyFoo> b;
55 // scoped_refptr<MyFoo> a = new MyFoo();
56 // scoped_refptr<MyFoo> b;
71 class scoped_refptr { class in namespace:rtc
73 scoped_refptr() : ptr_(NULL) function in class:rtc::scoped_refptr
76 scoped_refptr(T* p) : ptr_(p) { function in class:rtc::scoped_refptr
81 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { function in class:rtc::scoped_refptr
87 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { function in class:rtc::scoped_refptr
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
scoped_refptr.h 31 // scoped_refptr<MyFoo> foo = new MyFoo();
37 // scoped_refptr<MyFoo> foo = new MyFoo();
45 // The above examples show how scoped_refptr<T> acts like a pointer to T.
46 // Given two scoped_refptr<T> classes, it is also possible to exchange
50 // scoped_refptr<MyFoo> a = new MyFoo();
51 // scoped_refptr<MyFoo> b;
61 // scoped_refptr<MyFoo> a = new MyFoo();
62 // scoped_refptr<MyFoo> b;
69 class scoped_refptr { class in namespace:webrtc
71 scoped_refptr() : ptr_(NULL) function in class:webrtc::scoped_refptr
74 scoped_refptr(T* p) : ptr_(p) { function in class:webrtc::scoped_refptr
79 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { function in class:webrtc::scoped_refptr
85 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { function in class:webrtc::scoped_refptr
    [all...]
  /external/chromium_org/chrome/browser/webdata/
web_data_service_factory.h 40 virtual scoped_refptr<autofill::AutofillWebDataService> GetAutofillWebData();
42 virtual scoped_refptr<KeywordWebDataService> GetKeywordWebData();
44 virtual scoped_refptr<TokenWebData> GetTokenWebData();
47 virtual scoped_refptr<PasswordWebDataService> GetPasswordWebData();
51 scoped_refptr<WebDatabaseService> web_database_;
53 scoped_refptr<autofill::AutofillWebDataService> autofill_web_data_;
54 scoped_refptr<KeywordWebDataService> keyword_web_data_;
55 scoped_refptr<TokenWebData> token_web_data_;
58 scoped_refptr<PasswordWebDataService> password_web_data_;
78 static scoped_refptr<autofill::AutofillWebDataService
    [all...]
  /external/chromium_org/chrome/common/extensions/manifest_tests/
extension_manifests_dummy_unittest.cc 10 scoped_refptr<Extension> extension =
16 scoped_refptr<Extension> extension =
  /external/chromium_org/chromecast/media/cma/ipc_streamer/
decoder_buffer_base_marshaller.h 20 const scoped_refptr<DecoderBufferBase>& buffer, MediaMessage* msg);
23 static scoped_refptr<DecoderBufferBase> Read(scoped_ptr<MediaMessage> msg);

Completed in 525 milliseconds

1 2 3 4 5 6 7 8 91011>>