Home
last modified time | relevance | path

Searched refs:firstCharacter (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DHTMLParserIdioms.cpp100 const UChar firstCharacter = string[0]; in parseToDecimalForNumberType() local
101 if (firstCharacter != '-' && firstCharacter != '.' && !isASCIIDigit(firstCharacter)) in parseToDecimalForNumberType()
121 UChar firstCharacter = string[0]; in parseToDoubleForNumberType() local
122 if (firstCharacter != '-' && firstCharacter != '.' && !isASCIIDigit(firstCharacter)) in parseToDoubleForNumberType()
/external/chromium_org/third_party/WebKit/Source/core/editing/
DTextIterator.cpp1928 UChar32 firstCharacter; in isWordStartMatch() local
1929 U16_GET(m_buffer.data(), 0, offset, size, firstCharacter); in isWordStartMatch()
1935 if (isSeparator(firstCharacter)) { in isWordStartMatch()
1939 } else if (isASCIIUpper(firstCharacter)) { in isWordStartMatch()
1952 } else if (isASCIIDigit(firstCharacter)) { in isWordStartMatch()
1965 if (Character::isCJKIdeographOrSymbol(firstCharacter)) in isWordStartMatch()