Home
last modified time | relevance | path

Searched refs:next_id_ (Results 1 – 19 of 19) sorted by relevance

/external/compiler-rt/lib/msan/
Dmsan_report.cc153 OriginSet() : next_id_(0) {} in OriginSet()
156 for (int i = next_id_ - 1; i >= 0; --i) in insert()
158 if (next_id_ == kMaxSize_) return OVERFLOW; in insert()
159 int id = next_id_++; in insert()
163 int size() { return next_id_; } in size()
181 int next_id_; member in __msan::OriginSet
/external/libchrome/base/task/
Dcancelable_task_tracker.cc66 : next_id_(1),weak_factory_(this) {} in CancelableTaskTracker()
96 TaskId id = next_id_; in PostTaskAndReply()
97 next_id_++; // int64_t is big enough that we ignore the potential overflow. in PostTaskAndReply()
121 TaskId id = next_id_; in NewTrackedTaskId()
122 next_id_++; // int64_t is big enough that we ignore the potential overflow. in NewTrackedTaskId()
Dcancelable_task_tracker.h132 TaskId next_id_; variable
/external/webrtc/webrtc/base/
Doptional_unittest.cc31 Logger() : id_(next_id_++), origin_(id_) { Log("default constructor"); } in Logger()
32 explicit Logger(int origin) : id_(next_id_++), origin_(origin) { in Logger()
35 Logger(const Logger& other) : id_(next_id_++), origin_(other.origin_) { in Logger()
38 Logger(Logger&& other) : id_(next_id_++), origin_(other.origin_) { in Logger()
70 Logger::next_id_ = 0; in Setup()
78 static int next_id_; member in rtc::__anon9eaab31f0111::Logger
99 int Logger::next_id_ = 0; member in rtc::__anon9eaab31f0111::Logger
Dphysicalsocketserver.h213 static int next_id_;
Dphysicalsocketserver.cc597 do { id_ = ++next_id_; } while (id_ == 0); in Create()
626 int SocketDispatcher::next_id_ = 0; member in rtc::SocketDispatcher
/external/libchrome/base/
Did_map.h46 IDMap() : iteration_depth_(0), next_id_(1), check_on_null_data_(false) { in IDMap()
70 KeyType this_id = next_id_; in Add()
73 next_id_++; in Add()
273 KeyType next_id_;
/external/sfntly/cpp/src/sfntly/port/
Drefcount.h123 object_id_ = AtomicIncrement(&next_id_); in RefCounted()
162 static size_t next_id_; variable
169 template <typename TDerived> size_t RefCounted<TDerived>::next_id_ = 0;
/external/compiler-rt/lib/lsan/
Dlsan_common.h80 LeakReport() : next_id_(0), leaks_(1), leaked_objects_(1) {} in LeakReport()
93 u32 next_id_; variable
Dlsan_common.cc551 Leak leak = { next_id_++, /* hit_count */ 1, leaked_size, stack_trace_id, in AddLeakedChunk()
/external/v8/src/
Dvalue-serializer.cc418 uint32_t id = next_id_++; in WriteJSReceiver()
1271 uint32_t id = next_id_++; in ReadJSObject()
1297 uint32_t id = next_id_++; in ReadSparseJSArray()
1333 uint32_t id = next_id_++; in ReadDenseJSArray()
1377 uint32_t id = next_id_++; in ReadJSDate()
1388 uint32_t id = next_id_++; in ReadJSValue()
1428 uint32_t id = next_id_++; in ReadJSRegExp()
1447 uint32_t id = next_id_++; in ReadJSMap()
1484 uint32_t id = next_id_++; in ReadJSSet()
1516 uint32_t id = next_id_++; in ReadJSArrayBuffer()
[all …]
Dvalue-serializer.h161 uint32_t next_id_ = 0; variable
287 uint32_t next_id_ = 0; variable
/external/v8/src/ast/
Dast-numbering.cc21 next_id_(BailoutId::FirstUsable().ToInt()), in AstNumberingVisitor()
52 int tmp = next_id_; in ReserveIdRange()
53 next_id_ += n; in ReserveIdRange()
95 int next_id_; member in v8::internal::AstNumberingVisitor
/external/webrtc/webrtc/libjingle/xmpp/
Dxmppengineimpl.cc39 next_id_(0), in XmppEngineImpl()
249 ss << next_id_++; in NextId()
Dxmppengineimpl.h239 int next_id_; variable
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
Dhandler_tracking.ipp53 uint64_t next_id_;
80 h->id_ = state->next_id_++;
/external/webrtc/talk/session/media/
Dmediasession.cc365 next_id_(max_allowed_id) { in UsedIds()
405 while (IsIdUsed(next_id_) && next_id_ >= min_allowed_id_) { in FindUnusedId()
406 --next_id_; in FindUnusedId()
408 ASSERT(next_id_ >= min_allowed_id_); in FindUnusedId()
409 return next_id_; in FindUnusedId()
422 int next_id_; member in cricket::UsedIds
/external/v8/src/profiler/
Dheap-snapshot-generator.h229 return next_id_ - kObjectIdStep; in last_assigned_id()
263 SnapshotObjectId next_id_; variable
Dheap-snapshot-generator.cc362 : next_id_(kFirstAvailableObjectId), heap_(heap) { in HeapObjectsMap()
455 SnapshotObjectId id = next_id_; in FindOrAddEntry()
456 next_id_ += kObjectIdStep; in FindOrAddEntry()
604 time_intervals_.Add(TimeInterval(next_id_)); in PushHeapObjectsStats()