Home
last modified time | relevance | path

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

/third_party/typescript/src/harness/
DcollectionsImpl.ts11 private _order: number[] | undefined; property in collections.SortedMap
17 … this._order = typeof comparer === "object" && comparer.sort === "insertion" ? [] : undefined;
67 if (this._order) insertAt(this._order, ~index, this._version);
79 if (this._order) ts.orderedRemoveItemAt(this._order, index);
91 if (this._order) this._order.length = 0;
198 if (this._order) this._order = this._order.slice();
208 if (this._order) {
209 const order = this._order;
210 return this._order
/third_party/lzma/CPP/7zip/Compress/
DPpmdDecoder.cpp35 _order = props[0]; in Z7_COM7F_IMF()
37 if (_order < PPMD7_MIN_ORDER || in Z7_COM7F_IMF()
38 _order > PPMD7_MAX_ORDER || in Z7_COM7F_IMF()
75 Ppmd7_Init(&_ppmd, _order); in CodeSpec()
DPpmdDecoder.h57 Byte _order; variable
/third_party/python/Lib/
Dheapq.py498 top, _order = result[0]
516 top, _order, _elem = result[0]
556 top, _order = result[0]
574 top, _order, _elem = result[0]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
Ddh_groups.c1153 dh_group ## id ## _order, sizeof(dh_group ## id ## _order), safe }
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Ddh_groups.c1153 dh_group ## id ## _order, sizeof(dh_group ## id ## _order), safe }
/third_party/FreeBSD/sys/kern/
Dbus_if.h327 typedef device_t bus_add_child_t(device_t _dev, u_int _order, const char *_name,
351 static __inline device_t BUS_ADD_CHILD(device_t _dev, u_int _order, in BUS_ADD_CHILD() argument
356 return ((bus_add_child_t *) _m)(_dev, _order, _name, _unit); in BUS_ADD_CHILD()
/third_party/rust/crates/log/src/
Dlib.rs367 fn load(&self, _order: Ordering) -> usize { in load()
371 fn store(&self, val: usize, _order: Ordering) { in store()