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