HomeSort by relevance Sort by last modified time
    Searched defs:PERIOD (Results 1 - 2 of 2) sorted by null

  /bionic/libc/netbsd/resolv/
res_comp.c 156 #define PERIOD 0x2e
159 #define periodchar(c) ((c) == PERIOD)
172 int pch = PERIOD, ch = *dn++;
  /frameworks/base/core/java/android/webkit/
CookieManager.java 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);
    [all...]

Completed in 123 milliseconds