Home
last modified time | relevance | path

Searched refs:obj_ (Results 1 – 15 of 15) sorted by relevance

/external/chromium/base/
Dtask.h149 : obj_(obj), in RunnableMethod()
158 if (obj_) in Run()
159 DispatchToMethod(obj_.get(), meth_, params_); in Run()
163 obj_.reset(); in Cancel()
167 base::WeakPtr<T> obj_;
184 explicit DeleteTask(const T* obj) : obj_(obj) { in DeleteTask()
187 delete obj_; in Run() local
190 obj_ = NULL; in Cancel()
194 const T* obj_;
201 explicit ReleaseTask(const T* obj) : obj_(obj) { in ReleaseTask()
[all …]
Dbind_helpers.h185 explicit UnretainedWrapper(T* o) : obj_(o) {}
186 T* get() { return obj_; }
188 T* obj_;
Dcallback_old.h59 CallbackStorage(T* obj, Method meth) : obj_(obj), meth_(meth) { in CallbackStorage()
63 T* obj_;
119 DispatchToMethod(this->obj_, this->meth_, params); in RunWithParams()
240 return (this->obj_->*(this->meth_))(); in Run()
Dbind_internal.h.pump55 // other is invoked (*obj_->method_ptr(arg1)).
/external/chromium/base/memory/
Dscoped_callback_factory.h103 : obj_(obj), in CallbackStorage()
108 WeakPtr<T> obj_;
122 if (!this->obj_) in RunWithParams()
124 DispatchToMethod(this->obj_.get(), this->meth_, params); in RunWithParams()
/external/v8/src/
Dliveobjectlist.cc394 return elements_[index_].obj_; in Obj()
953 HeapObject* heap_obj = elements[i].obj_; in GetTotalObjCountAndSize()
984 element.obj_ = obj; in Add()
991 const HeapObject* obj1 = a->obj_; in CompareElement()
992 const HeapObject* obj2 = b->obj_; in CompareElement()
1006 key.obj_ = obj; in Find()
1028 key.obj_ = obj; in NullifyMostRecent()
1049 HeapObject* curr_obj = element->obj_; in NullifyMostRecent()
1057 NullifyNonLivePointer(&result->obj_); in NullifyMostRecent()
1645 return Object::cast(element->obj_); in GetObj()
[all …]
Dliveobjectlist-inl.h118 return element->obj_; in GetElementObj()
Dapi.h78 return obj_.value(); in value()
90 NeanderObject obj_;
104 : obj_(obj) { } in NeanderArray()
Dliveobjectlist.h119 HeapObject* obj_; member
Dheap.h339 *target = e.obj_; in remove()
369 Entry(HeapObject* obj, int size) : obj_(obj), size_(size) { } in Entry()
371 HeapObject* obj_; member
Dapi.cc834 NeanderArray::NeanderArray() : obj_(2) { in NeanderArray()
835 obj_.set(0, i::Smi::FromInt(0)); in NeanderArray()
840 return i::Smi::cast(obj_.get(0))->value(); in length()
847 return obj_.get(offset + 1); in get()
858 int size = obj_.size(); in add()
863 obj_.value()->set_elements(*new_elms); in add()
865 obj_.set(length + 1, *value); in add()
866 obj_.set(0, i::Smi::FromInt(length + 1)); in add()
872 obj_.set(index + 1, value); in set()
Dast.h1517 Expression* obj() const { return obj_; } in obj()
1540 obj_(obj), in Property()
1551 Expression* obj_;
/external/chromium/net/http/
Ddisk_cache_based_ssl_host_info.cc19 : obj_(obj), in CallbackImpl()
29 if (!obj_) { in RunWithParams()
32 DispatchToMethod(obj_.get(), meth_, params); in RunWithParams()
Ddisk_cache_based_ssl_host_info.h71 base::WeakPtr<DiskCacheBasedSSLHostInfo> obj_;
/external/chromium/testing/
Dgmock_mutant.h921 : obj_(obj), method_(method), pb_(pb) { in Mutant()
926 return DispatchToMethod<R>(this->obj_, this->method_, pb_, params); in RunWithParams()
929 T* obj_; variable
959 : obj_(obj), method_(method), pb_(pb) { in MutantLateObjectBind()
964 EXPECT_THAT(*this->obj_, testing::NotNull()); in RunWithParams()
965 if (NULL == *this->obj_) in RunWithParams()
967 return DispatchToMethod<R>( *this->obj_, this->method_, pb_, params); in RunWithParams()
970 T** obj_; variable