Home
last modified time | relevance | path

Searched refs:charCode (Results 1 – 25 of 62) sorted by relevance

123

/plugin/codehighlight/cp/engines/
H A Dopera.js37 charCode = evt.charCode;
39 …if((evt.ctrlKey || evt.metaKey) && evt.shiftKey && charCode!=90) { // shortcuts = ctrl||appleKey+…
40 CodePress.shortcuts(charCode?charCode:keyCode);
42 …else if(completeChars.indexOf('|'+String.fromCharCode(charCode)+'|')!=-1 && CodePress.autocomplete…
43 CodePress.complete(String.fromCharCode(charCode));
45 else if(chars.indexOf('|'+charCode+'|')!=-1||keyCode==13) { // syntax highlighting
54 else if((charCode==122||charCode==121||charCode==90) && evt.ctrlKey) { // undo and redo
55 (charCode==121||evt.shiftKey) ? CodePress.actions.redo() : CodePress.actions.undo();
176 else cCode = '['+String.fromCharCode(charCode).toLowerCase()+']';
H A Dgecko.js40 charCode = evt.charCode;
41 fromChar = String.fromCharCode(charCode);
43 …if((evt.ctrlKey || evt.metaKey) && evt.shiftKey && charCode!=90) { // shortcuts = ctrl||appleKey+…
44 CodePress.shortcuts(charCode?charCode:keyCode);
50 else if(chars.indexOf('|'+charCode+'|')!=-1||keyCode==13) { // syntax highlighting
59 else if((charCode==122||charCode==121||charCode==90) && evt.ctrlKey) { // undo and redo
60 (charCode==121||evt.shiftKey) ? CodePress.actions.redo() : CodePress.actions.undo();
63 else if(charCode==118 && evt.ctrlKey) { // handle paste
66 else if(charCode==99 && evt.ctrlKey) { // handle cut
201 else cCode = '['+String.fromCharCode(charCode).toLowerCase()+']';
H A Dmsie.js40 charCode = evt.keyCode;
41 fromChar = String.fromCharCode(charCode);
47 else if(chars.indexOf('|'+charCode+'|')!=-1||charCode==13) { // syntax highlighting
/plugin/codeprettify/code-prettify/src/
H A Dnode_prettify.js326 function encodeEscape(charCode) { argument
327 if (charCode < 0x20) {
328 return (charCode < 0x10 ? '\\x0' : '\\x') + charCode.toString(16);
330 var ch = String.fromCharCode(charCode);
H A Dprettify.js374 function encodeEscape(charCode) { argument
375 if (charCode < 0x20) {
376 return (charCode < 0x10 ? '\\x0' : '\\x') + charCode.toString(16);
378 var ch = String.fromCharCode(charCode);
H A Drun_prettify.js603 function encodeEscape(charCode) { argument
604 if (charCode < 0x20) {
605 return (charCode < 0x10 ? '\\x0' : '\\x') + charCode.toString(16);
607 var ch = String.fromCharCode(charCode);
/plugin/wysiwyg/fckeditor/editor/dialog/common/
H A Dfck_dialog_common.js75 var iCode = ( e.keyCode || e.charCode ) ;
/plugin/code3/src/
H A Dtz.js184 var charCode;
186 charCode = parseInt(entityName.substring(2), 16);
188 charCode = parseInt(entityName.substring(1), 10);
190 if (!isNaN(charCode)) {
191 decoded = String.fromCharCode(charCode);
/plugin/s5reloaded/ui/effects_support/
H A Dunittest.js54 charCode: 0
60 options.keyCode, options.charCode );
66 Event.simulateKey(element,'keypress',{charCode:command.charCodeAt(i)});
/plugin/pdfjs/pdfjs/web/
H A Dviewer.js7424 return charCode < 0x2E80;
7432 return charCode >= 0x61 && charCode <= 0x7A || charCode >= 0x41 && charCode <= 0x5A;
7436 return charCode >= 0x30 && charCode <= 0x39;
7440 return charCode === 0x20 || charCode === 0x09 || charCode === 0x0D || charCode === 0x0A;
7443 function isHan(charCode) {
7444 return charCode >= 0x3400 && charCode <= 0x9FFF || charCode >= 0xF900 && charCode <= 0xFAFF;
7448 return charCode >= 0x30A0 && charCode <= 0x30FF;
7452 return charCode >= 0x3040 && charCode <= 0x309F;
7456 return charCode >= 0xFF60 && charCode <= 0xFF9F;
7468 } else if (isAsciiAlpha(charCode) || isAsciiDigit(charCode) || charCode === 0x5F) {
[all …]
H A Dviewer.js.map1charCode","isAlphabeticalScript","isAscii","isAsciiSpace","isAsciiAlpha","isAsciiDigit","isThai","…
/plugin/fckg/fckeditor/editor/dialog/common/
H A Dfck_dialog_common.js127 var iCode = ( e.keyCode || e.charCode ) ;
/plugin/pdfjs/pdfjs/build/
H A Dpdf.worker.js32712 for (var charCode = 0; charCode < 256; charCode++) {
34912 this._map[charCode] = map[charCode];
35117 for (charCode = 0; charCode < 256; charCode++) {
36072 charCode: charCode,
36087 return a.charCode - b.charCode;
36994 for (charCode = 0; charCode < 256; charCode++) {
37048 charCode = cmapMappings[_i3].charCode;
37417 for (charCode = 0; charCode < baseEncoding.length; charCode++) {
37433 for (charCode = 0; charCode < baseEncoding.length; charCode++) {
49701 } else if (0x0590 <= charCode && charCode <= 0x05f4) {
[all …]
H A Dpdf.worker.js.map1charCode","widthsByGlyphName","preEvaluateFont","composite","df","diffLength","diffBuf","diffEntry…
/plugin/searchtablejs/
H A Dtablefilter.js971 var key=(evt.charCode)?evt.charCode:
/plugin/searchtablejs/TableFilter_EN/
H A Dtablefilter.js971 var key=(evt.charCode)?evt.charCode:
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A Deditor.worker.js.map1charCode;\n let offset;\n if (leftoverHighSurrogate !== 0) {\n charCode =…
H A Djson.worker.js.map1charCode;\n let offset;\n if (leftoverHighSurrogate !== 0) {\n charCode =…
H A D2.2.js23953 function hexDigit(charCode) { argument
23954 if (charCode < Digit0) {
23957 if (charCode <= Digit9) {
23958 return charCode - Digit0;
23960 if (charCode < a) {
23961 charCode += (a - A);
23963 if (charCode >= a && charCode <= f) {
23964 return charCode - a + 10;
36335 return (0xD800 <= charCode && charCode <= 0xDBFF);
36337 function isLowSurrogate(charCode) { argument
[all …]
/plugin/jquery/
H A Dscript.js19 …lTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.whic…
H A Djquery-1.4.2.js1996 …if ( !event.which && ((event.charCode || event.charCode === 0) ? event.charCode : event.keyCode) )…
1997 event.which = event.charCode || event.keyCode;
H A Djquery-1.4.2.min.js57 …ientTop||d&&d.clientTop||0)}if(!a.which&&(a.charCode||a.charCode===0?a.charCode:a.keyCode))a.which…
/plugin/ckgdoku/ckeditor/plugins/link/dialogs/
H A Dlink.js.unc517 var charCode,
522 charCode = address.charCodeAt( i );
523 encodedChars.push( charCode );
/plugin/ckgedit/ckeditor/plugins/link/dialogs/
H A Dlink.js.unc518 var charCode,
523 charCode = address.charCodeAt( i );
524 encodedChars.push( charCode );
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
H A Dpdfmake.js2893 function isSpace(charCode) {
2894 …return ((charCode <= 160 && (charCode >= 9 && charCode <= 13) || charCode == 32 || charCode == 160…
2895 …(charCode >= 8192 && (charCode <= 8202 || charCode == 8232 || charCode == 8233 || charCode == 8239…
13373 _.each(charTypesInInline, function(charCode){
13374 if(!_.includes(self.charCatalogue[index], charCode)){
13375 self.charCatalogue[index].push(charCode);
19668 if (charCode >= 0xD800 && charCode <= 0xDBFF) {
19695 var charCode = charStr.charCodeAt(end);
19697 if (charCode >= 0xD800 && charCode <= 0xDBFF) {
29345 var charCode, i, scale, width, _i, _ref;
[all …]

123