OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:shortcutchar
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/java/com/android/internal/view/menu/
MenuBuilder.java
804
final char
shortcutChar
= qwerty ? item.getAlphabeticShortcut() : item.getNumericShortcut();
806
(
shortcutChar
!= 0) &&
807
(
shortcutChar
== possibleChars.meta[0]
808
||
shortcutChar
== possibleChars.meta[2]
809
|| (qwerty &&
shortcutChar
== '\b' &&
854
final char
shortcutChar
= qwerty ? item.getAlphabeticShortcut() :
856
if ((
shortcutChar
== possibleChars.meta[0] &&
858
|| (
shortcutChar
== possibleChars.meta[2] &&
860
|| (qwerty &&
shortcutChar
== '\b' &&
[
all
...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
MenuBuilder.java
843
final char
shortcutChar
= qwerty ? item.getAlphabeticShortcut()
846
(
shortcutChar
!= 0) &&
847
(
shortcutChar
== possibleChars.meta[0]
848
||
shortcutChar
== possibleChars.meta[2]
849
|| (qwerty &&
shortcutChar
== '\b' &&
895
final char
shortcutChar
= qwerty ? item.getAlphabeticShortcut() :
897
if ((
shortcutChar
== possibleChars.meta[0] &&
899
|| (
shortcutChar
== possibleChars.meta[2] &&
901
|| (qwerty &&
shortcutChar
== '\b' &&
[
all
...]
Completed in 135 milliseconds