Home
last modified time | relevance | path

Searched refs:toTitleCase (Results 1 – 7 of 7) sorted by relevance

/external/icu/icu4c/source/test/testdata/
Dcasing.txt57 // Test case for ticket #7251: UCharacter.toTitleCase() throws OutOfMemoryError
/external/chromium_org/third_party/icu/source/test/testdata/
Dcasing.txt57 // Test case for ticket #7251: UCharacter.toTitleCase() throws OutOfMemoryError
/external/chromium_org/third_party/WebKit/Source/wtf/unicode/icu/
DUnicodeIcu.h156 inline UChar32 toTitleCase(UChar32 c) in toTitleCase() function
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DInspectorBackend.js251 var name = value.replace(/-(\w)/g, toUpperCase.bind(null, 1)).toTitleCase();
271 …ult.push(generateEnum(domain.domain + "." + type.id + property["name"].toTitleCase(), property["en…
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
DPaintProfilerView.js581 var method = logItem.method.toTitleCase();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Dutilities.js230 String.prototype.toTitleCase = function() method in String
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderText.cpp131 …result.append(input[startOfWord - 1] == noBreakSpace ? noBreakSpace : toTitleCase(stringWithPrevio… in makeCapitalized()