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

1 2 3 4 5 6 7 8

  /external/chromium_org/base/files/
file_path_watcher_mac.cc 22 DCHECK(!impl_.get());
27 impl_ = new FilePathWatcherFSEvents();
30 impl_ = new FilePathWatcherKQueue();
32 DCHECK(impl_.get());
33 return impl_->Watch(path, recursive, callback);
37 if (impl_.get())
38 impl_->Cancel();
43 if (impl_.get())
44 impl_->Cancel();
51 scoped_refptr<PlatformDelegate> impl_; member in class:base::__anon6878::FilePathWatcherImpl
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portproxy.cc 33 impl_ = port;
34 impl_->SignalUnknownAddress.connect(
36 impl_->SignalDestroyed.connect(this, &PortProxy::OnPortDestroyed);
37 impl_->SignalRoleConflict.connect(this, &PortProxy::OnRoleConflict);
41 ASSERT(impl_ != NULL);
42 return impl_->Type();
46 ASSERT(impl_ != NULL);
47 return impl_->Network();
51 ASSERT(impl_ != NULL);
52 impl_->SetIceProtocolType(protocol)
    [all...]
transportchannelproxy.cc 46 impl_(NULL) {
53 if (impl_)
54 impl_->GetTransport()->DestroyChannel(impl_->component());
60 if (impl == impl_) {
67 // Destroy any existing impl_.
68 if (impl_) {
69 impl_->GetTransport()->DestroyChannel(impl_->component());
73 impl_ = impl
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
logger.cc 24 Logger* Logger::impl_ = NULL; member in class:i18n::phonenumbers::Logger
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_factory_ozone.cc 12 DesktopFactoryOzone* DesktopFactoryOzone::impl_ = NULL; member in class:views::DesktopFactoryOzone
21 CHECK(impl_) << "DesktopFactoryOzone accessed before constructed";
22 return impl_;
26 impl_ = impl;
  /external/chromium_org/ui/views/controls/menu/
menu_runner_impl_adapter.cc 15 impl_(new MenuRunnerImpl(menu_model_adapter_->CreateMenu())) {
19 return impl_->IsRunning();
23 impl_->Release();
33 return impl_->RunMenuAt(parent, button, bounds, anchor, types);
37 impl_->Cancel();
41 return impl_->GetClosingEventTime();
  /external/chromium_org/sdch/open-vcdiff/src/google/
output_string.h 68 explicit OutputString(StringClass* impl) : impl_(impl) { }
73 impl_->append(s, n);
78 impl_->clear();
82 impl_->push_back(c);
86 impl_->reserve(impl_->size() + res_arg);
90 return impl_->size();
94 StringClass* impl_; member in class:open_vcdiff::OutputString
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_thread.c 37 pthread_mutex_lock(&worker->impl_->mutex_);
39 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
48 pthread_cond_signal(&worker->impl_->condition_);
49 pthread_mutex_unlock(&worker->impl_->mutex_);
60 if (worker->impl_ == NULL) return;
62 pthread_mutex_lock(&worker->impl_->mutex_);
66 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
71 pthread_cond_signal(&worker->impl_->condition_)
    [all...]
  /external/chromium_org/ui/gfx/
font_list.cc 26 FontList::FontList() : impl_(GetDefaultImpl()) {}
28 FontList::FontList(const FontList& other) : impl_(other.impl_) {}
31 : impl_(new FontListImpl(font_description_string)) {}
36 : impl_(new FontListImpl(font_names, font_style, font_size)) {}
39 : impl_(new FontListImpl(fonts)) {}
41 FontList::FontList(const Font& font) : impl_(new FontListImpl(font)) {}
46 impl_ = other.impl_;
62 return FontList(impl_->Derive(size_delta, font_style))
    [all...]
  /external/chromium_org/ui/ozone/public/
cursor_factory_ozone.cc 12 CursorFactoryOzone* CursorFactoryOzone::impl_ = NULL; member in class:ui::CursorFactoryOzone
15 DCHECK(!impl_) << "There should only be a single CursorFactoryOzone.";
16 impl_ = this;
20 DCHECK_EQ(impl_, this);
21 impl_ = NULL;
25 DCHECK(impl_) << "No CursorFactoryOzone implementation set.";
26 return impl_;
  /external/openfst/src/include/fst/script/
weight-class.h 79 WeightClass() : element_type_(ZERO), impl_(0) { }
83 : element_type_(OTHER), impl_(new WeightClassImpl<W>(weight)) { }
89 impl_(other.impl_ ? other.impl_->Copy() : 0) { }
92 if (impl_) delete impl_;
93 impl_ = other.impl_ ? other.impl_->Copy() : 0
143 WeightImplBase *impl_; member in class:fst::script::WeightClass
    [all...]
fst-class.h 83 impl_(should_own ? impl : impl->Copy()) { }
85 explicit FstClassImpl(const Fst<Arc> &impl) : impl_(impl.Copy()) { }
92 return impl_->Type();
100 return impl_->InputSymbols();
104 return impl_->OutputSymbols();
109 static_cast<MutableFst<Arc> *>(impl_)->SetInputSymbols(is);
114 static_cast<MutableFst<Arc> *>(impl_)->SetOutputSymbols(os);
118 return impl_->Write(fname);
122 return impl_->Write(ostr, opts);
126 return impl_->Properties(mask, test)
140 Fst<Arc> *impl_; member in class:fst::script::FstClassImpl
271 FstClassImplBase *impl_; member in class:fst::script::FstClass
    [all...]
  /external/chromium_org/net/http/
http_server_properties_impl_unittest.cc 30 HttpServerPropertiesImpl impl_; member in class:net::__anon13940::HttpServerPropertiesImplTest
45 impl_.InitializeSpdyServers(NULL, true);
46 EXPECT_FALSE(impl_.SupportsSpdy(spdy_server_google));
50 impl_.InitializeSpdyServers(&spdy_servers, true);
51 EXPECT_FALSE(impl_.SupportsSpdy(spdy_server_google));
56 impl_.InitializeSpdyServers(&spdy_servers1, true);
57 EXPECT_TRUE(impl_.SupportsSpdy(spdy_server_google));
64 impl_.InitializeSpdyServers(&spdy_servers2, true);
68 impl_.GetSpdyServerList(&spdy_server_list, kMaxSupportsSpdyServerHosts);
76 EXPECT_TRUE(impl_.SupportsSpdy(spdy_server_google))
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/util/
scoped_ptr.h 217 scoped_ptr() : impl_(NULL) { }
220 explicit scoped_ptr(element_type* p) : impl_(p) { }
223 scoped_ptr(element_type* p, const D& d) : impl_(p, d) { }
236 scoped_ptr(scoped_ptr<U, V> other) : impl_(&other.impl_) {
253 impl_.TakeState(&rhs.impl_);
259 void reset(element_type* p = NULL) { impl_.reset(p); }
264 assert(impl_.get() != NULL);
265 return *impl_.get()
308 scoped_ptr_impl<element_type, deleter_type> impl_; member in class:i18n::addressinput::scoped_ptr
394 scoped_ptr_impl<element_type, deleter_type> impl_; member in class:i18n::addressinput::scoped_ptr
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/memory/
scoped_ptr.h 222 scoped_ptr() : impl_(NULL) { }
225 explicit scoped_ptr(element_type* p) : impl_(p) { }
228 scoped_ptr(element_type* p, const D& d) : impl_(p, d) { }
241 scoped_ptr(scoped_ptr<U, V> other) : impl_(&other.impl_) {
258 impl_.TakeState(&rhs.impl_);
264 void reset(element_type* p = NULL) { impl_.reset(p); }
269 assert(impl_.get() != NULL);
270 return *impl_.get()
313 scoped_ptr_impl<element_type, deleter_type> impl_; member in class:i18n::phonenumbers::scoped_ptr
399 scoped_ptr_impl<element_type, deleter_type> impl_; member in class:i18n::phonenumbers::scoped_ptr
    [all...]
  /external/chromium_org/third_party/webrtc/base/
scoped_ptr.h 320 scoped_ptr() : impl_(NULL) { }
323 explicit scoped_ptr(element_type* p) : impl_(p) { }
326 scoped_ptr(element_type* p, const D& d) : impl_(p, d) { }
339 scoped_ptr(scoped_ptr<U, V> other) : impl_(&other.impl_) {
344 scoped_ptr(RValue rvalue) : impl_(&rvalue.object->impl_) { }
359 impl_.TakeState(&rhs.impl_);
365 void reset(element_type* p = NULL) { impl_.reset(p);
442 rtc::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:rtc::scoped_ptr
554 rtc::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:rtc::scoped_ptr
    [all...]
  /external/ceres-solver/internal/ceres/
covariance.cc 42 impl_.reset(new internal::CovarianceImpl(options));
51 return impl_->Compute(covariance_blocks, problem->problem_impl_.get());
57 return impl_->GetCovarianceBlock(parameter_block1,
  /external/chromium_org/content/browser/geolocation/
wifi_data_provider_manager.cc 66 impl_ = (*factory_function_)();
67 DCHECK(impl_.get());
71 DCHECK(impl_.get());
75 return impl_->GetData(data);
79 impl_->AddCallback(callback);
83 return impl_->RemoveCallback(callback);
87 return impl_->has_callbacks();
91 impl_->StartDataProvider();
95 impl_->StopDataProvider();
  /external/chromium_org/mojo/public/cpp/bindings/lib/
shared_ptr.h 22 impl_.mutable_value()->ptr = ptr;
28 return impl_.value().ptr;
31 return impl_.value().ptr;
57 SharedData<Impl> impl_; member in class:mojo::internal::SharedPtr
  /external/chromium_org/base/memory/
scoped_ptr.h 322 scoped_ptr() : impl_(NULL) { }
325 explicit scoped_ptr(element_type* p) : impl_(p) { }
328 scoped_ptr(element_type* p, const D& d) : impl_(p, d) { }
341 scoped_ptr(scoped_ptr<U, V> other) : impl_(&other.impl_) {
346 scoped_ptr(RValue rvalue) : impl_(&rvalue.object->impl_) { }
361 impl_.TakeState(&rhs.impl_);
367 void reset(element_type* p = NULL) { impl_.reset(p);
433 base::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:scoped_ptr
534 base::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:scoped_ptr
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
scoped_ptr.h 313 scoped_ptr() : impl_(NULL) { }
316 explicit scoped_ptr(element_type* p) : impl_(p) { }
319 scoped_ptr(element_type* p, const D& d) : impl_(p, d) { }
332 scoped_ptr(scoped_ptr<U, V> other) : impl_(&other.impl_) {
337 scoped_ptr(RValue rvalue) : impl_(&rvalue.object->impl_) { }
352 impl_.TakeState(&rhs.impl_);
358 void reset(element_type* p = NULL) { impl_.reset(p);
424 webrtc::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:webrtc::scoped_ptr
525 webrtc::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:webrtc::scoped_ptr
    [all...]
  /external/chromium_org/third_party/libwebp/utils/
thread.c 162 pthread_mutex_lock(&worker->impl_->mutex_);
164 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
173 pthread_cond_signal(&worker->impl_->condition_);
174 pthread_mutex_unlock(&worker->impl_->mutex_);
185 if (worker->impl_ == NULL) return;
187 pthread_mutex_lock(&worker->impl_->mutex_);
191 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
196 pthread_cond_signal(&worker->impl_->condition_)
    [all...]
  /external/webp/src/utils/
thread.c 162 pthread_mutex_lock(&worker->impl_->mutex_);
164 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
173 pthread_cond_signal(&worker->impl_->condition_);
174 pthread_mutex_unlock(&worker->impl_->mutex_);
185 if (worker->impl_ == NULL) return;
187 pthread_mutex_lock(&worker->impl_->mutex_);
191 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
196 pthread_cond_signal(&worker->impl_->condition_)
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
symbol-table.h 161 SymbolTable(const string& name) : impl_(new SymbolTableImpl(name)) {}
164 SymbolTable(const SymbolTable& table) : impl_(table.impl_) {
165 impl_->IncrRefCount();
171 if (!impl_->DecrRefCount()) delete impl_;
188 return impl_->AddSymbol(symbol, key);
197 return impl_->AddSymbol(symbol);
211 return impl_->AddTable(table.impl_);
313 SymbolTableImpl* impl_; member in class:fst::SymbolTable
365 const SymbolTableImpl* impl_; member in class:fst::SymbolTableIterator
    [all...]
  /external/chromium_org/content/public/test/
test_browser_thread.cc 48 : impl_(new TestBrowserThreadImpl(identifier)) {
53 : impl_(new TestBrowserThreadImpl(identifier, message_loop)) {}
60 return impl_->Start();
66 return impl_->StartWithOptions(options);
70 impl_->Stop();
74 return impl_->IsRunning();
78 return impl_.get();

Completed in 668 milliseconds

1 2 3 4 5 6 7 8