Home
last modified time | relevance | path

Searched refs:dotIndex (Results 1 – 6 of 6) sorted by relevance

/external/apache-http/src/org/apache/http/impl/cookie/
DRFC2109DomainHandler.java75 int dotIndex = domain.indexOf('.'); in validate() local
76 if (dotIndex == -1) { in validate()
89 dotIndex = domain.indexOf('.', 1); in validate()
90 if (dotIndex < 0 || dotIndex == domain.length() - 1) { in validate()
DRFC2965DomainAttributeHandler.java134 int dotIndex = cookieDomain.indexOf('.', 1); in validate() local
135 if (((dotIndex < 0) || (dotIndex == cookieDomain.length() - 1)) in validate()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
DRawResourceLoader.java29 int dotIndex = name.indexOf("."); in getValue() local
31 if (dotIndex >= 0) { in getValue()
32 fileBaseName = name.substring(0, dotIndex); in getValue()
/external/webkit/Source/WebCore/html/parser/
DHTMLParserIdioms.cpp111 size_t dotIndex = string.find('.'); in parseToDoubleForNumberTypeWithDecimalPlaces() local
117 if (dotIndex != notFound) { in parseToDoubleForNumberTypeWithDecimalPlaces()
119 baseDecimalPlaces = string.length() - dotIndex - 1; in parseToDoubleForNumberTypeWithDecimalPlaces()
121 baseDecimalPlaces = eIndex - dotIndex - 1; in parseToDoubleForNumberTypeWithDecimalPlaces()
/external/guava/guava/src/com/google/common/io/
DFiles.java761 int dotIndex = fileName.lastIndexOf('.');
762 return (dotIndex == -1) ? "" : fileName.substring(dotIndex + 1);
/external/webkit/Source/WebCore/platform/mac/
DDragImageMac.mm97 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);