Home
last modified time | relevance | path

Searched refs:d (Results 1 – 25 of 1797) sorted by relevance

12345678910>>...72

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DMatrix_Delegate.java200 Matrix_Delegate d = sManager.getDelegate(native_object); in nIsIdentity() local
201 if (d == null) { in nIsIdentity()
205 return d.isIdentity(); in nIsIdentity()
210 Matrix_Delegate d = sManager.getDelegate(native_object); in nIsAffine() local
211 if (d == null) { in nIsAffine()
215 return (d.computeTypeMask() & kPerspective_Mask) == 0; in nIsAffine()
220 Matrix_Delegate d = sManager.getDelegate(native_object); in nRectStaysRect() local
221 if (d == null) { in nRectStaysRect()
225 return (d.computeTypeMask() & kRectStaysRect_Mask) != 0; in nRectStaysRect()
230 Matrix_Delegate d = sManager.getDelegate(native_object); in nReset() local
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
DImageDescriptor.java57 ImageDescriptor d = new ImageDescriptor(); in parse() local
59 d.mWidth = rawData[valueIndex++] & 0xff; in parse()
60 d.mHeight = rawData[valueIndex++] & 0xff; in parse()
61 d.mCodingScheme = rawData[valueIndex++] & 0xff; in parse()
64 d.mImageId = (rawData[valueIndex++] & 0xff) << 8; in parse()
65 d.mImageId |= rawData[valueIndex++] & 0xff; in parse()
67 d.mHighOffset = (rawData[valueIndex++] & 0xff); // high byte offset in parse()
68 d.mLowOffset = rawData[valueIndex++] & 0xff; // low byte offset in parse()
70 d.mLength = ((rawData[valueIndex++] & 0xff) << 8 | (rawData[valueIndex++] & 0xff)); in parse()
71 CatLog.d("ImageDescriptor", "parse; Descriptor : " + d.mWidth + ", " + d.mHeight + in parse()
[all …]
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
DAccessibilityGestureDetectorTest.java98 final int d = 1000; // Length of each segment in the test gesture, in pixels. in testRecognizeGesturePath() local
100 testPath(p(-d, +0), AccessibilityService.GESTURE_SWIPE_LEFT); in testRecognizeGesturePath()
101 testPath(p(+d, +0), AccessibilityService.GESTURE_SWIPE_RIGHT); in testRecognizeGesturePath()
102 testPath(p(+0, -d), AccessibilityService.GESTURE_SWIPE_UP); in testRecognizeGesturePath()
103 testPath(p(+0, +d), AccessibilityService.GESTURE_SWIPE_DOWN); in testRecognizeGesturePath()
105 testPath(p(-d, +0), p((-d - d), +0), AccessibilityService.GESTURE_SWIPE_LEFT); in testRecognizeGesturePath()
106 testPath(p(-d, +0), p(+0, +0), AccessibilityService.GESTURE_SWIPE_LEFT_AND_RIGHT); in testRecognizeGesturePath()
107 testPath(p(-d, +0), p(-d, -d), AccessibilityService.GESTURE_SWIPE_LEFT_AND_UP); in testRecognizeGesturePath()
108 testPath(p(-d, +0), p(-d, +d), AccessibilityService.GESTURE_SWIPE_LEFT_AND_DOWN); in testRecognizeGesturePath()
110 testPath(p(+d, +0), p(+0, +0), AccessibilityService.GESTURE_SWIPE_RIGHT_AND_LEFT); in testRecognizeGesturePath()
[all …]
/frameworks/base/tests/CoreTests/android/core/
DRequestAPITest.java54 Log.d(LOGTAG, "Base setup context = " + mContext); in setUp()
63 Log.d(LOGTAG, "Base tearDown"); in tearDown()
65 Log.d(LOGTAG, "Base teardown done"); in tearDown()
89 Log.d(LOGTAG, "testRequestAddNullHeader start "); in testRequestAddNullHeader()
93 Log.d(LOGTAG, "testRequestAddNullHeader - returning"); in testRequestAddNullHeader()
101 Log.d(LOGTAG, "testRequestAddNullValue start "); in testRequestAddNullValue()
105 Log.d(LOGTAG, "testRequestAddNullValue - returning"); in testRequestAddNullValue()
113 Log.d(LOGTAG, "testRequestAddEmptyValue start "); in testRequestAddEmptyValue()
117 Log.d(LOGTAG, "testRequestAddEmptyValue - returning"); in testRequestAddEmptyValue()
133 Log.d(LOGTAG, "testRequestAddHeader start "); in testRequestAddHeader()
[all …]
/frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
Drange.h12 template <class T, int d>
16 Range(Eigen::Vector<T, d> p1, Eigen::Vector<T, d> p2) : p1(p1), p2(p2) {} in Range()
18 static Range<T, d> FromSize(Eigen::Vector<T, d> p1, in FromSize()
19 Eigen::Vector<T, d> size) { in FromSize()
20 return Range<T, d>(p1, p1 + size); in FromSize()
23 bool operator==(const Range<T, d>& rhs) const {
27 Eigen::Vector<T, d> GetMinPoint() const { return p1; } in GetMinPoint()
29 Eigen::Vector<T, d> GetMaxPoint() const { return p2; } in GetMaxPoint()
31 Eigen::Vector<T, d> GetSize() const { return p2 - p1; } in GetSize()
33 Eigen::Vector<T, d> p1;
[all …]
/frameworks/base/core/tests/BTtraffic/src/com/android/google/experimental/bttraffic/
DBTtraffic.java42 Log.d(TAG, "Unable to close resource.\n"); in safeClose()
57 Log.d(TAG, "unknown action: + " + intent.getAction()); in onStartCommand()
64 Log.d(TAG, "worker thread already active"); in startWorker()
69 Log.d(TAG, "startWorker: addr=" + remoteAddr); in startWorker()
78 Log.d(TAG, "Monitor service started"); in startWorker()
80 Log.d(TAG, "Worker thread started"); in startWorker()
82 Log.d(TAG, "Failed to start service", e); in startWorker()
89 Log.d(TAG, "Start monitor on server"); in startMonitor()
103 Log.d(TAG, "No need to start SvcMonitor on client"); in startMonitor()
110 Log.d(TAG, "StopMonitor on server"); in stopMonitor()
[all …]
/frameworks/base/wifi/java/android/net/wifi/p2p/
DWifiP2pDeviceList.java45 for (WifiP2pDevice d : source.getDeviceList()) { in WifiP2pDeviceList()
46 mDevices.put(d.deviceAddress, new WifiP2pDevice(d)); in WifiP2pDeviceList()
94 WifiP2pDevice d = mDevices.get(device.deviceAddress); in updateSupplicantDetails() local
95 if (d != null) { in updateSupplicantDetails()
96 d.deviceName = device.deviceName; in updateSupplicantDetails()
97 d.primaryDeviceType = device.primaryDeviceType; in updateSupplicantDetails()
98 d.secondaryDeviceType = device.secondaryDeviceType; in updateSupplicantDetails()
99 d.wpsConfigMethodsSupported = device.wpsConfigMethodsSupported; in updateSupplicantDetails()
100 d.deviceCapability = device.deviceCapability; in updateSupplicantDetails()
101 d.groupCapability = device.groupCapability; in updateSupplicantDetails()
[all …]
/frameworks/base/media/tests/SoundPoolTest/src/com/android/
DSoundPoolTest.java84 if (DEBUG) Log.d(LOG_TAG, "Sample " + sampleId + " load status = " + status); in onLoadComplete()
131 if (DEBUG) Log.d(LOG_TAG, "Begin sounds test"); in TestSounds()
136 if (DEBUG) Log.d(LOG_TAG, "Start note " + id); in TestSounds()
143 if (DEBUG) Log.d(LOG_TAG, "Stop note " + id); in TestSounds()
146 if (DEBUG) Log.d(LOG_TAG, "End sounds test"); in TestSounds()
151 if (DEBUG) Log.d(LOG_TAG, "Begin scale test"); in TestScales()
158 if (DEBUG) Log.d(LOG_TAG, "Start note " + id); in TestScales()
165 if (DEBUG) Log.d(LOG_TAG, "Stop note " + id); in TestScales()
168 if (DEBUG) Log.d(LOG_TAG, "End scale test"); in TestScales()
173 if (DEBUG) Log.d(LOG_TAG, "Begin rate test"); in TestRates()
[all …]
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
DBlurStack.java187 for (int d = front; d >= back; --d) { in toString()
188 s += "layer " + n + " disparity " + d + " disk radius " in toString()
189 + getDiskRadius(d) + "\n"; in toString()
365 int d = backFocalDepth - 1; in groupDepthLevelsBehindFocus() local
366 layerInfo.add(new LayerInfo(d)); in groupDepthLevelsBehindFocus()
368 float radiusThreshold = getDiskRadius(d) + diskRadiusInterval; in groupDepthLevelsBehindFocus()
373 while (d > MIN_DEPTH) { in groupDepthLevelsBehindFocus()
375 d--; in groupDepthLevelsBehindFocus()
376 if (getDiskRadius(d) <= radiusThreshold) { in groupDepthLevelsBehindFocus()
379 layerInfo.get(numLayers - 1).backDepth = d; in groupDepthLevelsBehindFocus()
[all …]
/frameworks/rs/support/java/src/android/support/v8/renderscript/
DAllocation.java84 private Element.DataType validateObjectIsPrimitiveArray(Object d, boolean checkType) { in validateObjectIsPrimitiveArray() argument
85 final Class c = d.getClass(); in validateObjectIsPrimitiveArray()
595 public void copyFrom(BaseObj[] d) { in copyFrom() argument
598 if (d.length != mCurrentCount) { in copyFrom()
600 mCurrentCount + ", array length = " + d.length); in copyFrom()
604 long i[] = new long[d.length * 4]; in copyFrom()
605 for (int ct=0; ct < d.length; ct++) { in copyFrom()
606 i[ct * 4] = d[ct].getID(mRS); in copyFrom()
610 int i[] = new int[d.length]; in copyFrom()
611 for (int ct=0; ct < d.length; ct++) { in copyFrom()
[all …]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
DarmCOMM.h573 #define DEBUG_PRINTF_3(a, b, c, d) fprintf(DEBUG_STREAM, a, b,… argument
574 #define DEBUG_PRINTF_4(a, b, c, d, e) fprintf(DEBUG_STREAM, a, b,… argument
575 #define DEBUG_PRINTF_5(a, b, c, d, e, f) fprintf(DEBUG_STREAM, a, b,… argument
576 #define DEBUG_PRINTF_6(a, b, c, d, e, f, g) fprintf(DEBUG_STREAM, a, b,… argument
577 #define DEBUG_PRINTF_7(a, b, c, d, e, f, g, h) fprintf(DEBUG_STREAM, a, b,… argument
578 #define DEBUG_PRINTF_8(a, b, c, d, e, f, g, h, i) fprintf(DEBUG_STREAM, a, b,… argument
579 #define DEBUG_PRINTF_9(a, b, c, d, e, f, g, h, i, j) fprintf(DEBUG_STREAM, a, b,… argument
580 #define DEBUG_PRINTF_10(a, b, c, d, e, f, g, h, i, j, k) fprintf(DEBUG_STREAM, a, b,… argument
581 #define DEBUG_PRINTF_11(a, b, c, d, e, f, g, h, i, j, k, l) fprintf(DEBUG_STREAM, a, b,… argument
582 #define DEBUG_PRINTF_12(a, b, c, d, e, f, g, h, i, j, k, l, m) fprintf(DEBUG_STREAM, a, b,… argument
[all …]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
DarmCOMM.h573 #define DEBUG_PRINTF_3(a, b, c, d) fprintf(DEBUG_STREAM, a, b,… argument
574 #define DEBUG_PRINTF_4(a, b, c, d, e) fprintf(DEBUG_STREAM, a, b,… argument
575 #define DEBUG_PRINTF_5(a, b, c, d, e, f) fprintf(DEBUG_STREAM, a, b,… argument
576 #define DEBUG_PRINTF_6(a, b, c, d, e, f, g) fprintf(DEBUG_STREAM, a, b,… argument
577 #define DEBUG_PRINTF_7(a, b, c, d, e, f, g, h) fprintf(DEBUG_STREAM, a, b,… argument
578 #define DEBUG_PRINTF_8(a, b, c, d, e, f, g, h, i) fprintf(DEBUG_STREAM, a, b,… argument
579 #define DEBUG_PRINTF_9(a, b, c, d, e, f, g, h, i, j) fprintf(DEBUG_STREAM, a, b,… argument
580 #define DEBUG_PRINTF_10(a, b, c, d, e, f, g, h, i, j, k) fprintf(DEBUG_STREAM, a, b,… argument
581 #define DEBUG_PRINTF_11(a, b, c, d, e, f, g, h, i, j, k, l) fprintf(DEBUG_STREAM, a, b,… argument
582 #define DEBUG_PRINTF_12(a, b, c, d, e, f, g, h, i, j, k, l, m) fprintf(DEBUG_STREAM, a, b,… argument
[all …]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/api/
DarmCOMM.h573 #define DEBUG_PRINTF_3(a, b, c, d) fprintf(DEBUG_STREAM, a, b,… argument
574 #define DEBUG_PRINTF_4(a, b, c, d, e) fprintf(DEBUG_STREAM, a, b,… argument
575 #define DEBUG_PRINTF_5(a, b, c, d, e, f) fprintf(DEBUG_STREAM, a, b,… argument
576 #define DEBUG_PRINTF_6(a, b, c, d, e, f, g) fprintf(DEBUG_STREAM, a, b,… argument
577 #define DEBUG_PRINTF_7(a, b, c, d, e, f, g, h) fprintf(DEBUG_STREAM, a, b,… argument
578 #define DEBUG_PRINTF_8(a, b, c, d, e, f, g, h, i) fprintf(DEBUG_STREAM, a, b,… argument
579 #define DEBUG_PRINTF_9(a, b, c, d, e, f, g, h, i, j) fprintf(DEBUG_STREAM, a, b,… argument
580 #define DEBUG_PRINTF_10(a, b, c, d, e, f, g, h, i, j, k) fprintf(DEBUG_STREAM, a, b,… argument
581 #define DEBUG_PRINTF_11(a, b, c, d, e, f, g, h, i, j, k, l) fprintf(DEBUG_STREAM, a, b,… argument
582 #define DEBUG_PRINTF_12(a, b, c, d, e, f, g, h, i, j, k, l, m) fprintf(DEBUG_STREAM, a, b,… argument
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/analytics/
DDataCollector.java250 Log.d(TAG, "onScreenTurningOn"); in onScreenTurningOn()
259 Log.d(TAG, "onScreenOnFromTouch"); in onScreenOnFromTouch()
267 Log.d(TAG, "onScreenOff"); in onScreenOff()
275 Log.d(TAG, "onSuccessfulUnlock"); in onSucccessfulUnlock()
283 Log.d(TAG, "onBouncerShown"); in onBouncerShown()
290 Log.d(TAG, "onBouncerHidden"); in onBouncerHidden()
297 Log.d(TAG, "onQsDown"); in onQsDown()
304 Log.d(TAG, "setQsExpanded = " + expanded); in setQsExpanded()
315 Log.d(TAG, "onTrackingStarted"); in onTrackingStarted()
324 Log.d(TAG, "onTrackingStopped"); in onTrackingStopped()
[all …]
/frameworks/base/rs/java/android/renderscript/
DAllocation.java91 private Element.DataType validateObjectIsPrimitiveArray(Object d, boolean checkType) { in validateObjectIsPrimitiveArray() argument
92 final Class c = d.getClass(); in validateObjectIsPrimitiveArray()
604 public void copyFrom(BaseObj[] d) { in copyFrom() argument
609 if (d.length != mCurrentCount) { in copyFrom()
611 … mCurrentCount + ", array length = " + d.length); in copyFrom()
615 long i[] = new long[d.length * 4]; in copyFrom()
616 for (int ct=0; ct < d.length; ct++) { in copyFrom()
617 i[ct * 4] = d[ct].getID(mRS); in copyFrom()
621 int i[] = new int[d.length]; in copyFrom()
622 for (int ct=0; ct < d.length; ct++) { in copyFrom()
[all …]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DQuickRejectActivity.java56 Log.d("OpenGLRenderer", "count=" + count); in onDraw()
58 Log.d("OpenGLRenderer", "count after save=" + count); in onDraw()
60 Log.d("OpenGLRenderer", "getSaveCount after save=" + count); in onDraw()
63 Log.d("OpenGLRenderer", "count after restore=" + count); in onDraw()
65 Log.d("OpenGLRenderer", "count after save=" + canvas.getSaveCount()); in onDraw()
67 Log.d("OpenGLRenderer", "count after save=" + canvas.getSaveCount()); in onDraw()
69 Log.d("OpenGLRenderer", "count after save=" + canvas.getSaveCount()); in onDraw()
72 Log.d("OpenGLRenderer", "count after restoreToCount=" + count); in onDraw()
74 Log.d("OpenGLRenderer", "count after saveLayer=" + count); in onDraw()
76 Log.d("OpenGLRenderer", "getSaveCount after saveLayer=" + count); in onDraw()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
DTileLifecycleManager.java107 if (DEBUG) Log.d(TAG, "Creating " + mIntent + " " + mUser); in TileLifecycleManager()
160 if (DEBUG) Log.d(TAG, "Binding service " + mIntent + " " + mUser); in setBindService()
171 if (DEBUG) Log.d(TAG, "Unbinding service " + mIntent + " " + mUser); in setBindService()
184 if (DEBUG) Log.d(TAG, "onServiceConnected " + name); in onServiceConnected()
198 if (DEBUG) Log.d(TAG, "onServiceDisconnected " + name); in onServiceDisconnected()
211 if (DEBUG) Log.d(TAG, "Handling pending onAdded"); in handlePendingMessages()
215 if (DEBUG) Log.d(TAG, "Handling pending onStartListening"); in handlePendingMessages()
219 if (DEBUG) Log.d(TAG, "Handling pending onClick"); in handlePendingMessages()
228 if (DEBUG) Log.d(TAG, "Handling pending onUnlockComplete"); in handlePendingMessages()
237 if (DEBUG) Log.d(TAG, "Handling pending onRemoved"); in handlePendingMessages()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DHbpcdUtils.java57 Rlog.d(LOG_TAG, "Query unresolved arbitrary table, entries are " + c2Counter); in getMcc()
61 Rlog.d(LOG_TAG, "Query Unresolved arbitrary returned the cursor " + c2); in getMcc()
66 Rlog.d(LOG_TAG, "MCC found in arbitrary_mcc_sid_match: " + tmpMcc); in getMcc()
90 if (DBG) Rlog.d(LOG_TAG, "Query conflict sid returned the cursor " + c3); in getMcc()
94 Rlog.d(LOG_TAG, "MCC found in mcc_lookup_table. Return tmpMcc = " + tmpMcc); in getMcc()
99 Rlog.d(LOG_TAG, "time zone is not accurate, mcc may be " + tmpMcc); in getMcc()
118 if (DBG) Rlog.d(LOG_TAG, "Query Range returned the cursor " + c5); in getMcc()
121 if (DBG) Rlog.d(LOG_TAG, "SID found in mcc_sid_range. Return tmpMcc = " + tmpMcc); in getMcc()
127 if (DBG) Rlog.d(LOG_TAG, "SID NOT found in mcc_sid_range."); in getMcc()
129 if (DBG) Rlog.d(LOG_TAG, "Exit getMccByOtherFactors. Return tmpMcc = " + tmpMcc); in getMcc()
[all …]
DCallManager.java372 Rlog.d(LOG_TAG, "registerPhone(" + in registerPhone()
397 Rlog.d(LOG_TAG, "unregisterPhone(" + in unregisterPhone()
565 Rlog.d(LOG_TAG, "This phone has already been registered."); in registerForPhoneStates()
685 Rlog.d(LOG_TAG, "acceptCall(" +ringingCall + " from " + ringingCall.getPhone() + ")"); in acceptCall()
686 Rlog.d(LOG_TAG, toString()); in acceptCall()
695 Rlog.d(LOG_TAG, "hasBgCall: "+ hasBgCall + "sameChannel:" + sameChannel); in acceptCall()
711 Rlog.d(LOG_TAG, "End acceptCall(" +ringingCall + ")"); in acceptCall()
712 Rlog.d(LOG_TAG, toString()); in acceptCall()
727 Rlog.d(LOG_TAG, "rejectCall(" +ringingCall + ")"); in rejectCall()
728 Rlog.d(LOG_TAG, toString()); in rejectCall()
[all …]
/frameworks/support/samples/SupportVectorDrawableDemos/src/com/example/android/support/vectordrawable/app/
DSimpleAnimatedVectorDrawable.java61 AnimatedVectorDrawableCompat[] d = new AnimatedVectorDrawableCompat[mIcons.length]; in onCreate() local
64 d[i] = AnimatedVectorDrawableCompat.create(this, mIcons[i]); in onCreate()
72 addDrawableButtons(container, d); in onCreate()
75 if (d[0].getConstantState() != null) { in onCreate()
77 copies[0] = (AnimatedVectorDrawableCompat) d[0].getConstantState().newDrawable(); in onCreate()
78 copies[1] = (AnimatedVectorDrawableCompat) d[0].getConstantState().newDrawable(); in onCreate()
79 copies[2] = (AnimatedVectorDrawableCompat) d[0].getConstantState().newDrawable(); in onCreate()
92 private void addDrawableButtons(LinearLayout container, AnimatedVectorDrawableCompat[] d) { in addDrawableButtons() argument
93 for (int i = 0; i < d.length; i++) { in addDrawableButtons()
97 button.setBackgroundDrawable(d[i]); in addDrawableButtons()
[all …]
/frameworks/base/core/java/android/view/animation/
DTranslateAnimation.java67 Description d = Description.parseValue(a.peekValue( in TranslateAnimation() local
69 mFromXType = d.type; in TranslateAnimation()
70 mFromXValue = d.value; in TranslateAnimation()
72 d = Description.parseValue(a.peekValue( in TranslateAnimation()
74 mToXType = d.type; in TranslateAnimation()
75 mToXValue = d.value; in TranslateAnimation()
77 d = Description.parseValue(a.peekValue( in TranslateAnimation()
79 mFromYType = d.type; in TranslateAnimation()
80 mFromYValue = d.value; in TranslateAnimation()
82 d = Description.parseValue(a.peekValue( in TranslateAnimation()
[all …]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
DomxVCM4P10_SATD_4x4.c79 OMX_S32 d [4][4], m1[4][4], m2[4][4]; in omxVCM4P10_SATD_4x4() local
95 d [j][i] = pSrcOrg [j * iStepOrg + i] - pSrcRef [j * iStepRef + i]; in omxVCM4P10_SATD_4x4()
104 m1[i][0] = d[i][0] + d[i][2]; /* a+c */ in omxVCM4P10_SATD_4x4()
105 m1[i][1] = d[i][1] + d[i][3]; /* b+d */ in omxVCM4P10_SATD_4x4()
106 m1[i][2] = d[i][0] - d[i][2]; /* a-c */ in omxVCM4P10_SATD_4x4()
107 m1[i][3] = d[i][1] - d[i][3]; /* b-d */ in omxVCM4P10_SATD_4x4()
/frameworks/base/services/core/java/com/android/server/tv/
DTvRemoteService.java72 if (DEBUG) Slog.d(TAG, "onStart()"); in onStart()
83 if (DEBUG) Slog.d(TAG, "PHASE_THIRD_PARTY_APPS_CAN_START"); in onBootPhase()
98 Slog.d(TAG, "openInputBridgeInternalLocked(), token: " + token + ", name: " + name + in openInputBridgeInternalLocked()
105 if (DEBUG) Slog.d(TAG, "RemoteBridge already exists"); in openInputBridgeInternalLocked()
126 Slog.d(TAG, "closeInputBridgeInternalLocked(), token: " + token); in closeInputBridgeInternalLocked()
141 Slog.d(TAG, "clearInputBridgeInternalLocked(), token: " + token); in clearInputBridgeInternalLocked()
159 Slog.d(TAG, "sendKeyDownInternalLocked(), token: " + token + ", keyCode: " + keyCode); in sendKeyDownInternalLocked()
170 Slog.d(TAG, "sendKeyUpInternalLocked(), token: " + token + ", keyCode: " + keyCode); in sendKeyUpInternalLocked()
181 Slog.d(TAG, "sendPointerDownInternalLocked(), token: " + token + ", pointerId: " + in sendPointerDownInternalLocked()
193 Slog.d(TAG, "sendPointerUpInternalLocked(), token: " + token + ", pointerId: " + in sendPointerUpInternalLocked()
[all …]
/frameworks/rs/tests/java_api/Balls/src/com/example/android/rs/balls/
Dball_physics.rs92 float d = gMaxPos.x - ball->position.x;
93 if (d < 0.f) {
99 ball->delta.x -= min(wallForce / (d * d), 10.f);
104 float d = ball->position.x - gMinPos.x;
105 if (d < 0.f) {
111 ball->delta.x += min(wallForce / (d * d), 10.f);
116 float d = gMaxPos.y - ball->position.y;
117 if (d < 0.f) {
123 ball->delta.y -= min(wallForce / (d * d), 10.f);
128 float d = ball->position.y - gMinPos.y;
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiCountryCode.java62 Log.d(TAG, "Country code will be reverted to " + mDefaultCountryCode in WifiCountryCode()
84 if (DBG) Log.d(TAG, "SIM Card Removed"); in simCardRemoved()
100 if (DBG) Log.d(TAG, "Airplane Mode Enabled"); in airplaneModeEnabled()
116 if (DBG) Log.d(TAG, "Set ready: " + ready); in setReadyForChange()
133 if (DBG) Log.d(TAG, "Receive set country code request: " + countryCode); in setCountryCode()
136 if (DBG) Log.d(TAG, "Received empty country code, reset to default country code"); in setCountryCode()
174 if (DBG) Log.d(TAG, "Update country code"); in updateCountryCode()
202 Log.d(TAG, "Succeeded to set country code to: " + country); in setCountryCodeNative()
206 Log.d(TAG, "Failed to set country code to: " + country); in setCountryCodeNative()

12345678910>>...72