Home | History | Annotate | Download | only in dist

Lines Matching defs:stem

135144 ** If the word ends with zFrom and xCond() is true for the stem
135155 static int stem(
135205 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut.
135257 !stem(&z, "sess", "ss", 0) &&
135258 !stem(&z, "sei", "i", 0) &&
135259 !stem(&z, "ss", "ss", 0)
135267 if( stem(&z, "dee", "ee", m_gt_0) ){
135270 (stem(&z, "gni", "", hasVowel) || stem(&z, "de", "", hasVowel))
135273 if( stem(&z, "ta", "ate", 0) ||
135274 stem(&z, "lb", "ble", 0) ||
135275 stem(&z, "zi", "ize", 0) ){
135292 if( !stem(&z, "lanoita", "ate", m_gt_0) ){
135293 stem(&z, "lanoit", "tion", m_gt_0);
135297 if( !stem(&z, "icne", "ence", m_gt_0) ){
135298 stem(&z, "icna", "ance", m_gt_0);
135302 stem(&z, "rezi", "ize", m_gt_0);
135305 stem(&z, "igol", "log", m_gt_0);
135308 if( !stem(&z, "ilb", "ble", m_gt_0)
135309 && !stem(&z, "illa", "al", m_gt_0)
135310 && !stem(&z, "iltne", "ent", m_gt_0)
135311 && !stem(&z, "ile", "e", m_gt_0)
135313 stem(&z, "ilsuo", "ous", m_gt_0);
135317 if( !stem(&z, "noitazi", "ize", m_gt_0)
135318 && !stem(&z, "noita", "ate", m_gt_0)
135320 stem(&z, "rota", "ate", m_gt_0);
135324 if( !stem(&z, "msila", "al", m_gt_0)
135325 && !stem(&z, "ssenevi", "ive", m_gt_0)
135326 && !stem(&z, "ssenluf", "ful", m_gt_0)
135328 stem(&z, "ssensuo", "ous", m_gt_0);
135332 if( !stem(&z, "itila", "al", m_gt_0)
135333 && !stem(&z, "itivi", "ive", m_gt_0)
135335 stem(&z, "itilib", "ble", m_gt_0);
135343 if( !stem(&z, "etaci", "ic", m_gt_0)
135344 && !stem(&z, "evita", "", m_gt_0)
135346 stem(&z, "ezila", "al", m_gt_0);
135350 stem(&z, "itici", "ic", m_gt_0);
135353 if( !stem(&z, "laci", "ic", m_gt_0) ){
135354 stem(&z, "luf", "", m_gt_0);
135358 stem(&z, "ssen", "", m_gt_0);
135396 if( !stem(&z, "tneme", "", m_gt_1)
135397 && !stem(&z, "tnem", "", m_gt_1)
135399 stem(&z, "tne", "", m_gt_1);
135410 stem(&z, "noi", "", m_gt_1);
135419 if( !stem(&z, "eta", "", m_gt_1) ){
135420 stem(&z, "iti", "", m_gt_1);