Lines Matching refs:RefCell
34 use std::cell::RefCell;
183 states: RefCell<Vec<CState>>,
189 utf8_state: RefCell<Utf8State>,
191 trie_state: RefCell<RangeTrie>,
194 utf8_suffix: RefCell<Utf8SuffixMap>,
197 remap: RefCell<Vec<StateID>>,
203 empties: RefCell<Vec<(StateID, StateID)>>,
256 states: RefCell::new(vec![]), in new()
258 utf8_state: RefCell::new(Utf8State::new()), in new()
259 trie_state: RefCell::new(RangeTrie::new()), in new()
260 utf8_suffix: RefCell::new(Utf8SuffixMap::new(1000)), in new()
261 remap: RefCell::new(vec![]), in new()
262 empties: RefCell::new(vec![]), in new()