/external/libchrome/base/task/ |
D | cancelable_task_tracker.cc | 66 : 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()
|
D | cancelable_task_tracker.h | 132 TaskId next_id_; variable
|
/external/compiler-rt/lib/msan/ |
D | msan_report.cc | 153 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/webrtc/webrtc/base/ |
D | optional_unittest.cc | 31 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::__anon498329ec0111::Logger 99 int Logger::next_id_ = 0; member in rtc::__anon498329ec0111::Logger
|
D | physicalsocketserver.h | 213 static int next_id_;
|
D | physicalsocketserver.cc | 597 do { id_ = ++next_id_; } while (id_ == 0); in Create() 626 int SocketDispatcher::next_id_ = 0; member in rtc::SocketDispatcher
|
/external/libchrome/base/ |
D | id_map.h | 46 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/ |
D | refcount.h | 127 object_id_ = AtomicIncrement(&next_id_); in RefCounted() 165 static size_t next_id_; variable 172 template <typename TDerived> size_t RefCounted<TDerived>::next_id_ = 0;
|
/external/compiler-rt/lib/lsan/ |
D | lsan_common.h | 79 LeakReport() : next_id_(0), leaks_(1), leaked_objects_(1) {} in LeakReport() 92 u32 next_id_; variable
|
D | lsan_common.cc | 518 Leak leak = { next_id_++, /* hit_count */ 1, leaked_size, stack_trace_id, in AddLeakedChunk()
|
/external/v8/src/ast/ |
D | ast-numbering.cc | 19 next_id_(BailoutId::FirstUsable().ToInt()), in AstNumberingVisitor() 46 int tmp = next_id_; in ReserveIdRange() 47 next_id_ += n; in ReserveIdRange() 78 int next_id_; member in v8::internal::AstNumberingVisitor
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/ |
D | handler_tracking.ipp | 53 uint64_t next_id_; 80 h->id_ = state->next_id_++;
|
/external/webrtc/webrtc/libjingle/xmpp/ |
D | xmppengineimpl.cc | 39 next_id_(0), in XmppEngineImpl() 249 ss << next_id_++; in NextId()
|
D | xmppengineimpl.h | 239 int next_id_; variable
|
/external/webrtc/talk/session/media/ |
D | mediasession.cc | 365 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/ |
D | heap-snapshot-generator.h | 227 return next_id_ - kObjectIdStep; in last_assigned_id() 261 SnapshotObjectId next_id_; variable
|
D | heap-snapshot-generator.cc | 366 : next_id_(kFirstAvailableObjectId), in HeapObjectsMap() 464 SnapshotObjectId id = next_id_; in FindOrAddEntry() 465 next_id_ += kObjectIdStep; in FindOrAddEntry() 618 time_intervals_.Add(TimeInterval(next_id_)); in PushHeapObjectsStats()
|