HomeSort by relevance Sort by last modified time
    Searched refs:Unicode (Results 51 - 75 of 137) sorted by null

1 23 4 5 6

  /external/webkit/JavaScriptCore/runtime/
UStringImpl.cpp 31 #include <wtf/unicode/UTF8.h>
33 using namespace WTF::Unicode;
  /external/webkit/JavaScriptCore/wtf/
StringHashFunctions.h 23 #include <wtf/unicode/Unicode.h>
  /external/webkit/WebCore/html/
DateComponents.h 35 #include <wtf/unicode/Unicode.h>
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.11-2.js 47 string, unless that character has a Unicode 2.0 uppercase equivalent, in which
48 case the uppercase equivalent is used instead. (The canonical Unicode 2.0 case
62 correct range according to the Unicode 5.0 standard, as opposed to the
65 instead of a single expected result. This allows us to accept Unicode 4.0 or
66 Unicode 5.0 results as correct, as opposed to the mozilla test, which assumes
67 Unicode 5.0. This allows Safari to pass this test on OS' with different
68 Unicode standards implemented (e.g. Tiger and XP)
87 var U = new Array(new Unicode( i, 4 ), new Unicode( i, 5 ));
124 // Added so that either Unicode 4.0 or 5.0 results will be considered correct
    [all...]
15.5.4.11-1.js 31 string, unless that character has a Unicode 2.0 uppercase equivalent, in which
32 case the uppercase equivalent is used instead. (The canonical Unicode 2.0 case
63 var U = new Unicode(i);
97 function Unicode( c ) {
211 // http://www.unicode.org/Unicode.charts/glyphless/U1E00.html
15.5.4.11-3.js 31 string, unless that character has a Unicode 2.0 uppercase equivalent, in which
32 case the uppercase equivalent is used instead. (The canonical Unicode 2.0 case
59 var U = new Unicode(i);
92 function Unicode( c ) {
206 // http://www.unicode.org/Unicode.charts/glyphless/U1E00.html
15.5.4.11-4.js 31 string, unless that character has a Unicode 2.0 uppercase equivalent, in which
32 case the uppercase equivalent is used instead. (The canonical Unicode 2.0 case
61 var U = new Unicode( i );
94 function Unicode( c ) {
195 // http://www.unicode.org/Unicode.charts/glyphless/U1E00.html
15.5.4.11-5.js 31 string, unless that character has a Unicode 2.0 uppercase equivalent, in which
32 case the uppercase equivalent is used instead. (The canonical Unicode 2.0 case
64 var U = new Unicode( i );
97 function Unicode( c ) {
211 // http://www.unicode.org/Unicode.charts/glyphless/U1E00.html
15.5.4.11-6.js 31 string, unless that character has a Unicode 2.0 uppercase equivalent, in which
32 case the uppercase equivalent is used instead. (The canonical Unicode 2.0 case
61 var U = new Unicode( i );
94 function Unicode( c ) {
208 // http://www.unicode.org/Unicode.charts/glyphless/U1E00.html
15.5.4.12-1.js 31 string, unless that character has a Unicode 2.0 uppercase equivalent, in which
32 case the uppercase equivalent is used instead. (The canonical Unicode 2.0 case
63 var U = new Unicode( i );
98 function Unicode( c ) {
219 // http://www.unicode.org/Unicode.charts/glyphless/U1E00.html
15.5.4.12-2.js 31 string, unless that character has a Unicode 2.0 uppercase equivalent, in which
32 case the uppercase equivalent is used instead. (The canonical Unicode 2.0 case
63 var u = new Unicode(i);
96 function Unicode( c ) {
210 // http://www.unicode.org/Unicode.charts/glyphless/U1E00.html
15.5.4.12-3.js 31 string, unless that character has a Unicode 2.0 uppercase equivalent, in which
32 case the uppercase equivalent is used instead. (The canonical Unicode 2.0 case
60 var U = new Unicode( i );
79 eval( "var u = new Unicode( i ); String.fromCharCode(u.upper)" ),
84 eval( "var u = new Unicode( i ); u.upper" ),
94 eval( "var u = new Unicode( i ); String.fromCharCode(u.upper)" ),
99 eval( "var u = new Unicode( i ); u.upper" ),
111 var u = new Unicode(i);
139 function Unicode( c ) {
253 // http://www.unicode.org/Unicode.charts/glyphless/U1E00.htm
    [all...]
15.5.4.12-4.js 31 string, unless that character has a Unicode 2.0 uppercase equivalent, in which
32 case the uppercase equivalent is used instead. (The canonical Unicode 2.0 case
60 var U =new Unicode( i );
94 function Unicode( c ) {
208 // http://www.unicode.org/Unicode.charts/glyphless/U1E00.html
15.5.4.12-5.js 31 string, unless that character has a Unicode 2.0 uppercase equivalent, in which
32 case the uppercase equivalent is used instead. (The canonical Unicode 2.0 case
60 var U = new Unicode( i );
94 function Unicode( c ) {
215 // http://www.unicode.org/Unicode.charts/glyphless/U1E00.html
  /external/webkit/JavaScriptCore/yarr/
RegexCompiler.cpp 76 if (m_isCaseInsensitive && ((upper = Unicode::toUpper(ch)) != (lower = Unicode::toLower(ch)))) {
87 return ch != Unicode::toLower(ch);
93 return ch != Unicode::toUpper(ch);
124 UChar lowerCaseRangeBegin = Unicode::toLower(unicodeCurr);
126 while ((++unicodeCurr <= hi) && isUnicodeUpper(unicodeCurr) && (Unicode::toLower(unicodeCurr) == (lowerCaseRangeEnd + 1)))
130 UChar upperCaseRangeBegin = Unicode::toUpper(unicodeCurr);
132 while ((++unicodeCurr <= hi) && isUnicodeLower(unicodeCurr) && (Unicode::toUpper(unicodeCurr) == (upperCaseRangeEnd + 1)))
368 // We handle case-insensitive checking of unicode characters which do have both
370 if (m_pattern.m_ignoreCase && !isASCII(ch) && (Unicode::toUpper(ch) != Unicode::toLower(ch)))
    [all...]
RegexJIT.cpp 528 state.jumpToBacktrack(branch32(NotEqual, character, Imm32(Unicode::toLower(ch))), this);
530 ASSERT(!m_pattern.m_ignoreCase || (Unicode::toLower(ch) == Unicode::toUpper(ch)));
573 state.jumpToBacktrack(branch32(NotEqual, character, Imm32(Unicode::toLower(ch))), this);
575 ASSERT(!m_pattern.m_ignoreCase || (Unicode::toLower(ch) == Unicode::toUpper(ch)));
597 failures.append(branch32(NotEqual, character, Imm32(Unicode::toLower(ch))));
599 ASSERT(!m_pattern.m_ignoreCase || (Unicode::toLower(ch) == Unicode::toUpper(ch)));
643 branch32(NotEqual, character, Imm32(Unicode::toLower(ch))).linkTo(hardFail, this)
    [all...]
  /external/webkit/JavaScriptCore/wrec/
WRECGenerator.cpp 260 if (!isASCII(ch1) && Unicode::toLower(ch1) != Unicode::toUpper(ch1))
262 if (!isASCII(ch2) && Unicode::toLower(ch2) != Unicode::toUpper(ch2))
276 // because they have no uppercase equivalents. Unicode characters don't
277 // require upper-casing because we only handle Unicode characters whose
305 // used for unicode case insensitive
317 } else if (!isASCII(ch) && ((lower = Unicode::toLower(ch)) != (upper = Unicode::toUpper(ch)))) {
318 // handle unicode case sentitive characters - branch to success on uppe
    [all...]
WRECGenerator.h 36 #include <wtf/unicode/Unicode.h>
  /external/webkit/WebCore/platform/graphics/
GraphicsContext.cpp 62 WTF::Unicode::Direction direction() const { return atEnd() ? WTF::Unicode::OtherNeutral : WTF::Unicode::direction(current()); }
347 WTF::Unicode::Direction paragraphDirection = run.ltr() ? WTF::Unicode::LeftToRight : WTF::Unicode::RightToLeft;
  /external/webkit/WebCore/platform/wx/wxcode/mac/carbon/
fontprops.mm 28 #include <wtf/unicode/Unicode.h>
  /external/webkit/WebCore/xml/
XPathParser.cpp 44 using namespace Unicode;
68 CharCategory category = Unicode::category(aChar);
  /external/chromium/third_party/icu/source/data/
makedata.mak 12 # Keep the following in sync with the version - see common/unicode/uversion.h
92 # The directory that contains Unicode data files
398 # Starting with ICU4C 3.4, the core Unicode properties files (uprops.icu, ucase.icu, ubidi.icu, unorm.icu)
401 # when updating the Unicode data.
406 @echo Unicode .icu files built to "$(ICUBLD_PKG)"
407 @echo Unicode .c source files built to "$(ICUTMP)"
422 # 2005-may-05 Removed Unicode properties files (unorm.icu, uprops.icu, ucase.icu, ubidi.icu)
639 @echo Creating data file for Unicode Names
643 # >> Depends on the Unicode data as well as uchar.h and uscript.h <<
644 "$(ICUBLD_PKG)\pnames.icu": "$(ICUUNIDATA)\*.txt" "$(ICUTOOLS)\genpname\$(CFG)\genpname.exe" "$(ICUP)\source\common\unicode\uchar.h" "$(ICUP)\source\common\unicode\uscript.h
    [all...]
  /external/webkit/JavaScriptCore/wtf/unicode/glib/
UnicodeGLib.cpp 26 namespace Unicode {
207 // but really a bitwise comparison of casefolded unicode chars (not utf-8 bytes).
UnicodeGLib.h 41 namespace Unicode {
  /external/webkit/JavaScriptCore/wtf/unicode/wince/
UnicodeWince.cpp 28 namespace Unicode {
175 } // namespace Unicode

Completed in 379 milliseconds

1 23 4 5 6