Searched refs:current (Results 126 - 150 of 252) sorted by relevance

1234567891011

/frameworks/base/tools/aapt2/util/
H A DUtil.h274 const Char* current = start; local
275 while (current != end) {
276 if (*current == mSeparator) {
277 mToken.assign(start, current - start);
280 ++current;
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DPathParser_Delegate.java344 // current number, and endPosition is the character after the current
417 float[] current = new float[6];
421 addCommand(path, current, previousCommand, node[i].mType, node[i].mParams);
427 * The current PathDataNode will be interpolated between the <code>nodeFrom</code> and
443 private static void addCommand(@NonNull Path_Delegate path, float[] current, argument
447 float currentX = current[0];
448 float currentY = current[1];
449 float ctrlPointX = current[2];
450 float ctrlPointY = current[
[all...]
/frameworks/base/tools/aapt2/
H A DResourceUtils.cpp35 const char16_t* current = start; local
36 while (current != end) {
37 if (outType->size() == 0 && *current == u'/') {
39 outType->assign(start, current - start);
40 start = current + 1;
41 } else if (outPackage->size() == 0 && *current == u':') {
43 outPackage->assign(start, current - start);
44 start = current + 1;
46 current++;
/frameworks/base/services/core/java/com/android/server/vr/
H A DVrManagerService.java566 // Apply the restrictions for the current user based on vr state
582 // Set overlay exception state based on VR enabled and current service
663 // the current VrListenerService.
720 ArraySet<String> current = getNotificationListeners(resolver, userId);
725 && !current.contains(flatName)) {
726 current.add(flatName);
730 if (current.size() > 0) {
731 String flatSettings = formatSettings(current);
741 ArraySet<String> current = getNotificationListeners(resolver, userId);
745 for (String c : current) {
[all...]
/frameworks/rs/driver/runtime/
H A Drs_core.c185 return ((struct RsExpandKernelDriverInfo *)ctxt)->current.array[0];
189 return ((struct RsExpandKernelDriverInfo *)ctxt)->current.array[1];
193 return ((struct RsExpandKernelDriverInfo *)ctxt)->current.array[2];
197 return ((struct RsExpandKernelDriverInfo *)ctxt)->current.array[3];
201 return (rs_allocation_cubemap_face)(((struct RsExpandKernelDriverInfo *)ctxt)->current.face);
205 return ((struct RsExpandKernelDriverInfo *)ctxt)->current.lod;
/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java899 AccessibilityNodeInfo current = fringe.poll();
902 if (!seen.add(current)) {
904 + current + " in window:"
909 if (current.isAccessibilityFocused()) {
912 + current
915 accessFocus = current;
920 if (current.isFocused()) {
923 + current + " in window:"
926 inputFocus = current;
930 final int childCount = current
963 prefetchSiblingsOfRealNode(View current, List<AccessibilityNodeInfo> outInfos) argument
1096 prefetchSiblingsOfVirtualNode(AccessibilityNodeInfo current, View providerHost, AccessibilityNodeProvider provider, List<AccessibilityNodeInfo> outInfos) argument
[all...]
/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...]
/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/base/tests/SurfaceComposition/
H A DAndroid.mk32 LOCAL_SDK_VERSION := current
/frameworks/base/tests/WindowAnimationJank/
H A DAndroid.mk29 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/opt/chips/
H A DAndroid.mk20 LOCAL_SDK_VERSION := current
/frameworks/opt/chips/sample/
H A DAndroid.mk30 LOCAL_SDK_VERSION := current
/frameworks/opt/chips/tests/
H A DAndroid.mk21 LOCAL_SDK_VERSION := current
/frameworks/base/core/java/android/net/
H A DUri.java1514 * Constructs a Uri with the current attributes.
1843 int current = 0;
1844 while (current < oldLength) {
1848 int nextToEncode = current;
1856 if (current == 0) {
1861 encoded.append(s, current, oldLength);
1870 if (nextToEncode > current) {
1872 encoded.append(s, current, nextToEncode);
1874 // assert nextToEncode == current
1880 current
[all...]

Completed in 592 milliseconds

1234567891011