Home
last modified time | relevance | path

Searched refs:FLAG_NONE (Results 1 – 5 of 5) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
DEvent.java69 final private static int FLAG_NONE = 0; field in Event
145 null /* suggestedWordInfo */, isKeyRepeat ? FLAG_REPEAT : FLAG_NONE, null); in createSoftwareKeypressEvent()
153 null /* suggestedWordInfo */, isKeyRepeat ? FLAG_REPEAT : FLAG_NONE, next); in createHardwareKeypressEvent()
178 null /* suggestedWordInfo */, FLAG_NONE, null /* next */); in createEventForCodePointFromUnknownSource()
194 x, y, null /* suggestedWordInfo */, FLAG_NONE, null /* next */); in createEventForCodePointFromAlreadyTypedText()
206 suggestedWordInfo, FLAG_NONE, null /* next */); in createSuggestionPickedEvent()
221 null /* suggestedWordInfo */, FLAG_NONE, null /* next */); in createSoftwareTextEvent()
234 Constants.SUGGESTION_STRIP_COORDINATE, suggestedWordInfo, FLAG_NONE, in createPunctuationSuggestionPickedEvent()
247 moveAmount, Constants.NOT_A_COORDINATE, null, FLAG_NONE, null); in createCursorMovedEvent()
267 null /* suggestedWordInfo */, FLAG_NONE, null); in createNotHandledEvent()
/packages/apps/KeyChain/src/com/android/keychain/
DKeyChainService.java306 KeyStore.UID_SELF, KeyStore.FLAG_NONE)) {
313 KeyStore.UID_SELF, KeyStore.FLAG_NONE)) {
451 Credentials.USER_PRIVATE_KEY + alias, privateKey, uid, KeyStore.FLAG_NONE)) {
457 uid, KeyStore.FLAG_NONE)) {
466 KeyStore.FLAG_NONE)) {
/packages/apps/KeyChain/support/src/com/android/keychain/tests/support/
DKeyChainServiceTestSupport.java52 return mKeyStore.put(key, value, KeyStore.UID_SELF, KeyStore.FLAG_NONE);
56 return mKeyStore.importKey(key, value, KeyStore.UID_SELF, KeyStore.FLAG_NONE);
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/
DImapStore.java44 public static final int FLAG_NONE = 0x00; // No flags field in ImapStore
/packages/apps/Dialer/java/com/android/voicemail/impl/imap/
DImapHelper.java121 int auth = ImapStore.FLAG_NONE; in ImapHelper()