Home
last modified time | relevance | path

Searched refs:D (Results 1 – 25 of 294) sorted by relevance

12345678910>>...12

/frameworks/rs/java/tests/Refocus/dataExtraction/
DN5.txt9 07-30 19:27:06.465 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ Initialize: 769…
10 07-30 19:27:07.209 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ UnpackInputImag…
15 07-30 19:27:07.387 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ MarkLayerMask: …
16 07-30 19:27:07.786 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ ComputeLayerMat…
17 07-30 19:27:08.762 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ ComputeIntegral…
18 07-30 19:27:08.791 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ FilterLayerBehi…
19 07-30 19:27:09.832 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ updateSharpImag…
24 07-30 19:27:10.008 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ MarkLayerMask: …
25 07-30 19:27:10.222 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ ComputeLayerMat…
26 07-30 19:27:11.009 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ ComputeIntegral…
[all …]
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
DCat.java111 private CatParts D; field in Cat
129 D = new CatParts(context); in Cat()
142 tint(mBodyColor, D.body, D.head, D.leg1, D.leg2, D.leg3, D.leg4, D.tail, in Cat()
143 D.leftEar, D.rightEar, D.foot1, D.foot2, D.foot3, D.foot4, D.tailCap); in Cat()
144 tint(0x20000000, D.leg2Shadow, D.tailShadow); in Cat()
146 tint(0xFFFFFFFF, D.leftEye, D.rightEye, D.mouth, D.nose); in Cat()
148 tint(isDark(mBodyColor) ? 0xFFEF9A9A : 0x20D50000, D.leftEarInside, D.rightEarInside); in Cat()
150 tint(chooseP(nsr, P_BELLY_COLORS), D.belly); in Cat()
151 tint(chooseP(nsr, P_BELLY_COLORS), D.back); in Cat()
153 tint(faceColor, D.faceSpot); in Cat()
[all …]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
DDurableUtils.java32 public static <D extends Durable> byte[] writeToArray(D d) throws IOException { in writeToArray()
38 public static <D extends Durable> D readFromArray(byte[] data, D d) throws IOException { in readFromArray()
51 public static <D extends Durable> byte[] writeToArrayOrNull(D d) { in writeToArrayOrNull()
60 public static <D extends Durable> D readFromArrayOrNull(byte[] data, D d) { in readFromArrayOrNull()
69 public static <D extends Durable> void writeToParcel(Parcel parcel, D d) { in writeToParcel()
77 public static <D extends Durable> D readFromParcel(Parcel parcel, D d) { in readFromParcel()
/frameworks/base/core/java/android/content/
DLoader.java52 public class Loader<D> {
54 OnLoadCompleteListener<D> mListener;
55 OnLoadCanceledListener<D> mOnLoadCanceledListener;
94 public interface OnLoadCompleteListener<D> {
101 public void onLoadComplete(Loader<D> loader, D data); in onLoadComplete()
112 public interface OnLoadCanceledListener<D> {
118 public void onLoadCanceled(Loader<D> loader); in onLoadCanceled()
142 public void deliverResult(D data) { in deliverResult()
181 public void registerListener(int id, OnLoadCompleteListener<D> listener) { in registerListener()
194 public void unregisterListener(OnLoadCompleteListener<D> listener) { in unregisterListener()
[all …]
DAsyncTaskLoader.java53 public abstract class AsyncTaskLoader<D> extends Loader<D> {
57 final class LoadTask extends AsyncTask<Void, Void, D> implements Runnable {
66 protected D doInBackground(Void... params) { in doInBackground()
69 D data = AsyncTaskLoader.this.onLoadInBackground(); in doInBackground()
89 protected void onPostExecute(D data) { in onPostExecute()
100 protected void onCancelled(D data) { in onCancelled()
213 public void onCanceled(D data) { in onCanceled()
239 void dispatchOnCancelled(LoadTask task, D data) { in dispatchOnCancelled()
252 void dispatchOnLoadComplete(LoadTask task, D data) { in dispatchOnLoadComplete()
297 public abstract D loadInBackground(); in loadInBackground()
[all …]
/frameworks/support/v4/java/android/support/v4/content/
DLoader.java34 public class Loader<D> {
36 OnLoadCompleteListener<D> mListener;
37 OnLoadCanceledListener<D> mOnLoadCanceledListener;
76 public interface OnLoadCompleteListener<D> {
83 public void onLoadComplete(Loader<D> loader, D data); in onLoadComplete()
94 public interface OnLoadCanceledListener<D> {
100 public void onLoadCanceled(Loader<D> loader); in onLoadCanceled()
124 public void deliverResult(D data) { in deliverResult()
163 public void registerListener(int id, OnLoadCompleteListener<D> listener) { in registerListener()
176 public void unregisterListener(OnLoadCompleteListener<D> listener) { in unregisterListener()
[all …]
DAsyncTaskLoader.java38 public abstract class AsyncTaskLoader<D> extends Loader<D> {
42 final class LoadTask extends ModernAsyncTask<Void, Void, D> implements Runnable {
51 protected D doInBackground(Void... params) { in doInBackground()
54 D data = AsyncTaskLoader.this.onLoadInBackground(); in doInBackground()
74 protected void onPostExecute(D data) { in onPostExecute()
85 protected void onCancelled(D data) { in onCancelled()
197 public void onCanceled(D data) { in onCanceled()
223 void dispatchOnCancelled(LoadTask task, D data) { in dispatchOnCancelled()
236 void dispatchOnLoadComplete(LoadTask task, D data) { in dispatchOnLoadComplete()
281 public abstract D loadInBackground(); in loadInBackground()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
DVolumeDialogMotion.java63 if (D.BUG) Log.d(TAG, "mDialog.onDismiss"); in VolumeDialogMotion()
69 if (D.BUG) Log.d(TAG, "mDialog.onShow"); in VolumeDialogMotion()
84 if (D.BUG) Log.d(TAG, "mShowing = " + mShowing); in setShowing()
91 if (D.BUG) Log.d(TAG, "mDismissing = " + mDismissing); in setDismissing()
99 if (D.BUG) Log.d(TAG, "mAnimating = " + mAnimating); in updateAnimating()
106 if (D.BUG) Log.d(TAG, "startShow"); in startShow()
115 if (D.BUG) Log.d(TAG, "mDialog.show()"); in startShow()
129 if (D.BUG) Log.d(TAG, "startShowAnimation"); in startShowAnimation()
154 if (D.BUG) Log.d(TAG, "show.onAnimationEnd"); in startShowAnimation()
159 if (D.BUG) Log.d(TAG, "show.onAnimationCancel"); in startShowAnimation()
[all …]
DMediaSessions.java87 if (D.BUG) Log.d(TAG, "init"); in init()
101 if (D.BUG) Log.d(TAG, "destroy"); in destroy()
112 if (D.BUG) Log.d(TAG, "Setting level to " + level); in setVolume()
118 if (D.BUG) Log.d(TAG, "remoteVolumeChangedH " + controller.getPackageName() + " " in onRemoteVolumeChangedH()
128 if (D.BUG) Log.d(TAG, "updateRemoteControllerH " + pkg); in onUpdateRemoteControllerH()
134 if (D.BUG) Log.d(TAG, "onActiveSessionsUpdatedH n=" + controllers.size()); in onActiveSessionsUpdatedH()
157 if (D.BUG) Log.d(TAG, "Removing " + r.name + " sentRemote=" + r.sentRemote); in onActiveSessionsUpdatedH()
249 if (D.BUG) Log.d(TAG, N + " controllers"); in dumpMediaSessions()
254 if (D.BUG) Log.d(TAG, sw.toString()); in dumpMediaSessions()
277 if (D.BUG) Log.d(TAG, cb("onAudioInfoChanged") + Util.playbackInfoToString(info) in onAudioInfoChanged()
[all …]
DVolumeDialogController.java163 if (D.BUG) Log.d(TAG, "destroy"); in destroy()
316 if (D.BUG) Log.d(TAG, "updateActiveStreamW " + activeStream); in updateActiveStreamW()
318 if (D.BUG) Log.d(TAG, "forceVolumeControlStream " + s); in updateActiveStreamW()
353 if (D.BUG) Log.d(TAG, "updateStreamRoutedToBluetoothW stream=" + stream
458 if (D.BUG) Log.d(TAG, "onSetStreamVolume " + stream + " level=" + level); in onSetStreamVolumeW()
478 if (D.BUG) Log.d(TAG, "onSetZenModeW " + mode); in onSetZenModeW()
487 if (D.BUG) Log.d(TAG, "showDndTile"); in showDndTile()
496 if (D.BUG) Log.d(TAG, "displaySafeVolumeWarning " in displaySafeVolumeWarning()
504 if (D.BUG) Log.d(TAG, "volumeChanged " + AudioSystem.streamToString(streamType) in volumeChanged()
512 if (D.BUG) Log.d(TAG, "masterMuteChanged"); in masterMuteChanged()
[all …]
/frameworks/base/media/tests/contents/media_api/music/
Dtest_amr_ietf.amr9 …�ݖzF����/L9��-~PJB(�<z_1�&���˷��|D�p�B����5���<m!���CՒ|L2�{D�g����5��s���p<���������…
12 D�sG�vE0ɰ<x�q��y���{���{�����]'Ӽ��@�<r)����g�
20 …���+4uxkw�**�m>�;.��e��<�>d��B��z�����D�v��gW����Q���<�Uと�7qNu&�{����������n̲�p<$���<4ԣ�u�…
69 …�����L%_���<�X�8��U�&מ�l�+C_x[�q:^�@ٲ�<44WE(�� U��"Pz�B�D,��D�$�1��<"?vG�2���B�m�Y�D��d�Q�
78 …��@<�d]�����,��;1�$�>C�4_2A��< ��z���B�,�-���ėy�t�.߄�$��<؅��!`��DT���Gc )�u�+I�#�<…
80 2��Z�.�yM��N�>�<�_K��A�<l����=N��-`��3�L��+�@<�D�,D��V�����#x�/��KY!���p<#�W�6�j(9��9�…
85 H�B�<J{W�Բ��?�mN7�Sh��N������v�<O&q�c��3�-�e�VӶ�q�u�ͶO�y��<T�g��H!��+��b�_��9fFD����(p<…
87 …Z�2�<������멸��-N7q:�h��Nc�S�}P<Drm�L2��/�nh����p�~ ����D�<�pdE�� ��f���ml�FN��Կ��CF�<D�Z…
88 �>�L��&(:�0���Y�<�dd9�R!�PY`��D�w�[�
105 …���T�Cm4�|p�:�� }�a=��<~AVx 5��ɚ�8�%��rmG5ݥZ�hu��<0S�r�kE�+jآ�/T����?�Djo���<8@9NN��ZE�E%�1…
[all …]
/frameworks/base/core/java/android/app/
DLoaderManager.java62 public interface LoaderCallbacks<D> {
70 public Loader<D> onCreateLoader(int id, Bundle args); in onCreateLoader()
111 public void onLoadFinished(Loader<D> loader, D data); in onLoadFinished()
120 public void onLoaderReset(Loader<D> loader); in onLoaderReset()
145 public abstract <D> Loader<D> initLoader(int id, Bundle args, in initLoader()
146 LoaderManager.LoaderCallbacks<D> callback); in initLoader()
163 public abstract <D> Loader<D> restartLoader(int id, Bundle args, in restartLoader()
164 LoaderManager.LoaderCallbacks<D> callback); in restartLoader()
178 public abstract <D> Loader<D> getLoader(int id); in getLoader()
601 … public <D> Loader<D> initLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) { in initLoader()
[all …]
/frameworks/support/v4/java/android/support/v4/app/
DLoaderManager.java43 public interface LoaderCallbacks<D> {
51 public Loader<D> onCreateLoader(int id, Bundle args); in onCreateLoader()
92 public void onLoadFinished(Loader<D> loader, D data); in onLoadFinished()
101 public void onLoaderReset(Loader<D> loader); in onLoaderReset()
126 public abstract <D> Loader<D> initLoader(int id, Bundle args, in initLoader()
127 LoaderManager.LoaderCallbacks<D> callback); in initLoader()
144 public abstract <D> Loader<D> restartLoader(int id, Bundle args, in restartLoader()
145 LoaderManager.LoaderCallbacks<D> callback); in restartLoader()
159 public abstract <D> Loader<D> getLoader(int id); in getLoader()
594 … public <D> Loader<D> initLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) { in initLoader()
[all …]
/frameworks/av/media/libeffects/lvm/lib/Eq/src/
DLVEQNB_CalcCoef.c101 LVM_INT16 D; in LVEQNB_DoublePrecCoefs() local
120 D = LVEQNB_DTable[15]; /* D = 1 if GaindB >= 0 */ in LVEQNB_DoublePrecCoefs()
124 D = LVEQNB_DTable[Gain+15]; /* D = 1 / (1 + G) if GaindB < 0 */ in LVEQNB_DoublePrecCoefs()
130 Dt0 = D * (T0 >> 10); in LVEQNB_DoublePrecCoefs()
232 LVM_INT16 D; in LVEQNB_SinglePrecCoefs() local
251 D = LVEQNB_DTable[15]; /* D = 1 if GaindB >= 0 */ in LVEQNB_SinglePrecCoefs()
255 D = LVEQNB_DTable[Gain+15]; /* D = 1 / (1 + G) if GaindB < 0 */ in LVEQNB_SinglePrecCoefs()
261 Dt0 = D * (T0 >> 10); in LVEQNB_SinglePrecCoefs()
/frameworks/av/services/audioflinger/
DAudioResamplerFirGen.h225 inline double Poly4(double A, double B, double C, double D, double x) {
226 return A + x * (B + x * (C + x * (D)));
229 inline double Poly7(double A, double B, double C, double D, double E, double F, double G,
231 return A + x * (B + x * (C + x * (D + x * (E + x * (F + x * (G))))));
234 inline double Poly9(double A, double B, double C, double D, double E, double F, double G,
236 return A + x * (B + x * (C + x * (D + x * (E + x * (F + x * (G + x * (H + x * (I))))))));
259 inline double Poly4(double A, double B, double C, double D, double x, double x2) {
260 return Poly2(A, B, x) + Poly2(C, D, x) * x2; // same as poly2(poly2, poly2, x2);
263 inline double Poly4(double A, double B, double C, double D, double x) {
264 return Poly4(A, B, C, D, x, x * x);
[all …]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dpost_filter.cpp189 int mbnum, strength, A_D, d1_2, d1, d2, A, B, C, D, b_size; in H263_Deblock() local
224 D = *(rec_y + width); in H263_Deblock()
225 A_D = A - D; in H263_Deblock()
281 *(rec_y + width) = D + d2; in H263_Deblock()
321 D = *(rec_y + width); in H263_Deblock()
322 A_D = A - D; in H263_Deblock()
378 *(rec_y + width) = D + d2; in H263_Deblock()
412 D = *(rec_y + 1); in H263_Deblock()
413 A_D = A - D; in H263_Deblock()
469 *(rec_y + 1) = D + d2; in H263_Deblock()
[all …]
/frameworks/base/services/core/java/com/android/server/location/
DLocationFudger.java38 private static final boolean D = false; field in LocationFudger
228 if (D) Log.d(TAG, String.format("applied offset of %.0f, %.0f (meters)", in createCoarseLocked()
259 if (D) Log.d(TAG, "fudged " + fine + " to " + coarse); in createCoarseLocked()
286 if (D) Log.d(TAG, String.format("old offset: %.0f, %.0f (meters)", in updateRandomOffsetLocked()
297 if (D) Log.d(TAG, String.format("new offset: %.0f, %.0f (meters)", in updateRandomOffsetLocked()
348 if (D) { in setAccuracyInMetersLocked()
370 if (D) { in loadCoarseAccuracy()
DLocationBlacklist.java42 private static final boolean D = LocationManagerService.D; field in LocationBlacklist
70 if (D) Slog.d(TAG, "whitelist: " + Arrays.toString(mWhitelist)); in reloadBlacklistLocked()
72 if (D) Slog.d(TAG, "blacklist: " + Arrays.toString(mBlacklist)); in reloadBlacklistLocked()
92 if (D) Log.d(TAG, "dropping location (blacklisted): " in isBlacklisted()
DGeofenceManager.java44 private static final boolean D = LocationManagerService.D; field in GeofenceManager
121 if (D) { in addFence()
144 if (D) { in removeFence()
170 if (D) { in removeFence()
260 if (D) { in updateFences()
271 if (D) { in updateFences()
329 if (D) { in updateFences()
348 if (D) { in sendIntentEnter()
358 if (D) { in sendIntentExit()
/frameworks/base/services/core/java/com/android/server/
DServiceWatcher.java52 private static final boolean D = false; field in ServiceWatcher
126 if (D) Log.d(mTag, "Overlay enabled, packages=" + Arrays.toString(pkgs)); in ServiceWatcher()
133 if (D) Log.d(mTag, "Overlay disabled, default package=" + servicePackageName); in ServiceWatcher()
233 if (D) { in bindBestPackageLocked()
241 if (D) Log.d(mTag, "Unable to query intent services for action: " + mAction); in bindBestPackageLocked()
268 if (D) Log.d(mTag, "unbinding " + component); in unbindLocked()
280 if (D) Log.d(mTag, "binding " + component + " (v" + version + ") (u" + userId + ")"); in bindToPackageLocked()
351 if (D) Log.d(mTag, component + " connected"); in onServiceConnected()
365 if (D) Log.d(mTag, component + " disconnected"); in onServiceDisconnected()
/frameworks/base/tests/LegacyRestoreTest/
Dkk-fixed-encrypted-settings-abcd.ab13 &�R���o�!�D�ɁF v�,� ]�"��\(��g�z�� �ߙ5G�n��{2�
14 Y?^[��S�|�+�����u��H!�D���F�o�7�_-�p�
17 …�\�m��k�r�0�-\���xe0u�e��dZ�ۅ��V��� >I����N��<��?�q�R}b�O �JK�>��}�K�D�����+�2Z��0�����ic#…
21 �K�)�dd����z �P�ОH�fv�|%��Ц�>�̭�3��qC�(P�3R*RF���} +*c�l���ދ1fX�3j�Np�0�D�����(k��)^\�E����…
23 …��YM�q���v'�.�6b>��>}���b;��5����{uo���ۻ^�_��S�QV�lDf �*�$SpjnK��ض�DɮV ������7�r�,��(�…
/frameworks/av/media/libstagefright/codecs/amrwb/src/
Dlagconceal.cpp151 int16 D, D2; in lagconceal() local
222 D = noise_gen_amrwb(seed); /* D={-1, ...,1} */ in lagconceal()
225 D2 = mult_int16(tmp, D); in lagconceal()
307 D = noise_gen_amrwb(seed); /* D={-1,.., 1} */ in lagconceal()
310 D2 = mult_int16(tmp, D); in lagconceal()
/frameworks/native/services/sensorservice/
Dmat.h42 template <typename TYPE, size_t C, size_t R, size_t D>
44 const mat<TYPE, D, R>& lhs, in doMul() argument
45 const mat<TYPE, C, D>& rhs) in doMul()
51 for (size_t k=0 ; k<D ; k++) { in doMul()
60 template <typename TYPE, size_t R, size_t D>
62 const mat<TYPE, D, R>& lhs, in doMul() argument
63 const vec<TYPE, D>& rhs) in doMul()
68 for (size_t k=0 ; k<D ; k++) { in doMul()
184 template <size_t D>
186 const mat<TYPE, D, R>& lhs,
[all …]
/frameworks/base/libs/common_time/
Dclock_recovery.cpp63 uint64_t D = local_clock_->getLocalFreq() * kMinFullRangeSlewChange_mSec; in ClockRecoveryLoop() local
64 LinearTransform::reduce(&N, &D); in ClockRecoveryLoop()
65 while ((N > INT32_MAX) || (D > UINT32_MAX)) { in ClockRecoveryLoop()
67 D >>= 1; in ClockRecoveryLoop()
68 LinearTransform::reduce(&N, &D); in ClockRecoveryLoop()
71 time_to_cur_slew_.a_to_b_denom = static_cast<uint32_t>(D); in ClockRecoveryLoop()
/frameworks/opt/vcard/tests/res/raw/
Dv21_backslash.vcf3 N:;A\;B\\;C\\\;;D;\:E;\\\\;
4 FN:A;B\C\;D:E\\

12345678910>>...12