Home | History | Annotate | Download | only in orig

Lines Matching defs:stem

154413 ** If the word ends with zFrom and xCond() is true for the stem
154424 static int stem(
154474 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut.
154526 !stem(&z, "sess", "ss", 0) &&
154527 !stem(&z, "sei", "i", 0) &&
154528 !stem(&z, "ss", "ss", 0)
154536 if( stem(&z, "dee", "ee", m_gt_0) ){
154539 (stem(&z, "gni", "", hasVowel) || stem(&z, "de", "", hasVowel))
154542 if( stem(&z, "ta", "ate", 0) ||
154543 stem(&z, "lb", "ble", 0) ||
154544 stem(&z, "zi", "ize", 0) ){
154561 if( !stem(&z, "lanoita", "ate", m_gt_0) ){
154562 stem(&z, "lanoit", "tion", m_gt_0);
154566 if( !stem(&z, "icne", "ence", m_gt_0) ){
154567 stem(&z, "icna", "ance", m_gt_0);
154571 stem(&z, "rezi", "ize", m_gt_0);
154574 stem(&z, "igol", "log", m_gt_0);
154577 if( !stem(&z, "ilb", "ble", m_gt_0)
154578 && !stem(&z, "illa", "al", m_gt_0)
154579 && !stem(&z, "iltne", "ent", m_gt_0)
154580 && !stem(&z, "ile", "e", m_gt_0)
154582 stem(&z, "ilsuo", "ous", m_gt_0);
154586 if( !stem(&z, "noitazi", "ize", m_gt_0)
154587 && !stem(&z, "noita", "ate", m_gt_0)
154589 stem(&z, "rota", "ate", m_gt_0);
154593 if( !stem(&z, "msila", "al", m_gt_0)
154594 && !stem(&z, "ssenevi", "ive", m_gt_0)
154595 && !stem(&z, "ssenluf", "ful", m_gt_0)
154597 stem(&z, "ssensuo", "ous", m_gt_0);
154601 if( !stem(&z, "itila", "al", m_gt_0)
154602 && !stem(&z, "itivi", "ive", m_gt_0)
154604 stem(&z, "itilib", "ble", m_gt_0);
154612 if( !stem(&z, "etaci", "ic", m_gt_0)
154613 && !stem(&z, "evita", "", m_gt_0)
154615 stem(&z, "ezila", "al", m_gt_0);
154619 stem(&z, "itici", "ic", m_gt_0);
154622 if( !stem(&z, "laci", "ic", m_gt_0) ){
154623 stem(&z, "luf", "", m_gt_0);
154627 stem(&z, "ssen", "", m_gt_0);
154665 if( !stem(&z, "tneme", "", m_gt_1)
154666 && !stem(&z, "tnem", "", m_gt_1)
154668 stem(&z, "tne", "", m_gt_1);
154679 stem(&z, "noi", "", m_gt_1);
154688 if( !stem(&z, "eta", "", m_gt_1) ){
154689 stem(&z, "iti", "", m_gt_1);