/frameworks/base/core/java/android/preference/ |
D | PreferenceGroupAdapter.java | 196 PreferenceLayout pl = in != null? in : new PreferenceLayout(); in createPreferenceLayout() local 197 pl.name = preference.getClass().getName(); in createPreferenceLayout() 198 pl.resId = preference.getLayoutResource(); in createPreferenceLayout() 199 pl.widgetResId = preference.getWidgetLayoutResource(); in createPreferenceLayout() 200 return pl; in createPreferenceLayout() 204 final PreferenceLayout pl = createPreferenceLayout(preference, null); in addPreferenceClassName() local 205 int insertPos = Collections.binarySearch(mPreferenceLayouts, pl); in addPreferenceClassName() 211 mPreferenceLayouts.add(insertPos, pl); in addPreferenceClassName()
|
/frameworks/av/media/codec2/sfplugin/ |
D | Codec2InfoBuilder.cpp | 110 C2StreamProfileLevelInfo pl(encoder /* output */, 0u); in addSupportedProfileLevels() local 112 C2FieldSupportedValuesQuery::Possible(C2ParamField(&pl, &pl.profile)) in addSupportedProfileLevels() 176 pl.profile = (C2Config::profile_t)profile.ref<uint32_t>(); in addSupportedProfileLevels() 178 err = intf->config({&pl}, C2_DONT_BLOCK, &failures); in addSupportedProfileLevels() 179 ALOGV("set profile to %u -> %s", pl.profile, asString(err)); in addSupportedProfileLevels() 181 C2FieldSupportedValuesQuery::Current(C2ParamField(&pl, &pl.level)) in addSupportedProfileLevels() 192 pl.level = (C2Config::level_t)level.ref<uint32_t>(); in addSupportedProfileLevels() 193 ALOGV("supporting level: %u", pl.level); in addSupportedProfileLevels() 195 if (mapper && mapper->mapProfile(pl.profile, &sdkProfile) in addSupportedProfileLevels() 196 && mapper->mapLevel(pl.level, &sdkLevel)) { in addSupportedProfileLevels() [all …]
|
/frameworks/av/cmds/stagefright/ |
D | stagefright.cpp | 748 for (const MediaCodecInfo::ProfileLevel &pl : profileLevels) { in dumpCodecDetails() local 750 … mediaType.equalsIgnoreCase(MIMETYPE_AUDIO_AAC) ? asString_AACObject(pl.mProfile) : in dumpCodecDetails() 751 … mediaType.equalsIgnoreCase(MIMETYPE_VIDEO_MPEG2) ? asString_MPEG2Profile(pl.mProfile) : in dumpCodecDetails() 752 … mediaType.equalsIgnoreCase(MIMETYPE_VIDEO_H263) ? asString_H263Profile(pl.mProfile) : in dumpCodecDetails() 753 … mediaType.equalsIgnoreCase(MIMETYPE_VIDEO_MPEG4) ? asString_MPEG4Profile(pl.mProfile) : in dumpCodecDetails() 754 … mediaType.equalsIgnoreCase(MIMETYPE_VIDEO_AVC) ? asString_AVCProfile(pl.mProfile) : in dumpCodecDetails() 755 … mediaType.equalsIgnoreCase(MIMETYPE_VIDEO_VP8) ? asString_VP8Profile(pl.mProfile) : in dumpCodecDetails() 756 … mediaType.equalsIgnoreCase(MIMETYPE_VIDEO_HEVC) ? asString_HEVCProfile(pl.mProfile) : in dumpCodecDetails() 757 … mediaType.equalsIgnoreCase(MIMETYPE_VIDEO_VP9) ? asString_VP9Profile(pl.mProfile) : in dumpCodecDetails() 758 … mediaType.equalsIgnoreCase(MIMETYPE_VIDEO_AV1) ? asString_AV1Profile(pl.mProfile) : in dumpCodecDetails() [all …]
|
/frameworks/av/services/camera/libcameraservice/device3/ |
D | StatusTracker.cpp | 62 Mutex::Autolock pl(mPendingLock); in addComponent() local 80 Mutex::Autolock pl(mPendingLock); in removeComponent() local 178 Mutex::Autolock pl(mPendingLock); in threadLoop() local 200 Mutex::Autolock pl(mPendingLock); in threadLoop() local 257 Mutex::Autolock pl(mPendingLock); in threadLoop() local
|
D | Camera3Device.cpp | 4260 Mutex::Autolock pl(mPauseLock); in signalPipelineDrain() local 4271 Mutex::Autolock pl(mPauseLock); in resetPipelineDrain() local 4544 Mutex::Autolock pl(mPauseLock); in waitForNextRequestLocked() local 4587 Mutex::Autolock pl(mPauseLock); in waitForNextRequestLocked() local
|
/frameworks/av/media/codec2/components/dav1d/ |
D | C2SoftDav1dDump.cpp | 166 for (int pl = 1; pl <= 2; pl++) { in writeDav1dOutYuvFile() local 167 ptr = (uint8_t*)p.data[pl]; in writeDav1dOutYuvFile()
|
/frameworks/wilhelm/tests/examples/ |
D | xaVideoDecoderCapabilities.cpp | 277 for(XAuint32 pl = 0 ; pl < nbCombinations ; pl++) { in TestVideoDecoderCapabilities() local 280 res = (*decItf)->GetVideoDecoderCapabilities(decItf, decoder, &pl, &decDescriptor); in TestVideoDecoderCapabilities()
|
/frameworks/minikin/fuzz/hyphenator_fuzzer/ |
D | hyphenator.dict | 21 "pl" 24 "pl"
|
/frameworks/av/media/libmediaplayerservice/ |
D | MediaPlayerService.cpp | 372 for (const MediaCodecInfo::ProfileLevel &pl : profileLevels) { in dumpCodecDetails() local 375 ? asString_AACObject(pl.mProfile) : in dumpCodecDetails() 377 ? asString_MPEG2Profile(pl.mProfile) : in dumpCodecDetails() 379 ? asString_H263Profile(pl.mProfile) : in dumpCodecDetails() 381 ? asString_MPEG4Profile(pl.mProfile) : in dumpCodecDetails() 383 ? asString_AVCProfile(pl.mProfile) : in dumpCodecDetails() 385 ? asString_VP8Profile(pl.mProfile) : in dumpCodecDetails() 387 ? asString_HEVCProfile(pl.mProfile) : in dumpCodecDetails() 389 ? asString_VP9Profile(pl.mProfile) : in dumpCodecDetails() 391 ? asString_AV1Profile(pl.mProfile) : in dumpCodecDetails() [all …]
|
/frameworks/base/media/java/android/media/ |
D | MediaCodecInfo.java | 1062 for (CodecProfileLevel pl : profileLevels) { in isFormatSupported() 1063 if (pl.profile == profile && pl.level > maxLevel) { in isFormatSupported() 1067 || pl.level != CodecProfileLevel.H263Level45 in isFormatSupported() 1069 maxLevel = pl.level; in isFormatSupported() 1128 for (CodecProfileLevel pl: profileLevels) { in supportsProfileLevel() 1129 if (pl.profile != profile) { in supportsProfileLevel() 1153 if (pl.level != level && pl.level == CodecProfileLevel.H263Level45 in supportsProfileLevel() 1162 if (pl.level != level && pl.level == CodecProfileLevel.MPEG4Level1 in supportsProfileLevel() 1171 (pl.level & CodecProfileLevel.HEVCHighTierLevels) != 0; in supportsProfileLevel() 1179 if (pl.level >= level) { in supportsProfileLevel() [all …]
|
/frameworks/base/tools/aapt2/integration-tests/DumpTest/ |
D | minimal_expected.txt | 48 application-label-pl:'Bubble Girl' 91 …ja' 'jv' 'ka' 'kk' 'kn' 'ko' 'lt' 'lv' 'mk' 'ml' 'mr' 'ms' 'nb' 'nl' 'pa' 'pl' 'pt-BR' 'pt-PT' 'ro…
|
/frameworks/base/ |
D | OWNERS | 22 # via https://android.git.corp.google.com/All-Projects/+/refs/meta/config/rules.pl.
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/graph/ |
D | BatteryMeterDrawableBase.java | 400 final float pl = mFrame.left + (mFrame.width() - pw) / 2; in draw() local 404 if (mPlusFrame.left != pl || mPlusFrame.top != pt in draw() 406 mPlusFrame.set(pl, pt, pr, pb); in draw()
|
/frameworks/av/media/codec2/sfplugin/tests/ |
D | CCodecConfig_test.cpp | 636 C2StreamProfileLevelInfo::input *pl = in TEST_P() local 637 FindParam<std::remove_pointer<decltype(pl)>::type>(configUpdate); in TEST_P() 638 ASSERT_NE(nullptr, pl); in TEST_P() 639 ASSERT_EQ(c2Profile, pl->profile); in TEST_P()
|
/frameworks/native/libs/gui/tests/ |
D | BufferQueue_test.cpp | 1062 sp<BufferDiscardedListener> pl(new BufferDiscardedListener); in TEST_F() local 1063 ASSERT_EQ(OK, mProducer->connect(pl, in TEST_F() 1121 auto buffersDiscarded = pl->getDiscardedSlots(); in TEST_F() 1215 sp<BufferDetachedListener> pl(new BufferDetachedListener); in TEST_F() local 1216 ASSERT_EQ(OK, mProducer->connect(pl, NATIVE_WINDOW_API_CPU, true, &output)); in TEST_F() 1247 ASSERT_EQ(pl->getDetachedSlots().size(), 1u); in TEST_F() 1248 ASSERT_EQ(pl->getDetachedSlots()[0], slots[1]); in TEST_F()
|
/frameworks/compile/libbcc/tests/debuginfo/ |
D | lit.site.cfg | 56 config.test_bcc_debuginfo = inferTool(lit, 'test_bcc_debuginfo.pl', \
|
/frameworks/base/core/res/geoid_map_assets/ |
D | expiration-distance-disk-tile-7.textpb | 2 …H\027\314\b\212v\344\371L\022 B\340/\302!\324Z\v\321\275\177\274\3139\'\352pl\221Gi\323EC\b(-\204\…
|
/frameworks/compile/slang/tests/P_reduce_general_result/ |
D | reduce_general_result.rscript | 5 // This test case was created by ./gen-result.pl.
|
/frameworks/compile/slang/tests/P_reduce_general_accumulator/ |
D | reduce_general_accumulator.rscript | 5 // This test case was created by ./gen-accumulator.pl.
|
/frameworks/base/services/tests/mockingservicestests/res/raw/ |
D | backup_telephony_with_password | 34 …���MΞx;bM��0�"�|�M��0\Ur�|�����t�T��_[�|K'��ȐøٮK����`%��rTtN�8@�pl�[a��=4�f�R���婰za�…
|
/frameworks/av/media/libstagefright/httplive/fuzzer/corpus/ |
D | audio | 322 …��I����_��S�����=ǟ�]ge��ګ�0��'�y�V�ٽk;�.8� �)ϡL��Y�f)�r��'��cr Xn��@pl�'�ØJ=>�[(*#[��H�r… 481 ��Bk[�\��$�J�& ��Fs�m�h�UJN�����c�p)�W*��-�pl'�A^)�ӱ����(#8�N��5H�r5�����3�{5���1�H�1Ml�… 578 …��I����_��S�����=ǟ�]ge��ګ�0��'�y�V�ٽk;�.8� �)ϡL��Y�f)�r��'��cr Xn��@pl�'�ØJ=>�[(*#[��H�r… 737 ��Bk[�\��$�J�& ��Fs�m�h�UJN�����c�p)�W*��-�pl'�A^)�ӱ����(#8�N��5H�r5�����3�{5���1�H�1Ml�…
|
D | master_playlist | 614 …��I����_��S�����=ǟ�]ge��ګ�0��'�y�V�ٽk;�.8� �)ϡL��Y�f)�r��'��cr Xn��@pl�'�ØJ=>�[(*#[��H�r… 773 ��Bk[�\��$�J�& ��Fs�m�h�UJN�����c�p)�W*��-�pl'�A^)�ӱ����(#8�N��5H�r5�����3�{5���1�H�1Ml�… 1684 …�����@SuB���S��c�O��X�a^��ш�b�iG�:�wS�X/��^?�� _#���*��n�{O�Λ��ީ���wU��pl�y��T�����S�AU�Һ… 2108 …����}WDH�ť��j��7A�)�ԽG��%�8������%�7���hx u����{�SM�U5Q�l�D�w��pl���v��E}�ئ��"G�…
|
D | index9 | 888 …�����@SuB���S��c�O��X�a^��ш�b�iG�:�wS�X/��^?�� _#���*��n�{O�Λ��ީ���wU��pl�y��T�����S�AU�Һ… 1312 …����}WDH�ť��j��7A�)�ԽG��%�8������%�7���hx u����{�SM�U5Q�l�D�w��pl���v��E}�ئ��"G�…
|
/frameworks/compile/slang/tests/P_reduce_general_input/ |
D | reduce_general_input.rscript | 5 // This test case was created by ./gen-input.pl.
|
/frameworks/compile/slang/tests/P_reduce_general_inputs/ |
D | reduce_general_inputs.rscript | 5 // This test case was created by ./gen-inputs.pl.
|