Home
last modified time | relevance | path

Searched refs:Constants (Results 1 – 25 of 180) sorted by relevance

12345678

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DKeyboardCodesSet.java19 import com.android.inputmethod.latin.common.Constants;
59 Constants.CODE_TAB,
60 Constants.CODE_ENTER,
61 Constants.CODE_SPACE,
62 Constants.CODE_SHIFT,
63 Constants.CODE_CAPSLOCK,
64 Constants.CODE_SWITCH_ALPHA_SYMBOL,
65 Constants.CODE_OUTPUT_TEXT,
66 Constants.CODE_DELETE,
67 Constants.CODE_SETTINGS,
[all …]
DKeyboardState.java23 import com.android.inputmethod.latin.common.Constants;
356 Log.d(TAG, "onPressKey: code=" + Constants.printableCode(code) in onPressKey()
360 if (code != Constants.CODE_SHIFT) { in onPressKey()
365 if (code == Constants.CODE_SHIFT) { in onPressKey()
367 } else if (code == Constants.CODE_CAPSLOCK) { in onPressKey()
369 } else if (code == Constants.CODE_SWITCH_ALPHA_SYMBOL) { in onPressKey()
396 Log.d(TAG, "onReleaseKey: code=" + Constants.printableCode(code) in onReleaseKey()
400 if (code == Constants.CODE_SHIFT) { in onReleaseKey()
402 } else if (code == Constants.CODE_CAPSLOCK) { in onReleaseKey()
404 } else if (code == Constants.CODE_SWITCH_ALPHA_SYMBOL) { in onReleaseKey()
[all …]
DMoreKeySpec.java25 import com.android.inputmethod.latin.common.Constants;
65 if (code == Constants.CODE_UNSPECIFIED) { in MoreKeySpec()
68 mCode = Constants.CODE_OUTPUT_TEXT; in MoreKeySpec()
118 final String output = (mCode == Constants.CODE_OUTPUT_TEXT ? mOutputText in toString()
119 : Constants.printableCode(mCode)); in toString()
134 } else if (code == Constants.CODE_OUTPUT_TEXT) { in addLetter()
143 } else if (code == Constants.CODE_OUTPUT_TEXT && mTexts.contains(moreKey.mOutputText)) { in contains()
173 private static final char COMMA = Constants.CODE_COMMA;
174 private static final char BACKSLASH = Constants.CODE_BACKSLASH;
176 StringUtils.newSingleCodePointString(Constants.CODE_PERCENT);
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppReceiver.java57 private static final boolean D = Constants.DEBUG;
58 private static final boolean V = Constants.VERBOSE;
83 Constants.THIS_PACKAGE_NAME); in onReceive()
113 } else if (action.equals(Constants.ACTION_INCOMING_FILE_CONFIRM)) { in onReceive()
123 } else if (action.equals(Constants.ACTION_DECLINE)) { in onReceive()
132 } else if (action.equals(Constants.ACTION_ACCEPT)) { in onReceive()
141 } else if (action.equals(Constants.ACTION_OPEN) || action.equals(Constants.ACTION_LIST)) { in onReceive()
143 if (action.equals(Constants.ACTION_OPEN)) { in onReceive()
172 } else if (action.equals(Constants.ACTION_OPEN_OUTBOUND_TRANSFER)) { in onReceive()
179 } else if (action.equals(Constants.ACTION_OPEN_INBOUND_TRANSFER)) { in onReceive()
[all …]
DBluetoothOppNotification.java59 private static final boolean V = Constants.VERBOSE;
302 Intent intent = new Intent(Constants.ACTION_BT_OPP_TRANSFER_PROGRESS); in updateActiveNotification()
304 intent.putExtra(Constants.EXTRA_BT_OPP_TRANSFER_DIRECTION, in updateActiveNotification()
305 Constants.DIRECTION_BLUETOOTH_INCOMING); in updateActiveNotification()
307 intent.putExtra(Constants.EXTRA_BT_OPP_TRANSFER_DIRECTION, in updateActiveNotification()
308 Constants.DIRECTION_BLUETOOTH_OUTGOING); in updateActiveNotification()
310 intent.putExtra(Constants.EXTRA_BT_OPP_TRANSFER_ID, item.id); in updateActiveNotification()
311 intent.putExtra(Constants.EXTRA_BT_OPP_TRANSFER_PROGRESS, progress); in updateActiveNotification()
312 intent.putExtra(Constants.EXTRA_BT_OPP_ADDRESS, item.destination); in updateActiveNotification()
313 mContext.sendBroadcast(intent, Constants.HANDOVER_STATUS_PERMISSION); in updateActiveNotification()
[all …]
DBluetoothOppReceiveFileInfo.java56 private static final boolean D = Constants.DEBUG;
57 private static final boolean V = Constants.VERBOSE;
116 base = new File(root + Constants.DEFAULT_STORE_SUBDIR); in generateFileInfo()
118 if (D) Log.d(Constants.TAG, "Receive File aborted - can't create base directory " in generateFileInfo()
124 if (D) Log.d(Constants.TAG, "Receive File aborted - no external storage"); in generateFileInfo()
134 if (D) Log.d(Constants.TAG, "Receive File aborted - not enough free space"); in generateFileInfo()
164 if (V) Log.v(Constants.TAG, "Generated received filename " + fullfilename); in generateFileInfo()
173 if (V) Log.v(Constants.TAG, "New display name " + displayName); in generateFileInfo()
182 if (D) Log.e(Constants.TAG, "Error when creating file " + fullfilename); in generateFileInfo()
196 Constants.DEFAULT_STORE_SUBDIR; in safeCanonicalPath()
[all …]
DBluetoothOppHandoverReceiver.java30 private static final boolean D = Constants.DEBUG;
31 private static final boolean V = Constants.VERBOSE;
37 if (action.equals(Constants.ACTION_HANDOVER_SEND) || in onReceive()
38 action.equals(Constants.ACTION_HANDOVER_SEND_MULTIPLE)) { in onReceive()
46 if (action.equals(Constants.ACTION_HANDOVER_SEND)) { in onReceive()
57 } else if (action.equals(Constants.ACTION_HANDOVER_SEND_MULTIPLE)) { in onReceive()
71 } else if (action.equals(Constants.ACTION_WHITELIST_DEVICE)) { in onReceive()
77 } else if (action.equals(Constants.ACTION_STOP_HANDOVER)) { in onReceive()
78 int id = intent.getIntExtra(Constants.EXTRA_BT_OPP_TRANSFER_ID, -1); in onReceive()
DBluetoothOppObexServerSession.java68 private static final boolean D = Constants.DEBUG;
69 private static final boolean V = Constants.VERBOSE;
192 if (V) Constants.logHeader(request); in onPut()
243 || (!isWhitelisted && !Constants.mimeTypeMatches(mimeType, in onPut()
244 Constants.ACCEPTABLE_SHARE_INBOUND_TYPES)) in onPut()
245 || Constants.mimeTypeMatches(mimeType, in onPut()
246 Constants.UNACCEPTABLE_SHARE_INBOUND_TYPES))) { in onPut()
343 Constants.updateShareStatus(mContext, mInfo.mId, status); in onPut()
363 Constants.updateShareStatus(mContext, mInfo.mId, status); in onPut()
400 Constants.updateShareStatus(mContext, mInfo.mId, status); in onPut()
[all …]
DBluetoothOppTransfer.java73 private static final boolean D = Constants.DEBUG;
75 private static final boolean V = Constants.VERBOSE;
154 mBatch.mStatus = Constants.BATCH_STATUS_FAILED; in handleMessage()
200 mBatch.mStatus = Constants.BATCH_STATUS_FINISHED; in handleMessage()
212 mBatch.mStatus = Constants.BATCH_STATUS_FAILED; in handleMessage()
231 mBatch.mStatus = Constants.BATCH_STATUS_FAILED; in handleMessage()
334 Constants.sendIntentIfCompleted(mContext, contentUri, info.mStatus); in markBatchFailed()
374 mBatch.mStatus = Constants.BATCH_STATUS_FAILED; in start()
426 mBatch.mStatus = Constants.BATCH_STATUS_RUNNING; in startObexSession()
452 mBatch.mStatus = Constants.BATCH_STATUS_FAILED; in startObexSession()
[all …]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
DAbstractLayoutBase.java21 import com.android.inputmethod.latin.common.Constants;
137 protected static final ExpectedKey DELETE_KEY = key(ICON_DELETE, Constants.CODE_DELETE);
138 protected static final ExpectedKey TAB_KEY = key(ICON_TAB, Constants.CODE_TAB);
139 protected static final ExpectedKey SHORTCUT_KEY = key(ICON_SHORTCUT, Constants.CODE_SHORTCUT);
140 protected static final ExpectedKey SETTINGS_KEY = key(ICON_SETTINGS, Constants.CODE_SETTINGS);
142 ICON_LANGUAGE_SWITCH, Constants.CODE_LANGUAGE_SWITCH);
143 protected static final ExpectedKey ENTER_KEY = key(ICON_ENTER, Constants.CODE_ENTER);
144 …protected static final ExpectedKey EMOJI_ACTION_KEY = key(ICON_EMOJI_ACTION, Constants.CODE_EMOJI);
145 …protected static final ExpectedKey EMOJI_NORMAL_KEY = key(ICON_EMOJI_NORMAL, Constants.CODE_EMOJI);
146 protected static final ExpectedKey SPACE_KEY = key(ICON_SPACE, Constants.CODE_SPACE);
[all …]
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DHelpers.java26 import static com.android.providers.downloads.Constants.TAG;
275 if (Constants.LOGVV) {
276 Log.v(Constants.TAG, "getting filename from hint");
290 if (Constants.LOGVV) {
291 Log.v(Constants.TAG, "getting filename from content-disposition");
306 if (Constants.LOGVV) {
307 Log.v(Constants.TAG, "getting filename from content-location");
325 if (Constants.LOGVV) {
326 Log.v(Constants.TAG, "getting filename from uri");
335 if (Constants.LOGVV) {
[all …]
DDownloadProvider.java244 if (Constants.LOGVV) { in onCreate()
245 Log.v(Constants.TAG, "populating new database"); in onCreate()
265 Log.i(Constants.TAG, "Upgrading downloads database from version " + oldV in onUpgrade()
271 Log.i(Constants.TAG, "Downgrading downloads database from version " + oldV in onUpgrade()
402 Constants.RETRY_AFTER_X_REDIRECT_COUNT + " INTEGER, " + in createDownloadsTable()
406 Constants.OTA_UPDATE + " BOOLEAN, " + in createDownloadsTable()
410 Constants.NO_SYSTEM_FILES + " BOOLEAN, " + in createDownloadsTable()
424 Constants.ETAG + " TEXT, " + in createDownloadsTable()
425 Constants.UID + " INTEGER, " + in createDownloadsTable()
431 Log.e(Constants.TAG, "couldn't create table in downloads database"); in createDownloadsTable()
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
DEvent.java21 import com.android.inputmethod.latin.common.Constants;
152 Constants.EXTERNAL_KEYBOARD_COORDINATE, Constants.EXTERNAL_KEYBOARD_COORDINATE, in createHardwareKeypressEvent()
162 Constants.EXTERNAL_KEYBOARD_COORDINATE, Constants.EXTERNAL_KEYBOARD_COORDINATE, in createDeadEvent()
177 Constants.NOT_A_COORDINATE, Constants.NOT_A_COORDINATE, in createEventForCodePointFromUnknownSource()
205 Constants.SUGGESTION_STRIP_COORDINATE, Constants.SUGGESTION_STRIP_COORDINATE, in createSuggestionPickedEvent()
220 Constants.NOT_A_COORDINATE, Constants.NOT_A_COORDINATE, in createSoftwareTextEvent()
233 NOT_A_KEY_CODE, Constants.SUGGESTION_STRIP_COORDINATE, in createPunctuationSuggestionPickedEvent()
234 Constants.SUGGESTION_STRIP_COORDINATE, suggestedWordInfo, FLAG_NONE, in createPunctuationSuggestionPickedEvent()
247 moveAmount, Constants.NOT_A_COORDINATE, null, FLAG_NONE, null); in createCursorMovedEvent()
266 Constants.NOT_A_COORDINATE, Constants.NOT_A_COORDINATE, in createNotHandledEvent()
DDeadKeyCombiner.java22 import com.android.inputmethod.latin.common.Constants;
46 private static final int ACCENT_DOT_BELOW = Constants.CODE_PERIOD; // approximate
50 private static final int ACCENT_HORN = Constants.CODE_SINGLE_QUOTE; // approximate
56 private static final int ACCENT_STROKE = Constants.CODE_DASH; // approximate
65 private static final int ACCENT_GRAVE_LEGACY = Constants.CODE_GRAVE_ACCENT;
66 private static final int ACCENT_CIRCUMFLEX_LEGACY = Constants.CODE_CIRCUMFLEX_ACCENT;
67 private static final int ACCENT_TILDE_LEGACY = Constants.CODE_TILDE;
259 if (Constants.CODE_DELETE == event.mKeyCode) { in processEvent()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
DInputLogic.java48 import com.android.inputmethod.latin.common.Constants;
445 if (processedEvent.mKeyCode != Constants.CODE_DELETE in onCodeInput()
446 || inputTransaction.mTimestamp > mLastKeyTime + Constants.LONG_PRESS_MILLISECONDS) { in onCodeInput()
458 if (processedEvent.mCodePoint != Constants.CODE_SPACE) { in onCodeInput()
478 processedEvent.mKeyCode == Constants.CODE_DELETE)) { in onCodeInput()
482 if (!inputTransaction.didAutoCorrect() && processedEvent.mKeyCode != Constants.CODE_SHIFT in onCodeInput()
483 && processedEvent.mKeyCode != Constants.CODE_CAPSLOCK in onCodeInput()
484 && processedEvent.mKeyCode != Constants.CODE_SWITCH_ALPHA_SYMBOL) in onCodeInput()
486 if (Constants.CODE_DELETE != processedEvent.mKeyCode) { in onCodeInput()
508 Constants.EVENT_BACKSPACE); in onStartBatchInput()
[all …]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
DInputLogicTests.java25 import com.android.inputmethod.latin.common.Constants;
58 type(Constants.CODE_DELETE); in testPickSuggestionThenBackspace()
73 type(Constants.CODE_DELETE); in testPickAutoCorrectionThenBackspace()
87 type(Constants.CODE_DELETE); in testPickTypedWordOverAutoCorrectionThenBackspace()
102 type(Constants.CODE_DELETE); in testPickDifferentSuggestionThenBackspace()
124 type(Constants.CODE_DELETE); in testDeleteSelection()
145 type(Constants.CODE_DELETE); in testDeleteSelectionTwice()
146 type(Constants.CODE_DELETE); in testDeleteSelectionTwice()
176 type(Constants.CODE_DELETE); in testAutoCorrectWithPeriodThenRevert()
189 type(Constants.CODE_DELETE); in testAutoCorrectWithSpaceThenRevert()
[all …]
DInputLogicTestsDeadKeys.java22 import com.android.inputmethod.latin.common.Constants;
36 Constants.NOT_A_COORDINATE, Constants.NOT_A_COORDINATE, in addCodePoint()
45 Constants.NOT_A_COORDINATE, Constants.NOT_A_COORDINATE, in addKey()
70 .addKey(Constants.CODE_DELETE) in testDeadCircumflexBackspace()
97 .addCodePoint(Constants.CODE_SPACE, false) in testDeadDiaeresisSpace()
100 .addCodePoint(Constants.CODE_ENTER, false) in testDeadDiaeresisSpace()
122 Constants.CODE_DELETE, Constants.NOT_A_COORDINATE, Constants.NOT_A_COORDINATE, in testDeadAcuteLetterBackspace()
157 .addKey(Constants.CODE_DELETE) in testDoubleDeadOgonek()
190 .addKey(Constants.CODE_DELETE) in testDeadCircumflexDeadDiaeresisBackspace()
208 .addKey(Constants.CODE_DELETE) in testDeadCircumflexDoubleDeadDiaeresisBackspace()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
DKeyCodeDescriptionMapper.java30 import com.android.inputmethod.latin.common.Constants;
57 mKeyCodeMap.put(Constants.CODE_SPACE, R.string.spoken_description_space); in KeyCodeDescriptionMapper()
58 mKeyCodeMap.put(Constants.CODE_DELETE, R.string.spoken_description_delete); in KeyCodeDescriptionMapper()
59 mKeyCodeMap.put(Constants.CODE_ENTER, R.string.spoken_description_return); in KeyCodeDescriptionMapper()
60 mKeyCodeMap.put(Constants.CODE_SETTINGS, R.string.spoken_description_settings); in KeyCodeDescriptionMapper()
61 mKeyCodeMap.put(Constants.CODE_SHIFT, R.string.spoken_description_shift); in KeyCodeDescriptionMapper()
62 mKeyCodeMap.put(Constants.CODE_SHORTCUT, R.string.spoken_description_mic); in KeyCodeDescriptionMapper()
63 mKeyCodeMap.put(Constants.CODE_SWITCH_ALPHA_SYMBOL, R.string.spoken_description_to_symbol); in KeyCodeDescriptionMapper()
64 mKeyCodeMap.put(Constants.CODE_TAB, R.string.spoken_description_tab); in KeyCodeDescriptionMapper()
65 mKeyCodeMap.put(Constants.CODE_LANGUAGE_SWITCH, in KeyCodeDescriptionMapper()
[all …]
/packages/apps/TV/tests/func/src/com/android/tv/tests/ui/
DLiveChannelsAppTest.java29 import com.android.tv.testing.uihelper.Constants;
56 assertHas(mDevice, Constants.MENU, false); in testSettingsCancel()
66 assertHas(mDevice, Constants.MENU, false); in testClosedCaptionsCancel()
71 data.mTvTrackInfos.add(com.android.tv.testing.Constants.SVGA_VIDEO_TRACK); in testDisplayModeCancel()
72 data.mSelectedVideoTrackId = com.android.tv.testing.Constants.SVGA_VIDEO_TRACK in testDisplayModeCancel()
82 assertHas(mDevice, Constants.MENU, false); in testDisplayModeCancel()
88 assertWaitForCondition(mDevice, Until.hasObject(Constants.MENU)); in testMenu()
94 data.mTvTrackInfos.add(com.android.tv.testing.Constants.GENERIC_AUDIO_TRACK); in testMultiAudioCancel()
103 assertHas(mDevice, Constants.MENU, false); in testMultiAudioCancel()
116 assertHas(mDevice, Constants.MENU, false); in testPinCancel()
DChannelBannerViewTest.java25 import com.android.tv.testing.uihelper.Constants;
37 + Constants.MAX_SHOW_DELAY_MILLIS; in setUp()
42 assertWaitForCondition(mDevice, Until.hasObject(Constants.CHANNEL_BANNER)); in testChannelBannerAppearDisappear()
43 assertWaitForCondition(mDevice, Until.gone(Constants.CHANNEL_BANNER), mShowDurationMillis); in testChannelBannerAppearDisappear()
48 assertWaitForCondition(mDevice, Until.hasObject(Constants.CHANNEL_BANNER)); in testChannelBannerShownWhenTune()
50 assertWaitForCondition(mDevice, Until.hasObject(Constants.CHANNEL_BANNER)); in testChannelBannerShownWhenTune()
DTimeoutTest.java25 import com.android.tv.testing.uihelper.Constants;
40 assertWaitForCondition(mDevice, Until.hasObject(Constants.MENU)); in testMenu()
41 assertWaitForCondition(mDevice, Until.gone(Constants.MENU), in testMenu()
49 Until.hasObject(Constants.PROGRAM_GUIDE)); in testProgramGuide()
50 assertWaitForCondition(mDevice, Until.gone(Constants.PROGRAM_GUIDE), in testProgramGuide()
52 assertHas(mDevice, Constants.MENU, false); in testProgramGuide()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
DMockKeyboardSwitcher.java22 import com.android.inputmethod.latin.common.Constants;
33 public static final int CAP_MODE_OFF = Constants.TextUtils.CAP_MODE_OFF;
37 public static final int CODE_SHIFT = Constants.CODE_SHIFT;
38 public static final int CODE_SYMBOL = Constants.CODE_SWITCH_ALPHA_SYMBOL;
39 public static final int CODE_SPACE = Constants.CODE_SPACE;
40 public static final int CODE_AUTO_CAPS_TRIGGER = Constants.CODE_SPACE;
180 if (Constants.isLetterCode(code)) { in onCodeInput()
189 Constants.NOT_A_COORDINATE, Constants.NOT_A_COORDINATE, in onCodeInput()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DCapsModeUtils.java23 import com.android.inputmethod.latin.common.Constants;
76 return (codePoint == Constants.CODE_DOUBLE_QUOTE || codePoint == Constants.CODE_SINGLE_QUOTE in isStartPunctuation()
77 || codePoint == Constants.CODE_INVERTED_QUESTION_MARK in isStartPunctuation()
78 || codePoint == Constants.CODE_INVERTED_EXCLAMATION_MARK in isStartPunctuation()
151 char prevChar = Constants.CODE_SPACE; in getCapsMode()
155 if (!Character.isSpaceChar(prevChar) && prevChar != Constants.CODE_TAB) break; in getCapsMode()
164 if (Constants.CODE_ENTER == prevChar) { in getCapsMode()
169 if (Constants.CODE_COMMA == prevChar && hasNewLine) { in getCapsMode()
207 if (c != Constants.CODE_DOUBLE_QUOTE && c != Constants.CODE_SINGLE_QUOTE in getCapsMode()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
DKeyboardLayoutSetNavigateMoreKeysBase.java27 import com.android.inputmethod.latin.common.Constants;
289 doTestNavigationMoreKeysOf(Constants.CODE_ENTER, subtype, KeyboardId.ELEMENT_ALPHABET, in testMoreKeysOfEnterKey()
292 doTestNavigationMoreKeysOf(Constants.CODE_ENTER, subtype, KeyboardId.ELEMENT_ALPHABET, in testMoreKeysOfEnterKey()
295 doTestNavigationMoreKeysOf(Constants.CODE_ENTER, subtype, KeyboardId.ELEMENT_ALPHABET, in testMoreKeysOfEnterKey()
298 doTestNavigationMoreKeysOf(Constants.CODE_ENTER, subtype, KeyboardId.ELEMENT_PHONE, in testMoreKeysOfEnterKey()
301 doTestNavigationMoreKeysOf(Constants.CODE_ENTER, subtype, KeyboardId.ELEMENT_NUMBER, in testMoreKeysOfEnterKey()
304 doTestNavigationMoreKeysOf(Constants.CODE_ENTER, subtype, KeyboardId.ELEMENT_NUMBER, in testMoreKeysOfEnterKey()
307 doTestNavigationMoreKeysOf(Constants.CODE_ENTER, subtype, KeyboardId.ELEMENT_NUMBER, in testMoreKeysOfEnterKey()
310 doTestNavigationMoreKeysOf(Constants.CODE_ENTER, subtype, KeyboardId.ELEMENT_NUMBER, in testMoreKeysOfEnterKey()
315 doTestNavigationWithEmojiMoreKeysOf(Constants.CODE_ENTER, subtype, in testMoreKeysOfEnterKey()
[all …]
/packages/apps/TV/tests/common/src/com/android/tv/testing/uihelper/
DUiDeviceAsserts.java18 import static com.android.tv.testing.uihelper.Constants.FOCUSED_VIEW;
50 assertWaitForCondition(uiDevice, searchCondition, Constants.MAX_SHOW_DELAY_MILLIS); in assertWaitForCondition()
74 return waitForCondition(uiDevice, searchCondition, Constants.MAX_SHOW_DELAY_MILLIS); in waitForCondition()
79 long adjustedTimeout = timeout + Math.max(Constants.MIN_EXTRA_TIMEOUT, in waitForCondition()
80 (long) (timeout * Constants.EXTRA_TIMEOUT_PERCENT)); in waitForCondition()
113 UiObject2Asserts.getAdjustedTimeout(Constants.MAX_SHOW_DELAY_MILLIS)); in assertNavigateTo()

12345678