Home
last modified time | relevance | path

Searched refs:EntryList (Results 1 – 8 of 8) sorted by relevance

/external/rust/crates/tokio/src/time/driver/wheel/
Dlevel.rs3 use crate::time::driver::{EntryList, TimerShared};
21 slot: [EntryList; LEVEL_MULT],
56 let ctor = || EntryList::default(); in new()
226 pub(crate) fn take_slot(&mut self, slot: usize) -> EntryList { in take_slot() argument
Dmod.rs10 use super::EntryList;
41 pending: EntryList,
60 pending: EntryList::new(), in new()
281 fn take_entries(&mut self, expiration: &Expiration) -> EntryList { in take_entries() argument
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DSymbolCache.cpp459 std::vector<std::vector<LineTableEntry>> EntryList; in findLineTable() local
505 EntryList.push_back(Entries); in findLineTable()
510 std::sort(EntryList.begin(), EntryList.end(), in findLineTable()
515 for (size_t I = 0; I < EntryList.size(); ++I) in findLineTable()
516 ModuleLineTable.insert(ModuleLineTable.end(), EntryList[I].begin(), in findLineTable()
517 EntryList[I].end()); in findLineTable()
/external/clang/test/SemaCXX/
Dstatic-cast.cpp151 outer<int> EntryList; variable
/external/llvm-project/clang/test/SemaCXX/
Dstatic-cast.cpp151 outer<int> EntryList; variable
/external/webrtc/p2p/base/
Dturn_port.h284 typedef std::list<TurnEntry*> EntryList; typedef
380 EntryList entries_;
/external/rust/crates/tokio/src/time/driver/
Dmod.rs10 pub(self) use self::entry::{EntryList, TimerEntry, TimerHandle, TimerShared};
Dentry.rs320 pub(super) type EntryList = crate::util::linked_list::LinkedList<TimerShared, TimerShared>; typedef