Home | History | Annotate | Download | only in cocoa

Lines Matching full:characters

32   // for printable characters (but not for stuff like arrow keys etc).
50 // (defined in NSText.h as 0x7F). Note that these are not the same characters
69 // cmd-opt-a gives some weird char as characters and "a" as
70 // charactersWithoutModifiers with an US layout, but an "a" as characters and
76 [[event characters] length] > 0 &&
77 [[event characters] characterAtIndex:0] <= 0x7f)
78 eventString = [event characters];
80 // When both |characters| and |charactersIgnoringModifiers| are ascii, we
81 // want to use |characters| if it's a character and
86 [[event characters] length] > 0 &&
87 [[event characters] characterAtIndex:0] <= 0x7f &&
88 isalpha([[event characters] characterAtIndex:0]))
89 eventString = [event characters];
91 // Clear shift key for printable characters.