HomeSort by relevance Sort by last modified time
    Searched full:charcode (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/webkit/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/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/webkit/WebCore/manual-tests/
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/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
119 uint16_t SkGlyphCache::unicharToGlyph(SkUnichar charCode) {
121 uint32_t id = SkGlyph::MakeID(charCode);
127 return fScalerContext->charToGlyphID(charCode);
137 const SkGlyph& SkGlyphCache::getUnicharAdvance(SkUnichar charCode) {
139 uint32_t id = SkGlyph::MakeID(charCode);
146 id = SkGlyph::MakeID(fScalerContext->charToGlyphID(charCode));
167 const SkGlyph& SkGlyphCache::getUnicharMetrics(SkUnichar charCode) {
169 uint32_t id = SkGlyph::MakeID(charCode);
177 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 );
135 charcode = FT_Get_Next_Char( face, charcode, &gindex );
137 if ( gindex == 0 || charcode > range->last )
  /external/freetype/src/cff/
cffload.h 31 cff_get_standard_encoding( FT_UInt charcode ); variable
  /external/webkit/WebCore/dom/
UIEvent.idl 35 readonly attribute long charCode;
KeyboardEvent.idl 62 readonly attribute long charCode;
UIEvent.cpp 67 int UIEvent::charCode() const
UIEvent.h 54 virtual int charCode() const;
KeyboardEvent.cpp 125 return charCode();
128 int KeyboardEvent::charCode() const
  /external/v8/src/
json.js 86 var charCode = c.charCodeAt(0);
88 if (charCode < 16) result = '\\u000';
89 else if (charCode < 256) result = '\\u00';
90 else if (charCode < 4096) result = '\\u0';
92 result += charCode.toString(16);
  /external/webkit/WebKit/android/WebCoreSupport/
EditorClientAndroid.cpp 97 unsigned charCode;
152 keyPressCommandsMap->set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name);
166 int mapKey = modifiers << 16 | evt->charCode();
200 if (event->charCode() < ' ')
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/sms/
UserData.java 109 int charCode = charToAscii.get(str.charAt(i), -1);
110 if (charCode == -1) return null;
111 result[i] = (byte)charCode;
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
EventSender.cpp 533 int charCode = JSStringGetCharactersPtr(character)[0];
534 if (charCode == '\n' || charCode == '\r')
536 else if (charCode == '\t')
538 else if (charCode == '\x8')
541 gdkKeySym = gdk_unicode_to_keyval(charCode);
542 if (WTF::isASCIIUpper(charCode))
  /external/webkit/WebKit/win/Interfaces/
DOMEvents.idl 214 //readonly attribute long charCode;
215 //HRESULT charCode([out, retval] long* result);
390 //readonly attribute long charCode;
391 HRESULT charCode([out, retval] long* result);
  /external/webkit/WebKit/wx/WebKitSupport/
EditorClientWx.cpp 64 unsigned charCode;
399 if (event->charCode() < ' ')
420 keyPressCommandsMap->set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name);
436 int mapKey = modifiers << 16 | evt->charCode();

Completed in 1141 milliseconds

1 2 3