Searched refs:EntryList (Results 1 – 8 of 8) sorted by relevance
/external/rust/crates/tokio/src/time/driver/wheel/ |
D | level.rs | 3 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
|
D | mod.rs | 10 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/ |
D | SymbolCache.cpp | 459 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/ |
D | static-cast.cpp | 151 outer<int> EntryList; variable
|
/external/llvm-project/clang/test/SemaCXX/ |
D | static-cast.cpp | 151 outer<int> EntryList; variable
|
/external/webrtc/p2p/base/ |
D | turn_port.h | 284 typedef std::list<TurnEntry*> EntryList; typedef 380 EntryList entries_;
|
/external/rust/crates/tokio/src/time/driver/ |
D | mod.rs | 10 pub(self) use self::entry::{EntryList, TimerEntry, TimerHandle, TimerShared};
|
D | entry.rs | 320 pub(super) type EntryList = crate::util::linked_list::LinkedList<TimerShared, TimerShared>; typedef
|