Lines Matching refs:rkey
202 marisa::Key<marisa::RString> rkey; in TestKey() local
204 ASSERT(rkey.str().length() == 0); in TestKey()
205 ASSERT(rkey.weight() == 0.0); in TestKey()
206 ASSERT(rkey.id() == 0); in TestKey()
207 ASSERT(rkey.terminal() == 0); in TestKey()
209 rkey.set_str(marisa::RString(str)); in TestKey()
210 rkey.set_weight(4.0); in TestKey()
211 rkey.set_id(5); in TestKey()
212 rkey.set_terminal(6); in TestKey()
214 ASSERT(rkey.str() == marisa::RString(str)); in TestKey()
215 ASSERT(rkey.weight() == 4.0); in TestKey()
216 ASSERT(rkey.id() == 5); in TestKey()
217 ASSERT(rkey.terminal() == 6); in TestKey()