Home
last modified time | relevance | path

Searched refs:isASCIIDigit (Results 1 – 23 of 23) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/parser/
DMediaQueryTokenizer.cpp31 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()
DMediaQueryTokenizerTest.cpp133 if (isASCIIDigit(c)) in TEST()
DCSSPropertyParser.cpp4936 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/
DASCIICType.h56 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;
DDateMath.cpp580 while (*dateString && !isASCIIDigit(*dateString)) { in parseDateFromNullTerminatedCharacters()
763 if (isASCIIDigit(*dateString) && year == -1) { in parseDateFromNullTerminatedCharacters()
/external/chromium_org/third_party/WebKit/Source/core/html/
DMediaFragmentURIParser.cpp46 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()
DHTMLDimension.cpp54 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()
DHTMLFontElement.cpp96 if (!isASCIIDigit(*position)) in DEFINE_NODE_FACTORY()
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DHTMLParserIdioms.cpp101 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/
DVTTScanner.cpp119 Run runOfDigits = collectWhile<isASCIIDigit>(); in scanDigits()
144 Run integerRun = collectWhile<isASCIIDigit>(); in scanFloat()
148 decimalRun = collectWhile<isASCIIDigit>(); in scanFloat()
DVTTTokenizer.cpp186 } else if (WTF::isASCIIDigit(cc)) { in nextToken()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSTokenizer-in.cpp739 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/
DLength.cpp48 while (i < length && isASCIIDigit(data[i])) in splitLength()
51 while (i < length && (isASCIIDigit(data[i]) || data[i] == '.')) in splitLength()
DDateComponents.cpp99 if (!isASCIIDigit(src[index])) in countDigits()
116 if (!isASCIIDigit(src[current])) in toInt()
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
DOriginAccessEntry.cpp50 m_hostIsIPAddress = !m_host.isEmpty() && isASCIIDigit(m_host[m_host.length() - 1]); in OriginAccessEntry()
DKURL.cpp488 while (isASCIIDigit(value[portEnd]) && portEnd < length) in parsePortFromStringPosition()
/external/chromium_org/third_party/WebKit/Source/core/xml/
DXPathValue.cpp107 if (!isASCIIDigit(c) && c != '.' && c != '-') in toNumber()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
Dbreak_lines.cpp123 if (ch == '-' && isASCIIDigit(nextCh)) in shouldBreakAfter()
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DEmailInputType.cpp122 return !isASCIILower(ch) && !isASCIIUpper(ch) && !isASCIIDigit(ch) && ch != '.' && ch != '-'; in isInvalidDomainCharacter()
/external/chromium_org/third_party/WebKit/Source/wtf/text/
DWTFString.cpp952 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/
DCSPSourceList.cpp443 skipWhile<UChar, isASCIIDigit>(position, end); in parsePort()
/external/chromium_org/third_party/WebKit/Source/core/editing/
DTextIterator.cpp1950 … 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/
DToHTMLStream.java1094 private boolean isASCIIDigit(char c) in isASCIIDigit() method in ToHTMLStream