Home | History | Annotate | Download | only in latin

Lines Matching refs:PERIOD

90         // The end of a sentence ends with a period, question mark or exclamation mark. If it's
91 // a period, it also needs not to be an abbreviation, which means it also needs to either
170 // variants of English, the final period is placed within double quotes and maybe
185 // a sentence. If it's neither, the only remaining case is the period so we get the opposite
194 // We found out that we have a period. We need to determine if this is a full stop or
195 // otherwise sentence-ending period, or an abbreviation like "e.g.". An abbreviation
198 // START, WORD, PERIOD, ABBREVIATION
199 // On START : (just before the first period)
201 // whitespace => end with no caps (it was a stand-alone period)
203 // On WORD : (within the word just before the first period)
205 // period => PERIOD
207 // On PERIOD : (period within a potential abbreviation)
212 // period => PERIOD
219 final int PERIOD = 2;
241 state = PERIOD;
246 case PERIOD:
257 state = PERIOD;