/external/chromium_org/third_party/WebKit/Source/core/css/parser/ |
D | MediaQueryTokenizer.cpp | 31 return isNameStart(c) || isASCIIDigit(c) || c == '-'; in isNameChar() 273 offset = input.skipWhilePredicate<isASCIIDigit>(offset); in getInteger() 282 if (input.peek(offset) == '.' && isASCIIDigit(input.peek(++offset))) { in getFraction() 284 offset = input.skipWhilePredicate<isASCIIDigit>(offset); in getFraction() 305 offset = input.skipWhilePredicate<isASCIIDigit>(offset); in getExponent() 486 if (isASCIIDigit(first)) in nextCharsAreNumber() 489 return ((isASCIIDigit(second)) || (second == '.' && isASCIIDigit(m_input.peek(1)))); in nextCharsAreNumber() 491 return (isASCIIDigit(second)); in nextCharsAreNumber()
|
D | MediaQueryTokenizerTest.cpp | 133 if (isASCIIDigit(c)) in TEST()
|
D | CSSPropertyParser.cpp | 4936 if (!isASCIIDigit(string[i])) { in checkForValidDouble() 4999 if (current == end || !isASCIIDigit(*current)) in parseColorIntOrPercentage() 5001 while (current != end && isASCIIDigit(*current)) { in parseColorIntOrPercentage() 5006 while (current != end && isASCIIDigit(*current)) in parseColorIntOrPercentage() 5059 if (length == 3 && string[0] == '0' && string[1] == '.' && isASCIIDigit(string[2])) in isTenthAlpha() 5063 if (length == 2 && string[0] == '.' && isASCIIDigit(string[1])) in isTenthAlpha() 5088 if (string[length - 1] != terminator || !isASCIIDigit(string[length - 2])) in parseAlphaValue()
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | ASCIICType.h | 56 template<typename CharType> inline bool isASCIIDigit(CharType c) in isASCIIDigit() function 63 return isASCIIDigit(c) || isASCIIAlpha(c); in isASCIIAlphanumeric() 68 return isASCIIDigit(c) || ((c | 0x20) >= 'a' && (c | 0x20) <= 'f'); in isASCIIHexDigit() 171 using WTF::isASCIIDigit;
|
D | DateMath.cpp | 580 while (*dateString && !isASCIIDigit(*dateString)) { in parseDateFromNullTerminatedCharacters() 763 if (isASCIIDigit(*dateString) && year == -1) { in parseDateFromNullTerminatedCharacters()
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | MediaFragmentURIParser.cpp | 46 while (position < length && isASCIIDigit(input[position])) in collectDigits() 61 while (position < length && isASCIIDigit(input[position])) in collectFraction() 241 if (offset >= length || !isASCIIDigit(timeString[offset])) in parseNPTTime() 288 if (offset >= length || !isASCIIDigit(timeString[(offset)])) in parseNPTTime() 300 if (offset >= length || !isASCIIDigit(timeString[offset])) in parseNPTTime()
|
D | HTMLDimension.cpp | 54 while (position < endOfCurrentToken && isASCIIDigit(characters[position])) in parseDimension() 66 …while (position < endOfCurrentToken && (isASCIIDigit(characters[position]) || isASCIISpace(charact… in parseDimension() 67 if (isASCIIDigit(characters[position])) in parseDimension()
|
D | HTMLFontElement.cpp | 96 if (!isASCIIDigit(*position)) in DEFINE_NODE_FACTORY()
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
D | HTMLParserIdioms.cpp | 101 if (firstCharacter != '-' && firstCharacter != '.' && !isASCIIDigit(firstCharacter)) in parseToDecimalForNumberType() 122 if (firstCharacter != '-' && firstCharacter != '.' && !isASCIIDigit(firstCharacter)) in parseToDoubleForNumberType() 171 if (!isASCIIDigit(*position)) in parseHTMLIntegerInternal() 177 if (!isASCIIDigit(*position)) in parseHTMLIntegerInternal() 231 if (!isASCIIDigit(*position)) in parseHTMLNonNegativeIntegerInternal() 237 if (!isASCIIDigit(*position)) in parseHTMLNonNegativeIntegerInternal()
|
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/ |
D | VTTScanner.cpp | 119 Run runOfDigits = collectWhile<isASCIIDigit>(); in scanDigits() 144 Run integerRun = collectWhile<isASCIIDigit>(); in scanFloat() 148 decimalRun = collectWhile<isASCIIDigit>(); in scanFloat()
|
D | VTTTokenizer.cpp | 186 } else if (WTF::isASCIIDigit(cc)) { in nextToken()
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSTokenizer-in.cpp | 739 while (isASCIIDigit(*character)) in parseNthChild() 756 if (!isASCIIDigit(*character)) in parseNthChildExtra() 761 } while (isASCIIDigit(*character)); in parseNthChildExtra() 1215 if (!isASCIIDigit(currentCharacter<SrcCharacterType>()[0])) in realLex() 1223 if (!isASCIIDigit(currentCharacter<SrcCharacterType>()[0])) { in realLex() 1226 …if (currentCharacter<SrcCharacterType>()[0] != '.' || dotSeen || !isASCIIDigit(currentCharacter<Sr… in realLex() 1249 if (*character == '-' || *character == '+' || isASCIIDigit(*character)) { in realLex() 1251 while (isASCIIDigit(*character)) in realLex() 1391 if (isASCIIDigit(*currentCharacter<SrcCharacterType>())) { in realLex()
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | Length.cpp | 48 while (i < length && isASCIIDigit(data[i])) in splitLength() 51 while (i < length && (isASCIIDigit(data[i]) || data[i] == '.')) in splitLength()
|
D | DateComponents.cpp | 99 if (!isASCIIDigit(src[index])) in countDigits() 116 if (!isASCIIDigit(src[current])) in toInt()
|
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/ |
D | OriginAccessEntry.cpp | 50 m_hostIsIPAddress = !m_host.isEmpty() && isASCIIDigit(m_host[m_host.length() - 1]); in OriginAccessEntry()
|
D | KURL.cpp | 488 while (isASCIIDigit(value[portEnd]) && portEnd < length) in parsePortFromStringPosition()
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
D | XPathValue.cpp | 107 if (!isASCIIDigit(c) && c != '.' && c != '-') in toNumber()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | break_lines.cpp | 123 if (ch == '-' && isASCIIDigit(nextCh)) in shouldBreakAfter()
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
D | EmailInputType.cpp | 122 return !isASCIILower(ch) && !isASCIIUpper(ch) && !isASCIIDigit(ch) && ch != '.' && ch != '-'; in isInvalidDomainCharacter()
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
D | WTFString.cpp | 952 if (isASCIIDigit(c)) in isCharacterAllowedInBase() 999 if (isASCIIDigit(c)) in toIntegralType() 1056 if (!isASCIIDigit(data[i])) in lengthOfCharactersAsInteger()
|
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/ |
D | CSPSourceList.cpp | 443 skipWhile<UChar, isASCIIDigit>(position, end); in parsePort()
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | TextIterator.cpp | 1950 … if (!isASCIIUpper(nextCharacter) && !isASCIIDigit(nextCharacter) && !isSeparator(nextCharacter)) in isWordStartMatch() 1952 } else if (isASCIIDigit(firstCharacter)) { in isWordStartMatch() 1954 if (!isASCIIDigit(previousCharacter)) in isWordStartMatch() 1956 } else if (isSeparator(previousCharacter) || isASCIIDigit(previousCharacter)) { in isWordStartMatch()
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | ToHTMLStream.java | 1094 private boolean isASCIIDigit(char c) in isASCIIDigit() method in ToHTMLStream
|