HomeSort by relevance Sort by last modified time
    Searched refs:semicolonIndex (Results 1 - 3 of 3) sorted by null

  /packages/apps/Browser/src/com/android/browser/
FetchUrlMimeType.java 93 final int semicolonIndex = mimeType.indexOf(';');
94 if (semicolonIndex != -1) {
95 mimeType = mimeType.substring(0, semicolonIndex);
  /frameworks/base/core/java/android/webkit/
CookieManager.java 810 int semicolonIndex = cookieString.indexOf(SEMICOLON, index);
820 if ((semicolonIndex != -1 && (semicolonIndex < equalIndex)) ||
823 if (semicolonIndex == -1) {
824 semicolonIndex = length;
826 cookie.name = cookieString.substring(index, semicolonIndex);
842 semicolonIndex = cookieString.indexOf(SEMICOLON, index);
843 if (semicolonIndex == -1) {
844 semicolonIndex = length;
846 if (semicolonIndex - equalIndex > MAX_COOKIE_LENGTH)
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadThread.java     [all...]

Completed in 161 milliseconds