Searched refs:refs_ (Results 1 - 25 of 36) sorted by relevance

12

/external/chromium_org/third_party/leveldatabase/src/db/
H A Dmemtable.h27 void Ref() { ++refs_; }
31 --refs_;
32 assert(refs_ >= 0);
33 if (refs_ <= 0) {
80 int refs_; member in class:leveldb::MemTable
H A Dmemtable.cc23 refs_(0),
28 assert(refs_ == 0);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1081309.js39 this.refs_ = [];
42 this.refs_[this.response_.refs[i].handle] = this.response_.refs[i];
59 return this.refs_[handle];
/external/v8/test/mjsunit/regress/
H A Dregress-1081309.js39 this.refs_ = [];
42 this.refs_[this.response_.refs[i].handle] = this.response_.refs[i];
59 return this.refs_[handle];
/external/chromium_org/v8/test/mjsunit/
H A Dmirror-error.js33 this.refs_ = [];
35 this.refs_[tmp[i].handle] = tmp[i];
40 return this.refs_[handle];
H A Dmirror-function.js33 this.refs_ = [];
35 this.refs_[tmp[i].handle] = tmp[i];
40 return this.refs_[handle];
H A Dmirror-unresolved-function.js33 this.refs_ = [];
35 this.refs_[tmp[i].handle] = tmp[i];
40 return this.refs_[handle];
H A Ddebug-return-value.js35 this.refs_ = [];
38 this.refs_[this.response_.refs[i].handle] = this.response_.refs[i];
60 return this.refs_[handle];
H A Dmirror-regexp.js44 this.refs_ = [];
46 this.refs_[tmp[i].handle] = tmp[i];
51 return this.refs_[handle];
H A Dmirror-array.js33 this.refs_ = [];
35 this.refs_[tmp[i].handle] = tmp[i];
40 return this.refs_[handle];
H A Ddebug-backtrace.js53 this.refs_ = [];
56 this.refs_[this.response_.refs[i].handle] = this.response_.refs[i];
78 return this.refs_[handle];
/external/v8/test/mjsunit/
H A Dmirror-error.js33 this.refs_ = [];
35 this.refs_[tmp[i].handle] = tmp[i];
40 return this.refs_[handle];
H A Dmirror-function.js33 this.refs_ = [];
35 this.refs_[tmp[i].handle] = tmp[i];
40 return this.refs_[handle];
H A Dmirror-unresolved-function.js33 this.refs_ = [];
35 this.refs_[tmp[i].handle] = tmp[i];
40 return this.refs_[handle];
H A Ddebug-return-value.js35 this.refs_ = [];
38 this.refs_[this.response_.refs[i].handle] = this.response_.refs[i];
60 return this.refs_[handle];
H A Dmirror-regexp.js44 this.refs_ = [];
46 this.refs_[tmp[i].handle] = tmp[i];
51 return this.refs_[handle];
H A Dmirror-array.js33 this.refs_ = [];
35 this.refs_[tmp[i].handle] = tmp[i];
40 return this.refs_[handle];
/external/chromium_org/courgette/
H A Dadjustment_method.cc47 uint32 refs_; // Number of times this Label is referenced. member in class:courgette::LabelInfo
61 : label_(NULL), is_model_(false), debug_index_(0), refs_(0),
86 base::StringAppendF(&s, " #%u", info->refs_);
372 if (m_info_next->refs_ != p_info_next->refs_) {
381 if (p_info_next->refs_ == m_info_next->refs_ &&
382 p_info_next->refs_ == 1) {
411 if (m_info_prev->refs_ != p_info_prev->refs_) {
[all...]
/external/v8/test/cctest/
H A Dtest-threads.cc148 refs_(refs), thread_no_(thread_no), thread_to_start_(thread_to_start),
155 CHECK(!(*refs_)[i].Equals(thread_id));
158 (*refs_)[thread_no_] = thread_id;
166 i::List<i::ThreadId>* refs_; member in class:ThreadIdValidationThread
/external/chromium_org/chrome/browser/media_galleries/
H A Dmedia_file_system_registry.cc98 STLDeleteValues(&refs_);
103 return refs_.empty();
112 if (!ContainsKey(refs_, rph)) {
114 refs_[rph] = state;
119 state = refs_[rph];
167 RPHRefCount::iterator rph_info = refs_.find(rph);
168 DCHECK(rph_info != refs_.end());
170 refs_.erase(rph_info);
171 if (refs_.empty())
177 RPHRefCount::iterator rph_info = refs_
197 RPHRefCount refs_; member in class:chrome::RPHReferenceManager
[all...]
/external/chromium_org/third_party/leveldatabase/src/helpers/memenv/
H A Dmemenv.cc24 FileState() : refs_(0), size_(0) {}
29 ++refs_;
38 --refs_;
39 assert(refs_ >= 0);
40 if (refs_ <= 0) {
137 int refs_; // Protected by refs_mutex_; member in class:leveldb::__anon11262::FileState
/external/chromium_org/v8/test/cctest/
H A Dtest-threads.cc154 refs_(refs), thread_no_(thread_no), thread_to_start_(thread_to_start),
161 CHECK(!(*refs_)[i].Equals(thread_id));
164 (*refs_)[thread_no_] = thread_id;
172 i::List<i::ThreadId>* refs_; member in class:ThreadIdValidationThread
/external/chromium_org/v8/src/
H A Dserialize.h74 int size() const { return refs_.length(); }
76 Address address(int i) { return refs_[i].address; }
78 uint32_t code(int i) { return refs_[i].code; }
80 const char* name(int i) { return refs_[i].name; }
85 explicit ExternalReferenceTable(Isolate* isolate) : refs_(64) {
106 List<ExternalReferenceEntry> refs_; member in class:v8::internal::ExternalReferenceTable
/external/v8/src/
H A Dserialize.h72 int size() const { return refs_.length(); }
74 Address address(int i) { return refs_[i].address; }
76 uint32_t code(int i) { return refs_[i].code; }
78 const char* name(int i) { return refs_[i].name; }
83 explicit ExternalReferenceTable(Isolate* isolate) : refs_(64) {
104 List<ExternalReferenceEntry> refs_; member in class:v8::internal::ExternalReferenceTable
/external/chromium_org/gpu/command_buffer/service/
H A Dtexture_manager.cc132 DCHECK(refs_.find(ref) == refs_.end());
133 refs_.insert(ref);
145 size_t result = refs_.erase(ref);
147 if (refs_.empty()) {
156 memory_tracking_ref_ = *refs_.begin();
414 for (RefSet::iterator it = refs_.begin(); it != refs_.end(); ++it)
424 for (RefSet::iterator it = refs_.begin(); it != refs_
[all...]

Completed in 681 milliseconds

12