OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:windowId
(Results
1 - 5
of
5
) sorted by null
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowAccessibilityRecord.java
25
private int
windowId
= -1;
70
windowId
= id;
76
return
windowId
;
/development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetworkViews.java
139
int
windowId
= Integer.parseInt(windowString);
143
return client.findAccessibilityNodeInfoByAccessibilityId(connectionId,
windowId
, viewId,
/cts/tests/tests/uiautomation/src/android/app/uiautomation/cts/
UiAutomationTest.java
208
final int
windowId
= findAppWindowId(uiAutomation.getWindows());
209
assertTrue(
windowId
>= 0);
212
assertTrue(uiAutomation.clearWindowContentFrameStats(
windowId
));
222
WindowContentFrameStats stats = uiAutomation.getWindowContentFrameStats(
windowId
);
270
final int
windowId
= findAppWindowId(uiAutomation.getWindows());
271
assertTrue(
windowId
>= 0);
274
assertTrue(uiAutomation.clearWindowContentFrameStats(
windowId
));
277
WindowContentFrameStats stats = uiAutomation.getWindowContentFrameStats(
windowId
);
/frameworks/av/camera/ndk/ndk_vendor/impl/
ACameraDevice.cpp
400
req->mCaptureRequest.streamAndWindowIds[i].
windowId
= requestSurfaceIdxList[i];
[
all
...]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowViewTest.java
39
import android.view.
WindowId
;
851
WindowId
windowId
= parent.getWindowId();
852
assertThat(
windowId
).isNotNull();
853
assertThat(child.getWindowId()).isSameAs(
windowId
);
854
assertThat(child.getWindowId()).isEqualTo(
windowId
); // equals must work!
858
assertThat(anotherChild.getWindowId()).isEqualTo(
windowId
);
Completed in 586 milliseconds