Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:charCode

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;