/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.3.2-3.js | 55 for ( CHARCODE = 0; CHARCODE < 256; CHARCODE++ ) { 57 "(String.fromCharCode(" + CHARCODE +")).charCodeAt(0)", 58 ToUint16(CHARCODE), 59 (String.fromCharCode(CHARCODE)).charCodeAt(0) 62 for ( CHARCODE = 256; CHARCODE < 65536; CHARCODE+=333 ) { 64 "(String.fromCharCode(" + CHARCODE +")).charCodeAt(0)" [all...] |
15.5.4.5-4.js | 46 var item=0, CHARCODE; 48 for ( CHARCODE=0; CHARCODE <256; CHARCODE++ ) { 50 "(String.fromCharCode("+CHARCODE+")).charCodeAt(0)", 51 CHARCODE, 52 (String.fromCharCode(CHARCODE)).charCodeAt(0) ); 54 for ( CHARCODE=256; CHARCODE < 65536; CHARCODE+=999 ) [all...] |
/external/webkit/LayoutTests/fast/encoding/ |
idn-security.html | 11 function testIDNEncode(charCode) 13 var str = String.fromCharCode(charCode); 20 function testIDNEncodeNotFirstCharacter(charCode) 22 var str = String.fromCharCode(charCode); 32 function testIDNRoundTrip(charCode) 34 var str = String.fromCharCode(charCode); 42 function testIDNRoundTripNotFirstCharacter(charCode) 44 var str = String.fromCharCode(charCode); 62 function expectedTestResult(charCode, expected) 67 return "'" + escape(String.fromCharCode(charCode)) + "'" [all...] |
/external/v8/test/mjsunit/ |
string-case.js | 37 function charCodeToLower(charCode) { 38 if (A_CODE <= charCode && charCode <= Z_CODE) { 39 return charCode + a_CODE - A_CODE; 41 return charCode; 44 function charCodeToUpper(charCode) { 45 if (a_CODE <= charCode && charCode <= z_CODE) { 46 return charCode - (a_CODE - A_CODE); 48 return charCode; [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/ |
15.1.2.4.js | 112 for ( var CHARCODE = 0; CHARCODE < 32; CHARCODE++ ) { 114 "escape(String.fromCharCode("+CHARCODE+"))", 115 "%"+ToHexString(CHARCODE), 116 escape(String.fromCharCode(CHARCODE)) ); 118 for ( var CHARCODE = 128; CHARCODE < 256; CHARCODE++ ) { 120 "escape(String.fromCharCode("+CHARCODE+"))" [all...] |
15.1.2.5-1.js | 110 for ( var CHARCODE = 0; CHARCODE < 256; CHARCODE++ ) { 112 "unescape( %"+ ToHexString(CHARCODE)+" )", 113 String.fromCharCode(CHARCODE), 114 unescape( "%" + ToHexString(CHARCODE) ) ); 118 for ( var CHARCODE = 0; CHARCODE < 256; CHARCODE++ ) { 120 "unescape( %u"+ ToHexString(CHARCODE)+" )" [all...] |
15.1.2.5-2.js | 87 for ( var CHARCODE = 0; CHARCODE < 256; CHARCODE += 16 ) { 89 "unescape( %"+ (ToHexString(CHARCODE)).substring(0,1) +" )", 90 "%"+(ToHexString(CHARCODE)).substring(0,1), 91 unescape( "%" + (ToHexString(CHARCODE)).substring(0,1) ) ); 96 for ( var CHARCODE = 0; CHARCODE < 256; CHARCODE +=16 ) { 98 "unescape( %u"+ (ToHexString(CHARCODE)).substring(0,1) +" )" [all...] |
15.1.2.5-3.js | 87 for ( var CHARCODE = 0, NONHEXCHARCODE = 0; CHARCODE < 256; CHARCODE++, NONHEXCHARCODE++ ) { 91 "unescape( %"+ (ToHexString(CHARCODE)).substring(0,1) + 94 "%"+(ToHexString(CHARCODE)).substring(0,1)+ 96 unescape( "%" + (ToHexString(CHARCODE)).substring(0,1)+ 99 for ( var CHARCODE = 0, NONHEXCHARCODE = 0; CHARCODE < 256; CHARCODE++, NONHEXCHARCODE++ ) { 103 "unescape( %u"+ (ToHexString(CHARCODE)).substring(0,1) [all...] |
/external/chromium/chrome/browser/ui/cocoa/ |
multi_key_equivalent_button.h | 15 KeyEquivalentAndModifierMask() : charCode(nil), mask(0) {} 16 NSString* charCode;
|
multi_key_equivalent_button.mm | 21 if (key.charCode && 22 [key.charCode isEqualToString:[event charactersIgnoringModifiers]] &&
|
/external/webkit/Source/WebCore/manual-tests/ |
focus-change-between-key-events.html | 10 var cc = evt.charCode ? evt.charCode : evt.keyCode;
|
log-keypress-events.html | 11 if (event.charCode) 12 myDebugLog("event.charCode: " + event.charCode);
|
/external/freetype/src/sfnt/ |
ttcmap.c | 133 FT_UInt32 charcode = *pchar_code; local 139 while ( ++charcode < 256 ) 141 gindex = table[charcode]; 144 result = charcode; 202 /***** assume that the value "charcode" correspond to following: *****/ 204 /***** - For one byte characters, "charcode" is simply the *****/ 207 /***** - For two byte characters, "charcode" is the 2-byte *****/ 210 /***** (charcode >> 8) is the first byte value *****/ 211 /***** (charcode & 0xFF) is the second byte value *****/ 213 /***** Note that not all values of "charcode" are valid according ***** 470 FT_UInt32 charcode = *pcharcode + 1; local 734 FT_UInt charcode; local 1002 FT_UInt32 charcode = *pcharcode; local 1091 FT_UInt charcode = (FT_UInt)*pcharcode; local [all...] |
/external/webkit/Source/WebCore/platform/cocoa/ |
KeyEventCocoa.h | 33 String keyIdentifierForCharCode(unichar charCode); 36 int windowsKeyCodeForCharCode(unichar charCode);
|
/external/webkit/Source/WebCore/html/ |
BaseButtonInputType.cpp | 59 int charCode = event->charCode(); 60 if (charCode == '\r') { 65 if (charCode == ' ') {
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Object/ |
regress-90596-003.js | 214 var charCode = 0; 219 charCode = text.charCodeAt(i); 221 if (!isWhiteSpace(charCode) && !isQuote(charCode)) 229 function isWhiteSpace(charCode) 231 switch (charCode) 248 function isQuote(charCode) 250 switch (charCode)
|
regress-90596-001.js | 190 var charCode = 0; 195 charCode = text.charCodeAt(i); 197 if (!isWhiteSpace(charCode)) 205 function isWhiteSpace(charCode) 207 switch (charCode)
|
regress-90596-002.js | 190 var charCode = 0; 195 charCode = text.charCodeAt(i); 197 if (!isWhiteSpace(charCode)) 205 function isWhiteSpace(charCode) 207 switch (charCode)
|
/external/skia/src/core/ |
SkGlyphCache.cpp | 69 // init with 0xFF so that the charCode field will be -1, which is invalid 104 uint16_t SkGlyphCache::unicharToGlyph(SkUnichar charCode) { 106 uint32_t id = SkGlyph::MakeID(charCode); 112 return fScalerContext->charToGlyphID(charCode); 126 const SkGlyph& SkGlyphCache::getUnicharAdvance(SkUnichar charCode) { 128 uint32_t id = SkGlyph::MakeID(charCode); 135 id = SkGlyph::MakeID(fScalerContext->charToGlyphID(charCode)); 156 const SkGlyph& SkGlyphCache::getUnicharMetrics(SkUnichar charCode) { 158 uint32_t id = SkGlyph::MakeID(charCode); 166 id = SkGlyph::MakeID(fScalerContext->charToGlyphID(charCode)); [all...] |
/external/freetype/src/autofit/ |
afglobal.c | 120 FT_ULong charcode = range->first; local 124 gindex = FT_Get_Char_Index( face, charcode ); 133 charcode = FT_Get_Next_Char( face, charcode, &gindex ); 135 if ( gindex == 0 || charcode > range->last )
|
afcjk.h | 131 FT_ULong charcode );
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/fx/ |
content.js | 55 if (event.charCode == 13)
|
/external/freetype/src/cff/ |
cffload.h | 30 cff_get_standard_encoding( FT_UInt charcode ); variable
|
/external/webkit/Source/WebCore/dom/ |
UIEvent.idl | 35 readonly attribute long charCode;
|
KeyboardEvent.idl | 62 readonly attribute long charCode;
|