/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
D | Matrix_Delegate.java | 197 Matrix_Delegate d = sManager.getDelegate(native_object); in native_isIdentity() local 198 if (d == null) { in native_isIdentity() 202 return d.isIdentity(); in native_isIdentity() 207 Matrix_Delegate d = sManager.getDelegate(native_object); in native_isAffine() local 208 if (d == null) { in native_isAffine() 212 return (d.computeTypeMask() & kPerspective_Mask) == 0; in native_isAffine() 217 Matrix_Delegate d = sManager.getDelegate(native_object); in native_rectStaysRect() local 218 if (d == null) { in native_rectStaysRect() 222 return (d.computeTypeMask() & kRectStaysRect_Mask) != 0; in native_rectStaysRect() 227 Matrix_Delegate d = sManager.getDelegate(native_object); in native_reset() local [all …]
|
/frameworks/compile/libbcc/lib/Support/ |
D | sha1.c | 136 uint32_t a, b, c, d, e; in SHA1Transform() local 153 d = state[3]; in SHA1Transform() 156 R0(a,b,c,d,e, 0); R0(e,a,b,c,d, 1); R0(d,e,a,b,c, 2); in SHA1Transform() 157 R0(c,d,e,a,b, 3); R0(b,c,d,e,a, 4); R0(a,b,c,d,e, 5); in SHA1Transform() 158 R0(e,a,b,c,d, 6); R0(d,e,a,b,c, 7); R0(c,d,e,a,b, 8); in SHA1Transform() 159 R0(b,c,d,e,a, 9); R0(a,b,c,d,e,10); R0(e,a,b,c,d,11); in SHA1Transform() 160 R0(d,e,a,b,c,12); R0(c,d,e,a,b,13); R0(b,c,d,e,a,14); in SHA1Transform() 161 R0(a,b,c,d,e,15); R1(e,a,b,c,d,16); R1(d,e,a,b,c,17); in SHA1Transform() 162 R1(c,d,e,a,b,18); R1(b,c,d,e,a,19); R2(a,b,c,d,e,20); in SHA1Transform() 163 R2(e,a,b,c,d,21); R2(d,e,a,b,c,22); R2(c,d,e,a,b,23); in SHA1Transform() [all …]
|
/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
D | findhalfpel.cpp | 59 int d, dmin, satd_min; in AVCFindHalfPelMB() local 94 d = SATD_MB(hpel_cand[h], cur, dmin); in AVCFindHalfPelMB() 96 d += mvcost; in AVCFindHalfPelMB() 98 if (d < dmin) in AVCFindHalfPelMB() 100 dmin = d; in AVCFindHalfPelMB() 102 satd_min = d - mvcost; in AVCFindHalfPelMB() 118 d = SATD_MB(encvid->qpel_cand[q], cur, dmin); in AVCFindHalfPelMB() 120 d += mvcost; in AVCFindHalfPelMB() 121 if (d < dmin) in AVCFindHalfPelMB() 123 dmin = d; in AVCFindHalfPelMB() [all …]
|
/frameworks/base/tests/CoreTests/android/core/ |
D | RequestAPITest.java | 54 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/opt/telephony/src/java/com/android/internal/telephony/cat/ |
D | ImageDescriptor.java | 57 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() 72 CatLog.d("ImageDescripter", "parse; failed parsing image descriptor"); in parse() [all …]
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/ |
D | DurableUtils.java | 32 public static <D extends Durable> byte[] writeToArray(D d) throws IOException { in writeToArray() argument 34 d.write(new DataOutputStream(out)); in writeToArray() 38 public static <D extends Durable> D readFromArray(byte[] data, D d) throws IOException { in readFromArray() argument 41 d.reset(); in readFromArray() 43 d.read(new DataInputStream(in)); in readFromArray() 45 d.reset(); in readFromArray() 48 return d; in readFromArray() 51 public static <D extends Durable> byte[] writeToArrayOrNull(D d) { in writeToArrayOrNull() argument 53 return writeToArray(d); in writeToArrayOrNull() 60 public static <D extends Durable> D readFromArrayOrNull(byte[] data, D d) { in readFromArrayOrNull() argument [all …]
|
/frameworks/webview/chromium/java/com/android/webview/chromium/ |
D | ContentSettingsAdapter.java | 58 if (TRACE) Log.d(LOGTAG, "setSupportZoom=" + support); in setSupportZoom() 69 if (TRACE) Log.d(LOGTAG, "setBuiltInZoomControls=" + enabled); in setBuiltInZoomControls() 80 if (TRACE) Log.d(LOGTAG, "setDisplayZoomControls=" + enabled); in setDisplayZoomControls() 91 if (TRACE) Log.d(LOGTAG, "setAllowFileAccess=" + allow); in setAllowFileAccess() 102 if (TRACE) Log.d(LOGTAG, "setAllowContentAccess=" + allow); in setAllowContentAccess() 113 if (TRACE) Log.d(LOGTAG, "setLoadWithOverviewMode=" + overview); in setLoadWithOverviewMode() 124 if (TRACE) Log.d(LOGTAG, "setAcceptThirdPartyCookies=" + accept); in setAcceptThirdPartyCookies() 157 if (TRACE) Log.d(LOGTAG, "setSaveFormData=" + save); in setSaveFormData() 179 if (TRACE) Log.d(LOGTAG, "setTextZoom=" + textZoom); in setTextZoom() 230 if (TRACE) Log.d(LOGTAG, "setUseWideViewPort=" + use); in setUseWideViewPort() [all …]
|
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
D | WifiP2pDeviceList.java | 45 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/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
D | Allocation.java | 383 public void copyFrom(BaseObj[] d) { in copyFrom() argument 386 if (d.length != mCurrentCount) { in copyFrom() 388 mCurrentCount + ", array length = " + d.length); in copyFrom() 390 int i[] = new int[d.length]; in copyFrom() 391 for (int ct=0; ct < d.length; ct++) { in copyFrom() 392 i[ct] = d[ct].getID(mRS); in copyFrom() 459 public void copyFromUnchecked(int[] d) { in copyFromUnchecked() argument 462 copy3DRangeFromUnchecked(0, 0, 0, mCurrentDimX, mCurrentDimY, mCurrentDimZ, d); in copyFromUnchecked() 464 copy2DRangeFromUnchecked(0, 0, mCurrentDimX, mCurrentDimY, d); in copyFromUnchecked() 466 copy1DRangeFromUnchecked(0, mCurrentCount, d); in copyFromUnchecked() [all …]
|
D | AllocationThunker.java | 107 public void copyFrom(BaseObj[] d) { in copyFrom() argument 108 if (d == null) { in copyFrom() 111 android.renderscript.BaseObj[] dN = new android.renderscript.BaseObj[d.length]; in copyFrom() 112 for (int i = 0; i < d.length; i++) { in copyFrom() 113 dN[i] = d[i].getNObj(); in copyFrom() 122 public void copyFromUnchecked(int[] d) { in copyFromUnchecked() argument 124 mN.copyFromUnchecked(d); in copyFromUnchecked() 129 public void copyFromUnchecked(short[] d) { in copyFromUnchecked() argument 131 mN.copyFromUnchecked(d); in copyFromUnchecked() 136 public void copyFromUnchecked(byte[] d) { in copyFromUnchecked() argument [all …]
|
/frameworks/base/media/tests/SoundPoolTest/src/com/android/ |
D | SoundPoolTest.java | 84 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/base/rs/java/android/renderscript/ |
D | AllocationAdapter.java | 49 public void subData1D(int off, int count, int[] d) { in subData1D() argument 50 super.copy1DRangeFrom(off, count, d); in subData1D() 55 public void subData1D(int off, int count, short[] d) { in subData1D() argument 56 super.copy1DRangeFrom(off, count, d); in subData1D() 61 public void subData1D(int off, int count, byte[] d) { in subData1D() argument 62 super.copy1DRangeFrom(off, count, d); in subData1D() 67 public void subData1D(int off, int count, float[] d) { in subData1D() argument 68 super.copy1DRangeFrom(off, count, d); in subData1D() 73 public void subData2D(int xoff, int yoff, int w, int h, int[] d) { in subData2D() argument 74 super.copy2DRangeFrom(xoff, yoff, w, h, d); in subData2D() [all …]
|
D | Allocation.java | 80 private Element.DataType validateObjectIsPrimitiveArray(Object d, boolean checkType) { in validateObjectIsPrimitiveArray() argument 81 final Class c = d.getClass(); in validateObjectIsPrimitiveArray() 509 public void copyFrom(BaseObj[] d) { in copyFrom() argument 513 if (d.length != mCurrentCount) { in copyFrom() 515 mCurrentCount + ", array length = " + d.length); in copyFrom() 519 long i[] = new long[d.length * 4]; in copyFrom() 520 for (int ct=0; ct < d.length; ct++) { in copyFrom() 521 i[ct * 4] = d[ct].getID(mRS); in copyFrom() 525 int i[] = new int[d.length]; in copyFrom() 526 for (int ct=0; ct < d.length; ct++) { in copyFrom() [all …]
|
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
D | FaceUnlock.java | 91 Log.d(TAG, "initializeView()"); in initializeView() 106 if (DEBUG) Log.d(TAG, "stopAndShowBackup()"); in stopAndShowBackup() 116 if (DEBUG) Log.d(TAG, "start()"); in start() 126 Log.d(TAG, "Binding to Face Unlock service for user=" in start() 146 if (DEBUG) Log.d(TAG, "stop()"); in stop() 166 Log.d(TAG, "Unbinding from Face Unlock service"); in stop() 173 if (DEBUG) Log.d(TAG, "Attempt to unbind from Face Unlock when not bound"); in stop() 183 if (DEBUG) Log.d(TAG, "cleanUp()"); in cleanUp() 239 Log.d(TAG, "handleServiceConnected()"); in handleServiceConnected() 247 Log.d(TAG, "Dropping startUi() in handleServiceConnected() because no longer bound"); in handleServiceConnected() [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/ |
D | armCOMM.h | 573 #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/ |
D | armCOMM.h | 573 #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/ |
D | armCOMM.h | 573 #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/tests/HwAccelerationTest/src/com/android/test/hwui/ |
D | QuickRejectActivity.java | 56 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/opt/telephony/src/java/com/android/internal/telephony/ |
D | HbpcdUtils.java | 58 Log.d(LOG_TAG, "Query unresolved arbitrary table, entries are " + c2Counter); in getMcc() 62 Log.d(LOG_TAG, "Query Unresolved arbitrary returned the cursor " + c2 ); in getMcc() 67 Log.d(LOG_TAG, "MCC found in arbitrary_mcc_sid_match: " + tmpMcc); in getMcc() 91 if (DBG) Log.d(LOG_TAG, "Query conflict sid returned the cursor " + c3 ); in getMcc() 94 if (DBG) Log.d(LOG_TAG, in getMcc() 101 if (DBG) Log.d(LOG_TAG, "time zone is not accurate, mcc may be " in getMcc() 116 if (DBG) Log.d(LOG_TAG, "Query Range returned the cursor " + c5 ); in getMcc() 119 if (DBG) Log.d(LOG_TAG, "SID found in mcc_sid_range. Return tmpMcc = " + tmpMcc); in getMcc() 125 if (DBG) Log.d(LOG_TAG, "SID NOT found in mcc_sid_range."); in getMcc() 127 if (DBG) Log.d(LOG_TAG, "Exit getMccByOtherFactors. Return tmpMcc = " + tmpMcc ); in getMcc() [all …]
|
D | CallManager.java | 412 Rlog.d(LOG_TAG, "registerPhone(" + in registerPhone() 439 Rlog.d(LOG_TAG, "unregisterPhone(" + in unregisterPhone() 604 Rlog.d(LOG_TAG, "This phone has already been registered."); in registerForPhoneStates() 722 Rlog.d(LOG_TAG, "acceptCall(" +ringingCall + " from " + ringingCall.getPhone() + ")"); in acceptCall() 723 Rlog.d(LOG_TAG, toString()); in acceptCall() 732 Rlog.d(LOG_TAG, "hasBgCall: "+ hasBgCall + "sameChannel:" + sameChannel); in acceptCall() 748 Rlog.d(LOG_TAG, "End acceptCall(" +ringingCall + ")"); in acceptCall() 749 Rlog.d(LOG_TAG, toString()); in acceptCall() 764 Rlog.d(LOG_TAG, "rejectCall(" +ringingCall + ")"); in rejectCall() 765 Rlog.d(LOG_TAG, toString()); in rejectCall() [all …]
|
/frameworks/base/core/java/android/view/animation/ |
D | TranslateAnimation.java | 59 Description d = Description.parseValue(a.peekValue( in TranslateAnimation() local 61 mFromXType = d.type; in TranslateAnimation() 62 mFromXValue = d.value; in TranslateAnimation() 64 d = Description.parseValue(a.peekValue( in TranslateAnimation() 66 mToXType = d.type; in TranslateAnimation() 67 mToXValue = d.value; in TranslateAnimation() 69 d = Description.parseValue(a.peekValue( in TranslateAnimation() 71 mFromYType = d.type; in TranslateAnimation() 72 mFromYValue = d.value; in TranslateAnimation() 74 d = Description.parseValue(a.peekValue( in TranslateAnimation() [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
D | omxVCM4P10_SATD_4x4.c | 79 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/av/media/libeffects/factory/ |
D | EffectsFactory.c | 251 effect_descriptor_t *d = NULL; in EffectGetDescriptor() local 261 ret = findEffect(NULL, uuid, &l, &d); in EffectGetDescriptor() 263 *pDescriptor = *d; in EffectGetDescriptor() 273 effect_descriptor_t *d = NULL; in EffectCreate() local 297 ret = findEffect(NULL, uuid, &l, &d); in EffectCreate() 301 ret = findSubEffect(uuid, &l, &d); in EffectCreate() 310 ALOGW("EffectCreate() library %s: could not create fx %s, error %d", l->name, d->name, ret); in EffectCreate() 419 effect_descriptor_t *d; in EffectGetSubEffects() local 422 d = (effect_descriptor_t*)e->object; in EffectGetSubEffects() 423 if (memcmp(uuid, &d->uuid, sizeof(effect_uuid_t)) == 0) { in EffectGetSubEffects() [all …]
|
/frameworks/base/core/java/android/webkit/ |
D | WebView.java | 551 if (TRACE) Log.d(LOGTAG, "WebView<init>"); in WebView() 566 if (TRACE) Log.d(LOGTAG, "setHorizontalScrollbarOverlay=" + overlay); in setHorizontalScrollbarOverlay() 577 if (TRACE) Log.d(LOGTAG, "setVerticalScrollbarOverlay=" + overlay); in setVerticalScrollbarOverlay() 632 if (TRACE) Log.d(LOGTAG, "setCertificate=" + certificate); in setCertificate() 656 if (TRACE) Log.d(LOGTAG, "savePassword=" + host); in savePassword() 676 if (TRACE) Log.d(LOGTAG, "setHttpAuthUsernamePassword=" + host); in setHttpAuthUsernamePassword() 706 if (TRACE) Log.d(LOGTAG, "destroy"); in destroy() 752 if (TRACE) Log.d(LOGTAG, "setNetworkAvailable=" + networkUp); in setNetworkAvailable() 769 if (TRACE) Log.d(LOGTAG, "saveState"); in saveState() 786 if (TRACE) Log.d(LOGTAG, "savePicture=" + dest.getName()); in savePicture() [all …]
|
/frameworks/rs/java/tests/Balls/src/com/example/android/rs/balls/ |
D | ball_physics.rs | 92 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 …]
|