Lines Matching full:plus
31 * at [NOW] PLUS NUMBER MINUTES|HOURS|DAYS|WEEKS
36 * \PLUS NUMBER MINUTES|HOURS|DAYS|WEEKS/
68 NUMBER, PLUS, MINUS, DOT, SLASH, ID, JUNK, enumerator
88 { "now", NOW,0 }, /* opt prefix for PLUS */
249 return sc_tokid = PLUS; in token()
283 * plus_or_minus() holds functionality common to plus() and minus()
325 * plus() parses a now + time
327 * at [NOW] PLUS NUMBER [MINUTES|HOURS|DAYS|WEEKS|MONTHS|YEARS]
331 plus(struct tm *tm) in plus() function
339 } /* plus */ in plus()
343 * minus() is like plus but can not be used with NOW
406 * if we've gone past that time - but if we're specifying a time plus in tod()
409 if ((sc_tokid == EOF || sc_tokid == PLUS || sc_tokid == MINUS) && in tod()
474 * \PLUS NUMBER MINUTES|HOURS|DAYS|WEEKS/
484 case PLUS: in month()
485 plus(tm); in month()
616 /* now is optional prefix for PLUS tree */ in parsetime()
617 expect(PLUS); in parsetime()
619 case PLUS: in parsetime()
620 plus(&runtime); in parsetime()
623 /* MINUS is different from PLUS in that NOW is not in parsetime()