Searched refs:obj_ (Results 1 – 14 of 14) sorted by relevance
/external/chromium/base/ |
D | task.h | 149 : 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 …]
|
D | bind_helpers.h | 185 explicit UnretainedWrapper(T* o) : obj_(o) {} 186 T* get() { return obj_; } 188 T* obj_;
|
D | callback_old.h | 59 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()
|
D | bind_internal.h.pump | 55 // other is invoked (*obj_->method_ptr(arg1)).
|
/external/chromium/base/memory/ |
D | scoped_callback_factory.h | 103 : 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/ |
D | liveobjectlist.cc | 392 return elements_[index_].obj_; in Obj() 946 HeapObject* heap_obj = elements[i].obj_; in GetTotalObjCountAndSize() 977 element.obj_ = obj; in Add() 984 const HeapObject* obj1 = a->obj_; in CompareElement() 985 const HeapObject* obj2 = b->obj_; in CompareElement() 999 key.obj_ = obj; in Find() 1021 key.obj_ = obj; in NullifyMostRecent() 1042 HeapObject* curr_obj = element->obj_; in NullifyMostRecent() 1050 NullifyNonLivePointer(&result->obj_); in NullifyMostRecent() 1619 return Object::cast(element->obj_); in GetObj() [all …]
|
D | liveobjectlist-inl.h | 118 return element->obj_; in GetElementObj()
|
D | api.h | 74 return obj_.value(); in value() 86 NeanderObject obj_; 100 : obj_(obj) { } in NeanderArray()
|
D | liveobjectlist.h | 120 HeapObject* obj_; member
|
D | ast.h | 1200 : obj_(obj), in obj_() function 1217 Expression* obj() const { return obj_; } in obj() 1243 Expression* obj_;
|
D | api.cc | 684 NeanderArray::NeanderArray() : obj_(2) { in NeanderArray() 685 obj_.set(0, i::Smi::FromInt(0)); in NeanderArray() 690 return i::Smi::cast(obj_.get(0))->value(); in length() 697 return obj_.get(offset + 1); in get() 708 int size = obj_.size(); in add() 713 obj_.value()->set_elements(*new_elms); in add() 715 obj_.set(length + 1, *value); in add() 716 obj_.set(0, i::Smi::FromInt(length + 1)); in add() 722 obj_.set(index + 1, value); in set()
|
/external/chromium/net/http/ |
D | disk_cache_based_ssl_host_info.cc | 19 : obj_(obj), in CallbackImpl() 29 if (!obj_) { in RunWithParams() 32 DispatchToMethod(obj_.get(), meth_, params); in RunWithParams()
|
D | disk_cache_based_ssl_host_info.h | 71 base::WeakPtr<DiskCacheBasedSSLHostInfo> obj_;
|
/external/chromium/testing/ |
D | gmock_mutant.h | 921 : 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
|