Searched defs:Key (Results 1 - 13 of 13) sorted by relevance

/packages/inputmethods/LatinIME/tools/dicttool/compat/com/android/inputmethod/keyboard/
H A DKey.java20 public class Key { class
/packages/apps/Test/connectivity/sl4n/rapidjson/example/simplereader/
H A Dsimplereader.cpp20 bool Key(const char* str, SizeType length, bool copy) { function in struct:MyHandler
21 cout << "Key(" << str << ", " << length << ", " << boolalpha << copy << ")" << endl;
/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedViewIconCache.java34 public static class Key { class in class:PagedViewIconCache
43 public Key(ApplicationInfo info) { method in class:PagedViewIconCache.Key
47 public Key(ResolveInfo info) { method in class:PagedViewIconCache.Key
53 public Key(AppWidgetProviderInfo info) { method in class:PagedViewIconCache.Key
67 if (o instanceof Key) {
68 Key k = (Key) o;
79 private final HashMap<Key, Bitmap> mIconOutlineCache = new HashMap<Key, Bitmap>();
82 for (Key ke
[all...]
/packages/apps/Test/connectivity/sl4n/rapidjson/example/capitalize/
H A Dcapitalize.cpp34 bool Key(const char* str, SizeType length, bool copy) { return String(str, length, copy); } function in struct:CapitalizeFilter
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
H A Dprettywriter.h91 bool Key(const Ch* str, SizeType length, bool copy = false) { return String(str, length, copy); } function in class:PrettyWriter
142 bool Key(const Ch* str) { return Key(str, internal::StrLen(str)); } function in class:PrettyWriter
H A Dwriter.h140 bool Key(const Ch* str, SizeType length, bool copy = false) { return String(str, length, copy); } function in class:Writer
176 bool Key(const Ch* str) { return Key(str, internal::StrLen(str)); } function in class:Writer
H A Ddocument.h1547 if (!handler.Key(m->name.GetString(), m->name.GetStringLength(), (m->name.flags_ & kCopyFlag) != 0))
2035 bool Key(const Ch* str, SizeType length, bool copy) { return String(str, length, copy); } function in class:GenericDocument
H A Dreader.h166 bool Key(const Ch* str, SizeType length, bool copy);
196 bool Key(const Ch* str, SizeType len, bool copy) { return static_cast<Override&>(*this).String(str, len, copy); } function in struct:BaseReaderHandler
649 success = (isKey ? handler.Key(str, SizeType(length), false) : handler.String(str, SizeType(length), false));
657 success = (isKey ? handler.Key(str, length, true) : handler.String(str, length, true));
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
H A Dvaluetest.cpp1326 bool Key(const char*, SizeType, bool) { return e != 9; } function in struct:TerminateHandler
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/form/
H A DMultiPagedForm.java48 private enum Key { enum in class:MultiPagedForm
432 Key key = getKeyFromKey(action.getKey());
461 private Key getKeyFromKey(String key) {
463 return Key.valueOf(key);
484 actions.add(new Action.Builder().key(Key.CANCEL.name())
486 actions.add(new Action.Builder().key(Key.DONE.name())
/packages/apps/MusicFX/src/com/android/musicfx/
H A DControlPanelEffect.java61 static enum Key { enum in class:ControlPanelEffect
167 final boolean isGlobalEnabled = prefs.getBoolean(Key.global_enabled.toString(),
169 editor.putBoolean(Key.global_enabled.toString(), isGlobalEnabled);
173 final boolean isVIEnabled = prefs.getBoolean(Key.virt_enabled.toString(),
176 final int vIStrength = prefs.getInt(Key.virt_strength.toString(),
179 editor.putBoolean(Key.virt_enabled.toString(), isVIEnabled);
180 editor.putInt(Key.virt_strength.toString(), vIStrength);
187 editor.putBoolean(Key.virt_strength_supported.toString(),
199 final boolean isBBEnabled = prefs.getBoolean(Key.bb_enabled.toString(),
201 final int bBStrength = prefs.getInt(Key
[all...]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DKeyboard.java53 * &lt;Key android:keyLabel="A" /&gt;
66 private static final String TAG_KEY = "Key";
116 /** Key instance for the shift key, if present */
117 private Key mShiftKey;
119 /** Key index for the shift key, if present */
138 private List<Key> mKeys;
141 private List<Key> mModifierKeys;
222 public static class Key { class in class:Keyboard
306 public Key(Row parent) { method in class:Keyboard.Key
323 public Key(Resource method in class:Keyboard.Key
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKey.java52 public class Key implements Comparable<Key> { class in inherits:Comparable
207 /** Key is enabled and responds on press */
214 public Key(@Nullable final String label, final int iconId, final int code, method in class:Key
246 * specification string, Key attribute array, key style, and etc.
249 * @param keyAttr the Key XML attributes array.
255 public Key(@Nullable final String keySpec, @Nonnull final TypedArray keyAttr, method in class:Key
414 protected Key(@Nonnull final Key key) { method in class:Key
418 private Key( method in class:Key
[all...]

Completed in 400 milliseconds