Home | History | Annotate | Download | only in webkit

Lines Matching defs:PERIOD

58     private static final char PERIOD = '.';
169 return urlHost.charAt(urlLen - len) == PERIOD;
709 int index = ret[0].indexOf(PERIOD);
717 } else if (index == ret[0].lastIndexOf(PERIOD)) {
719 ret[0] = PERIOD + ret[0];
754 int nextIndex = host.indexOf(PERIOD);
755 int lastIndex = host.lastIndexOf(PERIOD);
758 nextIndex = host.indexOf(PERIOD, startIndex);
961 int lastPeriod = value.lastIndexOf(PERIOD);
979 if (value.charAt(0) != PERIOD) {
981 value = PERIOD + value;
988 && host.charAt(hostLen - len) != PERIOD) {