Home | History | Annotate | Download | only in expected

Lines Matching refs:mCode

56         private final int mCode;
58 Code(final int code) { mCode = code; }
62 if (Constants.isLetterCode(mCode)) {
63 final String codeString = StringUtils.newSingleCodePointString(mCode);
74 return new CasePreservedCode(mCode);
79 return StringUtils.codePointCount(text) == 1 && text.codePointAt(0) == mCode;
84 return mCode == key.getCode();
89 return mCode == moreKeySpec.mCode;
94 return (output instanceof Code) && mCode == ((Code)output).mCode;
99 return Constants.isLetterCode(mCode) ? StringUtils.newSingleCodePointString(mCode)
100 : Constants.printableCode(mCode);
145 return moreKeySpec.mCode == Constants.CODE_OUTPUT_TEXT