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

12345678

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_PredictReconCoefIntra_s.s41 ; * quantized coefficient residuals (PQF) of the current
49 ; * [in] curQP quantization parameter of the current block. curQP may
50 ; * equal to predQP especially when the current block and
61 ; * alpha) of the current block
63 ; * the quantized coefficients (QF) of the current
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DRenderTarget.java52 /** Stores the RenderTarget that is focused on the current thread. */
99 // thread, as we know it cannot have changed, and therefore must be current.
192 // the current target. This is important so that the instance returned in
210 RenderTarget current = mCurrentTarget.get();
211 // We assume RenderTargets are immutable, so that we do not need to focus if the current
213 if (current != this) {
242 RenderTarget current = RenderTarget.currentTarget();
243 return current != null ? current.getContext() : EGL10.EGL_NO_CONTEXT;
H A DFrame.java137 FrameManager manager = FrameManager.current();
H A DFrameQueue.java119 FrameManager manager = FrameManager.current();
H A DCameraStreamer.java738 public int current() { method in class:CameraStreamer.State
996 return mState.current() != State.STATE_STOPPED;
1110 if (mState.current() != State.STATE_RUNNING) {
1142 if (mState.current() == State.STATE_STOPPED) {
1150 if (mState.current() == State.STATE_RUNNING) {
1160 if (mState.current() == State.STATE_RUNNING) {
1169 if (mState.current() == State.STATE_HALTED) {
1177 if (mState.current() == State.STATE_RUNNING) {
1183 if (mState.current() == State.STATE_RUNNING) {
1190 if (mState.current()
[all...]
H A DFrameImage2D.java96 if (GraphRunner.current().isOpenGLSupported()) {
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeechService.java75 * all ongoing synthesis, if any. Any pending data from the current synthesis
475 SpeechItem current = mCurrentSpeechItem;
477 return current;
490 // Stop the current speech item
491 SpeechItem current = setCurrentSpeechItem(null);
492 if (current != null) {
493 current.stop();
564 // Note that the current speech item must be removed only if it
568 SpeechItem current = maybeRemoveCurrentSpeechItem(callerIdentity);
569 if (current !
[all...]
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java67 * depends on the current theme.
70 * If the current theme is derived from {@link android.R.style#Theme} the widget
71 * presents the current value as an editable input field with an increment button
73 * change of the current value. Tapping on the input field allows to type in
77 * If the current theme is derived from {@link android.R.style#Theme_Holo} or
78 * {@link android.R.style#Theme_Holo_Light} the widget presents the current
81 * the number axis up or down to make the chosen value current. Flinging up
82 * or down allows for multiple increments or decrements of the current value.
84 * of the current value. Tapping on the current valu
1650 setValueInternal(int current, boolean notifyChange) argument
1877 notifyChange(int previous, int current) argument
[all...]
/frameworks/native/libs/input/
H A DInputTransport.cpp467 "deferred current event, seq=%u",
700 // Ensure that the current sample has all of the pointers that need to be reported.
701 const History* current = touchState.getHistory(0); local
705 if (!current->idBits.hasBit(id)) {
718 // Interpolate between current sample and future sample.
719 // So current->eventTime <= sampleTime <= future.eventTime.
722 nsecs_t delta = future.eventTime - current->eventTime;
729 alpha = float(sampleTime - current->eventTime) / delta;
731 // Extrapolate future sample using current sample and past sample.
732 // So other->eventTime <= current
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiAutoJoinController.java337 * compare a WifiConfiguration against the current network, return a delta score
351 // Return any absurdly high score, if we are not connected there is no current
362 + " with current " + currentNetwork.configKey());
677 // +) current network gets a +15 boost
685 // Boost used so as to favor current config
701 // Apply Hysteresis, boost RSSI of current configuration
759 // Apply Hysteresis : boost RSSI of current configuration before
985 WifiConfiguration current, int age, String currentBSSID) {
986 if (current == null) {
992 if (current
984 attemptRoam(ScanResult a, WifiConfiguration current, int age, String currentBSSID) argument
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnectionPool.java716 ConnectionWaiter current = mConnectionWaiterQueue;
717 while (current != waiter) {
718 assert current != null;
719 predecessor = current;
720 current = current.mNext;
/frameworks/support/v17/leanback/
H A DAndroid.mk17 # Build the resources using the current SDK version.
23 LOCAL_SDK_VERSION := current
144 LOCAL_SDK_VERSION := current
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessStatsService.java366 if (DEBUG) Slog.d(TAG, "Skipping: current stats");
447 Parcel current = Parcel.obtain();
454 mProcessStats.writeToParcel(current, now, 0);
473 return current.marshall();
481 Parcel current = Parcel.obtain();
487 mProcessStats.writeToParcel(current, now, 0);
495 current.setDataPosition(0);
496 ProcessStats stats = ProcessStats.CREATOR.createFromParcel(current);
497 current.recycle();
520 current
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityCache.java344 AccessibilityNodeInfo current = nodes.get(rootNodeId);
345 if (current == null) {
349 final int childCount = current.getChildCount();
351 final long childNodeId = current.getChildId(i);
H A DAccessibilityInteractionClient.java111 * @return The client for the current thread.
791 AccessibilityNodeInfo current = fringe.poll();
792 if (!seen.add(current)) {
796 final int childCount = current.getChildCount();
798 final long childId = current.getChildId(i);
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DICalendar.java430 Component current = component;
441 current = parseLine(line, state, current);
446 component = current;
463 * parent. Returns whatever component is the current one (to which new
498 // finish the current component
522 * Extracts the value ":..." on the current line. The first character must
/frameworks/support/v7/cardview/
H A DAndroid.mk17 # Build the resources using the current SDK version.
23 LOCAL_SDK_VERSION := current
/frameworks/support/v7/mediarouter/
H A DAndroid.mk17 # Build the resources using the current SDK version.
23 LOCAL_SDK_VERSION := current
/frameworks/base/core/java/android/view/
H A DAccessibilityIterators.java40 public int[] following(int current); argument
41 public int[] preceding(int current); argument
/frameworks/base/libs/hwui/
H A DAndroid.mk5 # defined in the current device/board configuration
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DScrimController.java258 float current = getCurrentScrimAlpha(scrim);
259 ValueAnimator anim = ValueAnimator.ofFloat(current, target);
/frameworks/compile/mclinker/lib/Support/Unix/
H A DPathV3.inc39 // -> push current into stack
/frameworks/compile/mclinker/lib/Support/Windows/
H A DPathV3.inc32 // -> push current into stack
/frameworks/base/services/core/java/com/android/server/input/
H A DPersistentDataStore.java430 String current = parser.getAttributeValue(null, "current");
437 if (current != null && current.equals("true")) {
440 "Found multiple current keyboard layouts.");
496 // Maintain invariant that there is always a current keyboard layout unless
508 serializer.attribute(null, "current", "true");
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiEnterpriseConfig.java550 String getKeyId(WifiEnterpriseConfig current) { argument
554 // If either eap or phase2 are not initialized, use current config details
556 eap = current.mFields.get(EAP_KEY);
559 phase2 = current.mFields.get(PHASE2_KEY);

Completed in 8253 milliseconds

12345678