Home | History | Annotate | Download | only in dist

Lines Matching defs:stem

154425 ** If the word ends with zFrom and xCond() is true for the stem
154436 static int stem(
154486 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut.
154538 !stem(&z, "sess", "ss", 0) &&
154539 !stem(&z, "sei", "i", 0) &&
154540 !stem(&z, "ss", "ss", 0)
154548 if( stem(&z, "dee", "ee", m_gt_0) ){
154551 (stem(&z, "gni", "", hasVowel) || stem(&z, "de", "", hasVowel))
154554 if( stem(&z, "ta", "ate", 0) ||
154555 stem(&z, "lb", "ble", 0) ||
154556 stem(&z, "zi", "ize", 0) ){
154573 if( !stem(&z, "lanoita", "ate", m_gt_0) ){
154574 stem(&z, "lanoit", "tion", m_gt_0);
154578 if( !stem(&z, "icne", "ence", m_gt_0) ){
154579 stem(&z, "icna", "ance", m_gt_0);
154583 stem(&z, "rezi", "ize", m_gt_0);
154586 stem(&z, "igol", "log", m_gt_0);
154589 if( !stem(&z, "ilb", "ble", m_gt_0)
154590 && !stem(&z, "illa", "al", m_gt_0)
154591 && !stem(&z, "iltne", "ent", m_gt_0)
154592 && !stem(&z, "ile", "e", m_gt_0)
154594 stem(&z, "ilsuo", "ous", m_gt_0);
154598 if( !stem(&z, "noitazi", "ize", m_gt_0)
154599 && !stem(&z, "noita", "ate", m_gt_0)
154601 stem(&z, "rota", "ate", m_gt_0);
154605 if( !stem(&z, "msila", "al", m_gt_0)
154606 && !stem(&z, "ssenevi", "ive", m_gt_0)
154607 && !stem(&z, "ssenluf", "ful", m_gt_0)
154609 stem(&z, "ssensuo", "ous", m_gt_0);
154613 if( !stem(&z, "itila", "al", m_gt_0)
154614 && !stem(&z, "itivi", "ive", m_gt_0)
154616 stem(&z, "itilib", "ble", m_gt_0);
154624 if( !stem(&z, "etaci", "ic", m_gt_0)
154625 && !stem(&z, "evita", "", m_gt_0)
154627 stem(&z, "ezila", "al", m_gt_0);
154631 stem(&z, "itici", "ic", m_gt_0);
154634 if( !stem(&z, "laci", "ic", m_gt_0) ){
154635 stem(&z, "luf", "", m_gt_0);
154639 stem(&z, "ssen", "", m_gt_0);
154677 if( !stem(&z, "tneme", "", m_gt_1)
154678 && !stem(&z, "tnem", "", m_gt_1)
154680 stem(&z, "tne", "", m_gt_1);
154691 stem(&z, "noi", "", m_gt_1);
154700 if( !stem(&z, "eta", "", m_gt_1) ){
154701 stem(&z, "iti", "", m_gt_1);