Home | History | Annotate | Download | only in i18n

Lines Matching defs:SPACE

33 static const UChar SPACE       = 32;  // ' '
121 ++maxLen; // allow for temporary trailing space
161 // to a single space. If closeDelimiter is found, exit
165 // Convert \s+ => SPACE. This assumes there are no
166 // runs of >1 space characters in names.
170 name.charAt(name.length()-1) != SPACE) {
171 name.append(SPACE);
173 // temporary trailing space, so use '>'.
184 // Delete trailing space, if any
186 name.charAt(len-1) == SPACE) {
227 // maxLen includes temporary trailing space, so use '>='.