Searched refs:dotIndex (Results 1 – 6 of 6) sorted by relevance
75 int dotIndex = domain.indexOf('.'); in validate() local76 if (dotIndex == -1) { in validate()89 dotIndex = domain.indexOf('.', 1); in validate()90 if (dotIndex < 0 || dotIndex == domain.length() - 1) { in validate()
134 int dotIndex = cookieDomain.indexOf('.', 1); in validate() local135 if (((dotIndex < 0) || (dotIndex == cookieDomain.length() - 1)) in validate()
29 int dotIndex = name.indexOf("."); in getValue() local31 if (dotIndex >= 0) { in getValue()32 fileBaseName = name.substring(0, dotIndex); in getValue()
111 size_t dotIndex = string.find('.'); in parseToDoubleForNumberTypeWithDecimalPlaces() local117 if (dotIndex != notFound) { in parseToDoubleForNumberTypeWithDecimalPlaces()119 baseDecimalPlaces = string.length() - dotIndex - 1; in parseToDoubleForNumberTypeWithDecimalPlaces()121 baseDecimalPlaces = eIndex - dotIndex - 1; in parseToDoubleForNumberTypeWithDecimalPlaces()
761 int dotIndex = fileName.lastIndexOf('.');762 return (dotIndex == -1) ? "" : fileName.substring(dotIndex + 1);
97 size_t dotIndex = filename.reverseFind('.');99 …if (dotIndex != notFound && dotIndex < (filename.length() - 1)) // require that a . exists after t…100 extension = filename.substring(dotIndex + 1);