/frameworks/base/core/java/android/app/ |
D | AlertDialog.java | 372 private final AlertController.AlertParams P; field in AlertDialog.Builder 394 P = new AlertController.AlertParams(new ContextThemeWrapper( in Builder() 408 return P.mContext; in getContext() 417 P.mTitle = P.mContext.getText(titleId); in setTitle() 427 P.mTitle = title; in setTitle() 443 P.mCustomTitleView = customTitleView; in setCustomTitle() 453 P.mMessage = P.mContext.getText(messageId); in setMessage() 463 P.mMessage = message; in setMessage() 473 P.mIconId = iconId; in setIcon() 483 P.mIcon = icon; in setIcon() [all …]
|
/frameworks/compile/slang/ |
D | llvm-rs-cc.cpp | 301 for (const char *P = Buf; ; ++P) { in ExpandArgsFromBuf() local 302 if (*P == '\0' || (isspace(*P) && InQuote == ' ')) { in ExpandArgsFromBuf() 312 if (*P == '\0') in ExpandArgsFromBuf() 318 if (isspace(*P)) { in ExpandArgsFromBuf() 320 CurArg.push_back(*P); in ExpandArgsFromBuf() 324 if (*P == '"' || *P == '\'') { in ExpandArgsFromBuf() 325 if (InQuote == *P) in ExpandArgsFromBuf() 328 InQuote = *P; in ExpandArgsFromBuf() 330 CurArg.push_back(*P); in ExpandArgsFromBuf() 334 if (*P == '\\') { in ExpandArgsFromBuf() [all …]
|
/frameworks/native/services/sensorservice/ |
D | Fusion.cpp | 95 const mat<TYPE, C, C>& P) { in scaleCovariance() argument 102 double v(A[c][r]*P[c][c]*0.5); in scaleCovariance() 104 v += A[k][r] * P[c][k]; in scaleCovariance() 222 P = 0; in initFusion() 339 if (!isPositiveSemidefinite(P[0][0], SYMMETRY_TOLERANCE) || in checkState() 340 !isPositiveSemidefinite(P[1][1], SYMMETRY_TOLERANCE)) { in checkState() 342 P = 0; in checkState() 428 P = Phi*P*transpose(Phi) + GQGt; in predict() 447 const mat33_t S(scaleCovariance(L, P[0][0]) + R); in update() 450 K[0] = P[0][0] * LtSi; in update() [all …]
|
/frameworks/base/media/tests/contents/media_api/music/ |
D | test_amr_ietf.amr | 2 …�R�['���E`|X�<Mq�I�C��:8%�h��[(q]���V���<`<4]�� ��x��K˳�'+�{��{���KP<Zga4���^�?�y苁�s`~Ѳ.… 3 Up_i���VS��uP<Y���P~�o�^�����8 j�9�E�#��<�����^ 'G/5��Ͳ���\�ϴ��P<'f�:F)^�/��a�'J_�… 9 …�ݖzF����/L9��-~PJB(�<z_1�&���˷��|D�p�B����5���<m!���CՒ|L2�{D�g���5��s���p<���������… 20 …d��B��z�����D�v��gW����Q���<�Uと�7qNu&�{����������n̲�p<$���<4ԣ�u�Y���^��P���D';��<�I�6y���4… 67 ?�\�C�Q*��(�<�4���/��{��/��⽺���%c���`<,�i���O��2�$r(*r���אAXm�P<0��)홄��d�-���.��!�}Wd�… 87 …Z����D6�ϖ�����~E�<�vm%a�����U��,X�I�ˋ�� Z�2�<������멸��-N7q:�h��Nc�S�}P<Drm�L2��/�nh����p�~… 89 8T� h^(�s <�fkR\�P��`Z�Jc� ����Ж�V�P<N~i?L�A�*ˊb��y�h2�R��.�_@v�<�q{��Z���_m�%ļ�4˓Ó���'���… 106 ��,W��u]��P<Vm�a��:G,쀇\+�&���Ɋ��!(����<T^&J��m38�yG�sd4����3#�=*�<H^�h'�*l���a瘍����� 113 Ӻ�U�8D�_�Y P�wͶ�<ޒi��<!�Xjá�Ek�x?t�����<hx�1o���;�e�����}����<}� <>�#�+'p�#�Xw��kd��… 123 �������3���[5"�Ձ{�%�P<�hF���#������z)A" [all …]
|
/frameworks/base/core/java/android/preference/ |
D | GenericInflater.java | 44 abstract class GenericInflater<T, P extends GenericInflater.Parent> { 120 protected GenericInflater(GenericInflater<T,P> original, Context newContext) { in GenericInflater() 219 public T inflate(int resource, P root) { in inflate() 239 public T inflate(XmlPullParser parser, P root) { in inflate() 259 public T inflate(int resource, P root, boolean attachToRoot) { in inflate() 290 public T inflate(XmlPullParser parser, P root, in inflate() 320 result = (T) onMergeRoots(root, attachToRoot, (P) xmlRoot); in inflate() 488 ((P) parent).addItemFromInflater(item); in rInflate() 517 protected P onMergeRoots(P givenRoot, boolean attachToGivenRoot, P xmlRoot) { in onMergeRoots()
|
/frameworks/rs/cpu_ref/linkloader/include/impl/ |
D | ELFObject.hxx | 146 Inst_t P = (Inst_t)(int64_t)inst; in relocateARM() local 255 uint32_t result = (S + A - P) >> 2; in relocateARM() 264 P &= ~0x3; // Base address align to 4 bytes. (For BLX.) in relocateARM() 267 uint32_t result = (S + A - P) >> 1; in relocateARM() 381 Inst_t P = (Inst_t)(int64_t)inst; in relocateAARCH64() local 384 Inst_t Page_P = P & ~0xfff; // Page address. in relocateAARCH64() 427 *inst = S + A - P; in relocateAARCH64() 432 *inst32 = static_cast<int32_t>(S + A - P); in relocateAARCH64() 437 *inst16 = static_cast<int16_t>(S + A - P); in relocateAARCH64() 455 int32_t immed = S + A - P; in relocateAARCH64() [all …]
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
D | UriDerivativeLoader.java | 30 public abstract class UriDerivativeLoader<P, R> extends AsyncTaskLoader<R> { 33 private final P mParam; 55 public abstract R loadInBackground(P param, CancellationSignal signal); in loadInBackground() 86 public UriDerivativeLoader(Context context, P param) { in UriDerivativeLoader()
|
D | ProviderExecutor.java | 76 public <P> void execute(AsyncTask<P, ?, ?> task, P... params) { in execute() argument
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMRelocator.cpp | 950 Relocator::Address P = pReloc.place(); in got_prel() local 953 pReloc.target() = GOT_S + A - P; in got_prel() 965 Relocator::DWord P = pReloc.place(); in thm_jump8() local 973 Relocator::DWord X = S + A - P; in thm_jump8() 984 Relocator::DWord P = pReloc.place(); in thm_jump11() local 992 Relocator::DWord X = S + A - P; in thm_jump11() 1010 Relocator::Address P = pReloc.place(); in thm_jump19() local 1029 Relocator::DWord X = ((S + A) | T) - P; in thm_jump19() 1064 Relocator::Address P = pReloc.place(); in call() local 1088 (((S + A - P) & 2) << 23); in call() [all …]
|
/frameworks/base/tests/LegacyRestoreTest/ |
D | kk-fixed-encrypted-settings-abcd.ab | 12 �����������wz7-L-���|lt���=Ź��d�@Ɨ5�4$�s�+89��t�Fʹ�P{�r�������AE�l�]p�g��<>��6�����w�p�;�i… 18 ��K��KVY�����i�Y�����j<��KC��I7��#Xu13Z�1w㵀;�T� �{��U�C����sKþ�8%:���% #��P�@o($���û"��a����… 21 �K�)�dd����z �P�ОH�fv�|%��Ц>�̭�3��qC�(P�3R*RF���}+*c�l���ދ1fX�3j�Np�0�D�����(k��)^\�E����…
|
/frameworks/compile/mclinker/lib/Target/AArch64/ |
D | AArch64Relocator.cpp | 479 Relocator::DWord P = pReloc.place(); in rel() local 498 Relocator::DWord X = S + A - P; in rel() 532 Relocator::DWord P = pReloc.place() ; in adr_prel_pg_hi21() local 534 helper_get_page_address(P); in adr_prel_pg_hi21() 559 Relocator::Address P = pReloc.place(); in call() local 565 Relocator::DWord X = S + A - P; in call() 590 Relocator::Address P = pReloc.place(); in condbr() local 596 Relocator::DWord X = S + A - P; in condbr() 613 Relocator::Address P = pReloc.place(); in adr_got_page() local 615 helper_get_page_address(P); in adr_got_page()
|
/frameworks/compile/slang/tests/P_warnings_rsSetElementAt/ |
D | setelementat.rs | 39 } P; 40 rsSetElementAt(A, &P, 0, 0);
|
/frameworks/av/media/libstagefright/rtsp/ |
D | AH263Assembler.cpp | 106 unsigned P = (payloadHeader >> 10) & 1; in addPacket() local 135 size_t skip = V + PLEN + (P ? 0 : 2); in addPacket() 139 if (P) { in addPacket()
|
/frameworks/base/packages/InputDevices/res/raw/ |
D | keyboard_layout_english_us_colemak.kcm | 24 map key 19 P 142 key P { 143 label: 'P' 145 shift, capslock: 'P'
|
D | keyboard_layout_english_us_dvorak.kcm | 28 map key 19 P 159 key P { 160 label: 'P' 162 shift, capslock: 'P'
|
D | keyboard_layout_english_uk.kcm | 169 key P { 170 label: 'P' 172 shift, capslock: 'P'
|
D | keyboard_layout_english_us.kcm | 159 key P { 160 label: 'P' 162 shift, capslock: 'P'
|
D | keyboard_layout_spanish_latin.kcm | 163 key P { 164 label: 'P' 166 shift, capslock: 'P'
|
D | keyboard_layout_italian.kcm | 163 key P { 164 label: 'P' 166 shift, capslock: 'P'
|
D | keyboard_layout_lithuanian.kcm | 180 key P { 181 label: 'P' 183 shift, capslock: 'P'
|
D | keyboard_layout_french_ca.kcm | 173 key P { 174 label: 'P' 176 shift, capslock: 'P'
|
D | keyboard_layout_spanish.kcm | 167 key P { 168 label: 'P' 170 shift, capslock: 'P'
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsRelocator.cpp | 111 Relocation::DWord P() const in P() function in mcld::MipsRelocationInfo 838 int32_t P = pReloc.P(); in rel26() local 844 pReloc.result() = A | ((P + 4) & 0x3F000000); in rel26() 862 int32_t P = pReloc.P(); in hi16() local 864 pReloc.result() = ((AHL + GP - P) - (int16_t)(AHL + GP - P)) >> 16; in hi16() 889 int32_t P = pReloc.P(); in lo16() local 891 pReloc.result() = AHL + GP - P + 4; in lo16()
|
/frameworks/base/ |
D | CleanSpec.mk | 80 …arget/common/obj/JAVA_LIBRARIES/framework_intermediates/src/core/java/android/content/IClipboard.P) 81 …IES/framework_intermediates/src/telephony/java/com/android/internal/telephony/ITelephonyRegistry.P) 107 …get/common/obj/JAVA_LIBRARIES/framework_intermediates/src/media/java/android/media/IAudioService.P) 108 …get/common/obj/JAVA_LIBRARIES/framework_intermediates/src/media/java/android/media/IAudioService.P) 130 …JAVA_LIBRARIES/framework_intermediates/src/core/java/android/accessibilityservice/IEventListener.P) 131 …LIBRARIES/framework_intermediates/src/core/java/android/view/accessibility/IAccessibilityManager.P) 133 …ork_intermediates/src/core/java/android/accessibilityservice/IAccessibilityServiceClientCallback.P) 134 …S/framework_intermediates/src/core/java/android/accessibilityservice/IAccessibilityServiceClient.P) 142 …ramework_intermediates/src/telephony/java/com/android/internal/telephony/IExtendedNetworkService.P) 145 …/JAVA_LIBRARIES/framework_intermediates/src/core/java/android/view/IDisplayContentChangeListener.P) [all …]
|
/frameworks/base/core/tests/coretests/certs/ |
D | unit_test_diff.x509.pem | 11 xqP+zV47zj1Dsup1FU+PG1PBFZ4wSQYDVR0jBEIwQIAUxqP+zV47zj1Dsup1FU+P
|