Searched refs:current (Results 1 - 6 of 6) sorted by relevance
/commonlibrary/rust/ylong_json/src/ |
H A D | linked_list.rs | 120 current: self.head, 130 current: self.head, 141 current: self.tail, 152 current: self.tail, 197 // Sets node.parent to the current linked_list in order to delete node. 315 current: self as *const Node<T>, 425 current: *const Node<T>, 434 if self.current.is_null() { 443 if self.current.is_null() { 444 self.current [all...] |
/commonlibrary/rust/ylong_json/src/value/object/ |
H A D | linked_list.rs | 178 self.get_cursor(key)?.current().map(|(_, v)| v) in iter() 250 let current = cursor.current().unwrap(); 251 if current.0 == key { 274 let (k, _) = cursor.current().unwrap(); 287 let (k, _) = cursor.current().unwrap();
|
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/ |
H A D | streams.rs | 224 let current = self.stream_send_window_size; 227 match current.cmp(&size) { 229 let excess = size - current; 239 let excess = current - size; 250 let current = self.stream_recv_window_size; 252 match current.cmp(&size) { 255 let extra = size - current; 262 stream.recv_window.reduce_notification(current - size);
|
/commonlibrary/ets_utils/js_api_module/uri/ |
H A D | js_uri.cpp | 483 size_t current = 0;
in GetSegment() local 484 for (current = uriData_.path.find('/', previous); current != std::string::npos;
in GetSegment() 485 current = uriData_.path.find('/', previous)) {
in GetSegment() 486 if (previous < current) {
in GetSegment() 487 std::string segment = uriData_.path.substr(previous, current - previous);
in GetSegment() 490 previous = current + 1;
in GetSegment()
|
/commonlibrary/ets_utils/js_concurrent_module/common/helper/ |
H A D | error_helper.h | 203 std::string current = GetCurrentTimeStamp(); in TranslateErrorEvent() local 205 napi_create_string_utf8(env, current.c_str(), NAPI_AUTO_LENGTH, &timeStamp); in TranslateErrorEvent()
|
/commonlibrary/rust/ylong_json/src/value/array/ |
H A D | linked_list.rs | 155 self.get_cursor(index)?.current() in iter()
|
Completed in 9 milliseconds