Searched refs:mConnection (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/input/
H A DImeTest.java46 private TestAdapterInputConnection mConnection; field in class:ImeTest
74 mConnection = (TestAdapterInputConnection) getAdapterInputConnection();
77 waitAndVerifyEditableCallback(mConnection.mImeUpdateQueue, 0, "", 0, 0, -1, -1);
86 mConnection.setComposingText("hello", 1);
87 waitAndVerifyEditableCallback(mConnection.mImeUpdateQueue, 1, "hello", 5, 5, 0, 5);
91 waitAndVerifyEditableCallback(mConnection.mImeUpdateQueue, 2, "", 0, 0, -1, -1);
98 mConnection.setComposingText("h", 1);
99 waitAndVerifyEditableCallback(mConnection.mImeUpdateQueue, 1, "h", 1, 1, 0, 1);
102 mConnection.setComposingText("he", 1);
103 waitAndVerifyEditableCallback(mConnection
[all...]
H A DAdapterInputConnectionTest.java26 private AdapterInputConnection mConnection; field in class:AdapterInputConnectionTest
38 mConnection = new AdapterInputConnection(
45 mConnection.setComposingText("t", 1);
46 assertCorrectState("t", 1, 1, 0, 1, mConnection.getImeStateForTesting());
49 mConnection.setComposingText("te", 1);
50 assertCorrectState("te", 2, 2, 0, 2, mConnection.getImeStateForTesting());
53 mConnection.setComposingText("tes", 1);
54 assertCorrectState("tes", 3, 3, 0, 3, mConnection.getImeStateForTesting());
57 mConnection.setComposingText("test", 1);
58 assertCorrectState("test", 4, 4, 0, 4, mConnection
[all...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DBindingManager.java49 private ChildProcessConnection mConnection; field in class:BindingManager.ManagedConnection
51 // When mConnection is cleared, oom binding status is stashed here.
55 mConnection = connection;
59 return mConnection;
66 return mConnection != null ?
67 mConnection.isOomProtectedOrWasWhenDied() : mWasOomProtected;
71 mWasOomProtected = mConnection.isOomProtectedOrWasWhenDied();
72 mConnection = null;
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/selfbraille/
H A DSelfBrailleClient.java85 private volatile Connection mConnection; field in class:SelfBrailleClient
131 mConnection = localConnection;
136 if (mConnection != null) {
145 mContext.unbindService(mConnection);
146 mConnection = null;
151 Connection localConnection = mConnection;
257 if (mConnection != null) {
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/translate/
H A DTranslatorManager.java81 private Connection mConnection; field in class:TranslatorManager
133 mConnection = localConnection;
138 if (mConnection != null) {
139 mContext.unbindService(mConnection);
140 mConnection = null;
145 Connection localConnection = mConnection;
272 if (mConnection != null) {
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/
H A DDisplay.java51 private Connection mConnection; field in class:Display
216 mConnection = localConnection;
229 if (mConnection != null) {
230 mContext.unbindService(mConnection);
231 mConnection = null;
236 Connection localConnection = mConnection;
315 if (mConnection != null) {

Completed in 183 milliseconds