Home
last modified time | relevance | path

Searched refs:toASCIILower (Results 1 – 18 of 18) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/text/
DTextEncodingRegistry.cpp61 c1 = toASCIILower(*s1++); in equal()
62 c2 = toASCIILower(*s2++); in equal()
68 if (toASCIILower(c1) != toASCIILower(c2)) in equal()
89 h += toASCIILower(c); in hash()
DStringImpl.cpp526 data8[i] = toASCIILower(characters8()[i]); in lower()
557 data16[i] = toASCIILower(c); in lower()
802 data[i] = toASCIILower(c); in foldCase()
823 data[i] = toASCIILower(c); in foldCase()
2034 equal = equal && (toASCIILower(ac) == toASCIILower(bc)); in equalIgnoringCase()
2054 equal = equal && (toASCIILower(ac) == toASCIILower(bc)); in equalIgnoringCase()
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
DBisonCSSParser-in.cpp776 const bool isTranslate = toASCIILower(pos[0]) == 't' in parseSimpleTransformValue()
777 && toASCIILower(pos[1]) == 'r' in parseSimpleTransformValue()
778 && toASCIILower(pos[2]) == 'a' in parseSimpleTransformValue()
779 && toASCIILower(pos[3]) == 'n' in parseSimpleTransformValue()
780 && toASCIILower(pos[4]) == 's' in parseSimpleTransformValue()
781 && toASCIILower(pos[5]) == 'l' in parseSimpleTransformValue()
782 && toASCIILower(pos[6]) == 'a' in parseSimpleTransformValue()
783 && toASCIILower(pos[7]) == 't' in parseSimpleTransformValue()
784 && toASCIILower(pos[8]) == 'e'; in parseSimpleTransformValue()
790 CharType c9 = toASCIILower(pos[9]); in parseSimpleTransformValue()
[all …]
DCSSPropertyParser.cpp8003 buffer[i] = toASCIILower(c); in cssPropertyID()
8045 buffer[i] = WTF::toASCIILower(c); in cssValueKeywordID()
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
DV8CSSStyleDeclarationCustom.cpp69 if (toASCIILower(propertyName[0]) != prefix[0]) in hasCSSPropertyNamePrefix()
107 builder.append(toASCIILower(propertyName[i++])); in cssResolvedPropertyID()
118 builder.append(toASCIILower(c)); in cssResolvedPropertyID()
/external/chromium_org/third_party/WebKit/Source/wtf/
DASCIICType.h109 template<typename CharType> inline CharType toASCIILower(CharType c) in toASCIILower() function
179 using WTF::toASCIILower;
DDateMath.cpp522 needle[i] = static_cast<char>(toASCIILower(*monthStr++)); in findMonth()
/external/chromium_org/third_party/WebKit/Source/core/animation/
DAnimationHelpers.h22 …builder.append(propertyName.substring(position, end - position) + "-" + toASCIILower((propertyName… in camelCaseCSSPropertyNameToID()
/external/icu/icu4c/source/common/
Duidna.cpp49 toASCIILower(UChar ch){ in toASCIILower() function
65 if(toASCIILower(src[i]) != ACE_PREFIX[i]){ in startsWithPrefix()
110 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2); in compareCaseInsensitiveASCII()
/external/chromium_org/third_party/icu/source/common/
Duidna.cpp49 toASCIILower(UChar ch){ in toASCIILower() function
65 if(toASCIILower(src[i]) != ACE_PREFIX[i]){ in startsWithPrefix()
110 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2); in compareCaseInsensitiveASCII()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDatasetDOMStringMap.cpp135 builder.append(toASCIILower(character)); in convertPropertyNameToAttributeName()
/external/chromium_org/third_party/WebKit/Source/modules/navigatorcontentutils/
DNavigatorContentUtils.cpp105 builder.append(toASCIILower(scheme[i])); in isProtocolWhitelisted()
/external/icu/icu4c/source/test/intltest/
Didnaref.cpp63 toASCIILower(UChar ch){ in toASCIILower() function
90 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2); in compareCaseInsensitiveASCII()
/external/chromium_org/third_party/icu/source/test/intltest/
Didnaref.cpp63 toASCIILower(UChar ch){ in toASCIILower() function
90 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2); in compareCaseInsensitiveASCII()
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DEmailInputType.cpp115 return validCharacters.find(toASCIILower(ch)) == kNotFound; in isInvalidLocalPartCharacter()
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
DKURL.cpp832 ASSERT(toASCIILower(*protocol) == *protocol); in internalProtocolIs()
833 if (toASCIILower(*begin++) != *protocol++) in internalProtocolIs()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DColor.cpp272 buffer[i] = toASCIILower(static_cast<char>(c)); in findNamedColor()
/external/chromium_org/third_party/WebKit/Source/platform/network/
DHTTPParsers.cpp73 if (toASCIILower(str[current]) != *token++) in skipToken()