Home
last modified time | relevance | path

Searched refs:cursor (Results 1 - 5 of 5) sorted by relevance

/commonlibrary/rust/ylong_json/src/
H A Dlinked_list.rs115 /// Gets the normal cursor of the list and sets the starting point to the list header.
125 /// Gets the variable cursor of the list and sets the starting point to the list header.
135 /// Gets the normal cursor of the list and sets the starting point to the end of the list.
146 /// Gets the variable cursor of the list and sets the start to the end of the list.
280 /// Linked list node, only through a linked list cursor to get the node.
313 let mut cursor = CursorMut { variables
318 cursor.remove_current()
421 /// A common cursor for a linked list. When the list is empty,
430 /// Gets the position the cursor is pointing to.
431 /// If the cursor point
782 let mut cursor = list.cursor_front(); ut_cursor_index() variables
804 let mut cursor = list.cursor_front(); ut_cursor_move_next() variables
833 let mut cursor = list.cursor_front(); ut_cursor_move_prev() variables
860 let mut cursor = list.cursor_front(); ut_cursor_current_node() variables
881 let mut cursor = list.cursor_front_mut(); ut_cursor_mut_index() variables
902 let mut cursor = list.cursor_front_mut(); ut_cursor_mut_move_next() variables
927 let mut cursor = list.cursor_front_mut(); ut_cursor_mut_move_prev() variables
952 let mut cursor = list.cursor_front_mut(); ut_cursor_mut_current() variables
973 let mut cursor = list.cursor_front_mut(); ut_cursor_mut_remove_current() variables
[all...]
/commonlibrary/rust/ylong_json/src/value/object/
H A Dlinked_list.rs240 let mut cursor = self.inner.cursor_back_mut(); variables
241 let _ = cursor.index()?;
242 cursor.current_node()
247 let mut cursor = self.inner.cursor_front(); variables
249 while cursor.index().is_some() {
250 let current = cursor.current().unwrap();
252 ptr = cursor.current_node_ptr();
255 cursor.move_next();
270 /// Gets the common cursor of the node corresponding to the specified key.
272 let mut cursor in get_cursor() variables
285 let mut cursor = self.inner.cursor_front_mut(); get_cursor_mut() variables
[all...]
/commonlibrary/rust/ylong_json/src/value/array/
H A Dlinked_list.rs291 /// Gets the common cursor of the specified index node.
301 let mut cursor = self.inner.cursor_back(); variables
303 let _ = cursor.index()?;
304 cursor.move_prev();
307 Some(cursor)
310 let mut cursor = self.inner.cursor_front(); variables
312 let _ = cursor.index()?;
313 cursor.move_next();
316 Some(cursor)
320 /// Gets the mutable cursor o
330 let mut cursor = self.inner.cursor_back_mut(); global() variables
339 let mut cursor = self.inner.cursor_front_mut(); global() variables
[all...]
/commonlibrary/ets_utils/js_api_module/buffer/
H A Dconverter.cpp228 unsigned int cursor = 0; in Base64Decode() local
237 while ((encodedStr[cursor] != '=') && IsBase64Char(encodedStr[cursor])) { in Base64Decode()
239 charArray4[index] = encodedStr[cursor]; in Base64Decode()
241 cursor++; in Base64Decode()
262 if (cursor > len - 1) { in Base64Decode()
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/
H A Drequest.rs408 cursor: &mut Cursor<Vec<u8>>, in poll_read_cursor()
411 let pos = cursor.position(); in poll_read_cursor()
412 let data = (*cursor).get_ref(); in poll_read_cursor()
422 cursor.set_position(end as u64); in poll_read_cursor()

Completed in 4 milliseconds