HomeSort by relevance Sort by last modified time
    Searched defs:mockime (Results 1 - 11 of 11) sorted by null

  /cts/tests/inputmethod/mockime/src/com/android/cts/mockime/
ImeState.java 17 package com.android.cts.mockime;
25 * An immutable object that stores several runtime state of {@link MockIme}.
32 * @return {@code true} if {@link MockIme#getCurrentInputBinding()} returned non-null
40 * @return {@code true} if {@link MockIme#getCurrentInputConnection()} returned non-dummy
SettingsProvider.java 17 package com.android.cts.mockime;
33 static final String AUTHORITY = "com.android.cts.mockime.provider";
ImeEventStreamTestUtils.java 17 package com.android.cts.mockime;
180 * Wait until an event that matches the given command is consumed by the {@link MockIme}.
294 * Waits until {@code MockIme} does not send {@code "onInputViewLayoutChanged"} event
301 * @param stableThresholdTime threshold time to consider that {@link MockIme}'s layout is
303 * @return last {@link ImeLayoutInfo} if {@link MockIme} sent one or more
ImeCommand.java 17 package com.android.cts.mockime;
MockImeSessionRule.java 16 package com.android.cts.mockime;
26 import com.android.cts.mockime.ImeSettings.Builder;
ImeEventStream.java 17 package com.android.cts.mockime;
35 * {@link ImeEvent} sent from the {@link MockIme}.
ImeLayoutInfo.java 17 package com.android.cts.mockime;
32 * is called back for the input view (the view returned from {@link MockIme#onCreateInputView()}).
ImeSettings.java 17 package com.android.cts.mockime;
27 * An immutable data store to control the behavior of {@link MockIme}.
125 * <p>By default, fullscreen mode is not allowed in {@link MockIme}.</p>
128 * @see MockIme#onEvaluateFullscreenMode()
136 * Sets the background color of the {@link MockIme}.
167 * the main {@link MockIme} window.
170 * {@link MockIme} tries to render the navigation bar by itself.</p>
185 * the main soft input view (the returned view from {@link MockIme#onCreateInputView()}).
196 * Controls whether {@link MockIme} is allowed to change the behavior based on
204 * writing tests so by default {@link MockIme} tries to cancel those behaviors. Thi
    [all...]
ImeEvent.java 17 package com.android.cts.mockime;
29 * An immutable object that stores event happened in the {@link MockIme}.
MockIme.java 17 package com.android.cts.mockime;
72 public final class MockIme extends InputMethodService {
74 private static final String TAG = "MockIme";
76 private static final String PACKAGE_NAME = "com.android.cts.mockime";
79 return new ComponentName(PACKAGE_NAME, MockIme.class.getName());
602 * Event tracing helper class for {@link MockIme}.
607 private final MockIme mIme;
624 Tracer(@NonNull MockIme mockIme) {
625 mIme = mockIme;
    [all...]
MockImeSession.java 17 package com.android.cts.mockime;
58 * <p>To use {@link MockIme} via {@link MockImeSession}, you need to </p>
63 "com.android.cts.mockime.action.IME_EVENT." + SystemClock.elapsedRealtimeNanos();
177 return MockIme.getComponentName();
181 return MockIme.getImeId();
190 // Make sure that MockIME is not selected.
214 PollingCheck.check("Make sure that MockIME becomes available", TIMEOUT,
226 * {@link MockIme}.
229 * {@link MockIme} (e.g. via {@link BroadcastReceiver}
232 * @param imeSettings Key-value pairs to be passed to the {@link MockIme}
    [all...]

Completed in 770 milliseconds