Searched refs:root_width (Results 1 – 3 of 3) sorted by relevance
/third_party/flatbuffers/rust/flexbuffers/src/builder/ |
D | mod.rs | 321 let root_width = root.width_in_vector(buffer.len(), 0); in store_root() localVariable 322 align(buffer, root_width); in store_root() 323 store_value(buffer, root, root_width); in store_root() 324 buffer.push(root.packed_type(root_width)); in store_root() 325 buffer.push(root_width.n_bytes() as u8); in store_root()
|
/third_party/flatbuffers/rust/flexbuffers/src/reader/ |
D | mod.rs | 236 let root_width = BitWidth::from_nbytes(buffer[end - 1]).ok_or(Error::InvalidRootWidth)?; in get_root() localVariable 240 let address = safe_sub(end - 2, root_width.n_bytes())?; in get_root() 241 Self::new(buffer, address, fxb_type, width, root_width) in get_root()
|
/third_party/python/Lib/tkinter/test/test_ttk/ |
D | test_widgets.py | 1351 root_width = self.tv.column('#0', width=None) 1353 root_width = int(root_width) 1354 self.assertEqual(bbox_column0[0], bbox[0] + root_width)
|