HomeSort by relevance Sort by last modified time
    Searched refs:charCode (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/webkit/Source/WebCore/platform/cocoa/
KeyEventCocoa.h 33 String keyIdentifierForCharCode(unichar charCode);
36 int windowsKeyCodeForCharCode(unichar charCode);
KeyEventCocoa.mm 42 String keyIdentifierForCharCode(unichar charCode)
44 switch (charCode) {
328 return String::format("U+%04X", toASCIIUpper(charCode));
471 int windowsKeyCodeForCharCode(unichar charCode)
473 switch (charCode) {
  /external/chromium/chrome/browser/ui/cocoa/
multi_key_equivalent_button.h 15 KeyEquivalentAndModifierMask() : charCode(nil), mask(0) {}
16 NSString* charCode;
  /external/webkit/Source/WebCore/html/
BaseButtonInputType.cpp 59 int charCode = event->charCode();
60 if (charCode == '\r') {
65 if (charCode == ' ') {
BaseCheckableInputType.cpp 74 if (event->charCode() == ' ') {
  /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/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)
  /packages/inputmethods/LatinIME/native/jni/src/
terminal_attributes.h 55 const int charCode = BinaryFormat::getCharCodeAndForwardPointer(mDict, &mPos);
56 if (NOT_A_CHARACTER == charCode) break;
57 outWord[i] = (uint16_t)charCode;
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
rhino-python.prog 18 var charCode, data=[];
19 while ((charCode = isr.read()) >= 0) {
20 data.push(String.fromCharCode(charCode));
  /external/webkit/Source/WebCore/dom/
UIEvent.idl 35 readonly attribute long charCode;
UIEvent.cpp 67 int UIEvent::charCode() const
UIEvent.h 54 virtual int charCode() const;
KeyboardEvent.cpp 126 return charCode();
129 int KeyboardEvent::charCode() const
KeyboardEvent.idl 62 readonly attribute long charCode;
  /external/skia/src/core/
SkGlyphCache.cpp 63 // init with 0xFF so that the charCode field will be -1, which is invalid
98 uint16_t SkGlyphCache::unicharToGlyph(SkUnichar charCode) {
100 uint32_t id = SkGlyph::MakeID(charCode);
106 return fScalerContext->charToGlyphID(charCode);
120 const SkGlyph& SkGlyphCache::getUnicharAdvance(SkUnichar charCode) {
122 uint32_t id = SkGlyph::MakeID(charCode);
129 id = SkGlyph::MakeID(fScalerContext->charToGlyphID(charCode));
150 const SkGlyph& SkGlyphCache::getUnicharMetrics(SkUnichar charCode) {
152 uint32_t id = SkGlyph::MakeID(charCode);
160 id = SkGlyph::MakeID(fScalerContext->charToGlyphID(charCode));
    [all...]
SkGlyphCache.h 79 unsigned getBaseGlyphCount(SkUnichar charCode) const {
80 return fScalerContext->getBaseGlyphCount(charCode);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/fx/
content.js 55 if (event.charCode == 13)
  /external/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.cpp 100 unsigned charCode;
155 keyPressCommandsMap->set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name);
169 int mapKey = modifiers << 16 | evt->charCode();
203 if (event->charCode() < ' ')
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.cpp 239 unsigned charCode;
314 keyPressCommandsMap->set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name);
330 int mapKey = modifiers << 16 | event->charCode();
388 if (event->charCode() < ' ')
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.cpp 238 unsigned charCode;
324 keyPressCommandsMap->set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name);
340 int mapKey = modifiers << 16 | event->charCode();
398 if (event->charCode() < ' ')
  /external/webkit/Source/WebKit/wince/
WebView.h 86 bool handleKeyPress(WPARAM charCode, LPARAM keyData, bool systemKeyDown);
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.cpp 63 unsigned charCode;
404 if (event->charCode() < ' ')
425 keyPressCommandsMap->set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name);
441 int mapKey = modifiers << 16 | evt->charCode();
  /external/webkit/Source/WebKit2/WebProcess/WebPage/qt/
WebPageQt.cpp 103 unsigned charCode;
192 keyPressCommandsMap->set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name);
208 int mapKey = modifiers << 16 | evt->charCode();

Completed in 576 milliseconds

1 2 3