Searched refs:current (Results 101 - 125 of 194) sorted by relevance

12345678

/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java854 AccessibilityNodeInfo current = fringe.poll();
857 if (!seen.add(current)) {
859 + current + " in window:"
864 if (current.isAccessibilityFocused()) {
867 + current
870 accessFocus = current;
875 if (current.isFocused()) {
878 + current + " in window:"
881 inputFocus = current;
885 final int childCount = current
918 prefetchSiblingsOfRealNode(View current, List<AccessibilityNodeInfo> outInfos) argument
1044 prefetchSiblingsOfVirtualNode(AccessibilityNodeInfo current, View providerHost, AccessibilityNodeProvider provider, List<AccessibilityNodeInfo> outInfos) argument
[all...]
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyAndException/
H A DAndroid.mk26 LOCAL_SDK_VERSION := current
/frameworks/base/nfc-extras/tests/
H A DAndroid.mk30 LOCAL_SDK_VERSION := current
/frameworks/base/tests/AccessoryDisplay/sink/
H A DAndroid.mk21 LOCAL_SDK_VERSION := current
/frameworks/base/tests/AccessoryDisplay/source/
H A DAndroid.mk21 LOCAL_SDK_VERSION := current
/frameworks/base/tests/Camera2Tests/CameraToo/tests/
H A DAndroid.mk21 LOCAL_SDK_VERSION := current
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/
H A DAndroid.mk26 LOCAL_SDK_VERSION := current
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphRunner.java84 public synchronized int current() { method in class:GraphRunner.State
249 if (mState.current() == State.RUNNING) {
263 if (mState.current() == State.RUNNING) {
290 if (mState.current() == State.STOPPED) {
305 if (mState.current() == State.PREPARING) {
347 if (mState.current() == State.RUNNING) {
374 Log.w("GraphRunner", "State is not running! (" + mState.current() + ")");
641 public static GraphRunner current() { method in class:GraphRunner
678 * Begin executing a sub-graph. This only succeeds if the current runner is already
764 * Returns the current schedulin
[all...]
H A DFrameManager.java263 public static FrameManager current() { method in class:FrameManager
264 GraphRunner runner = GraphRunner.current();
466 if (!mRunner.isRunning() || GraphRunner.current() != mRunner) {
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/
H A DAndroid.mk21 # LOCAL_SDK_VERSION := current
/frameworks/base/tests/MusicBrowserDemo/
H A DAndroid.mk20 #LOCAL_SDK_VERSION := current
/frameworks/base/tests/MusicServiceDemo/
H A DAndroid.mk20 #LOCAL_SDK_VERSION := current
/frameworks/base/tests/RemoteDisplayProvider/
H A DAndroid.mk21 LOCAL_SDK_VERSION := current
/frameworks/ex/camera2/portability/
H A Dportability.mk20 LOCAL_SDK_VERSION := current
/frameworks/ex/camera2/portability/tests/
H A DAndroid.mk20 LOCAL_SDK_VERSION := current
/frameworks/ex/camera2/utils/tests/
H A DAndroid.mk20 LOCAL_SDK_VERSION := current
/frameworks/ex/common/tests/
H A DAndroid.mk22 LOCAL_SDK_VERSION := current
/frameworks/ex/variablespeed/
H A DAndroid.mk25 LOCAL_SDK_VERSION := current
/frameworks/ex/variablespeed/tests/
H A DAndroid.mk22 LOCAL_SDK_VERSION := current
/frameworks/opt/chips/tests/
H A DAndroid.mk21 LOCAL_SDK_VERSION := current
/frameworks/support/v7/appcompat/
H A DAndroid.mk23 LOCAL_SDK_VERSION := current
/frameworks/base/core/java/android/net/
H A DUri.java1509 * Constructs a Uri with the current attributes.
1838 int current = 0;
1839 while (current < oldLength) {
1843 int nextToEncode = current;
1851 if (current == 0) {
1856 encoded.append(s, current, oldLength);
1865 if (nextToEncode > current) {
1867 encoded.append(s, current, nextToEncode);
1869 // assert nextToEncode == current
1875 current
[all...]
/frameworks/base/libs/hwui/
H A DAmbientShadow.cpp71 inline Vector2 getNormalFromVertices(const Vector3* vertices, int current, int next) { argument
73 Vector2 currentVertex = { vertices[current].x, vertices[current].y };
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DDozeScrimController.java147 Animator current = getCurrentAnimator(inFront);
148 if (current != null) {
153 current.cancel();
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp73 c->transforms.current = &c->transforms.modelview;
502 current->dirty = matrix_stack_t::DO_PICKER |
848 c->transforms.current->multiply(rhs);
887 c->transforms.current->multiply(rhs);
928 c->transforms.current = stack;
934 c->transforms.current->loadIdentity(); // also loads the GLfixed transform
936 c->transforms.current->dirty = 0;
942 c->transforms.current->load(m);
949 c->transforms.current->load(m); // also loads the GLfixed transform
951 c->transforms.current
[all...]

Completed in 1081 milliseconds

12345678