Home
last modified time | relevance | path

Searched refs:fc (Results 1 – 11 of 11) sorted by relevance

/frameworks/minikin/tests/
DFontCollectionTest.cpp43 void expectVSGlyphs(const FontCollection& fc, uint32_t codepoint, const std::set<uint32_t>& vsSet) { in expectVSGlyphs() argument
50 EXPECT_FALSE(fc.hasVariationSelector(codepoint, vs)) in expectVSGlyphs()
53 EXPECT_TRUE(fc.hasVariationSelector(codepoint, vs)) in expectVSGlyphs()
63 FontCollection fc(families); in TEST() local
66 EXPECT_FALSE(fc.hasVariationSelector(0x82A6, 0)); in TEST()
67 expectVSGlyphs(fc, 0x82A6, std::set<uint32_t>({0xFE00, 0xE0100, 0xE0101, 0xE0102})); in TEST()
69 EXPECT_FALSE(fc.hasVariationSelector(0x845B, 0)); in TEST()
70 expectVSGlyphs(fc, 0x845B, std::set<uint32_t>({0xFE01, 0xE0101, 0xE0102, 0xE0103})); in TEST()
72 EXPECT_FALSE(fc.hasVariationSelector(0x537F, 0)); in TEST()
73 expectVSGlyphs(fc, 0x537F, std::set<uint32_t>({})); in TEST()
[all …]
/frameworks/support/v4/tests/java/android/support/v4/app/
DFragmentLifecycleTest.java382 FragmentController fc = startupFragmentController(null); in saveAnimationState() local
383 FragmentManager fm = fc.getSupportFragmentManager(); in saveAnimationState()
395 fc = restartFragmentController(fc); in saveAnimationState()
396 fm = fc.getSupportFragmentManager(); in saveAnimationState()
410 fc = restartFragmentController(fc); in saveAnimationState()
411 fm = fc.getSupportFragmentManager(); in saveAnimationState()
419 shutdownFragmentController(fc); in saveAnimationState()
431 FragmentController fc = FragmentController.createController( in childFragmentManagerAttach() local
433 fc.attachHost(null); in childFragmentManagerAttach()
434 fc.dispatchCreate(); in childFragmentManagerAttach()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDcFailCause.java126 for (DcFailCause fc : values()) {
127 sErrorCodeToFailCauseMap.put(fc.getErrorCode(), fc); in fc.getErrorCode()
170 DcFailCause fc = sErrorCodeToFailCauseMap.get(errorCode); in fromInt() local
171 if (fc == null) { in fromInt()
172 fc = UNKNOWN; in fromInt()
174 return fc; in fromInt()
/frameworks/base/core/java/android/widget/
DRemoteViewsService.java216 Intent.FilterComparison fc = new Intent.FilterComparison(intent); in onDestroy() local
217 if (RemoteViewsService.sRemoteViewFactories.containsKey(fc)) { in onDestroy()
218 RemoteViewsFactory factory = RemoteViewsService.sRemoteViewFactories.get(fc); in onDestroy()
225 RemoteViewsService.sRemoteViewFactories.remove(fc); in onDestroy()
237 Intent.FilterComparison fc = new Intent.FilterComparison(intent); in onBind() local
240 if (!sRemoteViewFactories.containsKey(fc)) { in onBind()
242 sRemoteViewFactories.put(fc, factory); in onBind()
246 factory = sRemoteViewFactories.get(fc); in onBind()
/frameworks/av/media/libeffects/lvm/lib/Eq/src/
DLVEQNB_Control.c147 LVM_UINT32 fc; /* Filter centre frequency */ in LVEQNB_SetFilters() local
158fc = (LVM_UINT32)pParams->pBandDefinition[i].Frequency; /* Get the band centre frequency */ in LVEQNB_SetFilters()
166 if ((fc << 15) <= (LOW_FREQ * fs)) in LVEQNB_SetFilters()
173 else if (((fc << 15) <= (HIGH_FREQ * fs)) && (QFactor > 300)) in LVEQNB_SetFilters()
185 if (fc > (fs >> 1)) in LVEQNB_SetFilters()
/frameworks/base/core/java/android/text/
DHyphenator.java120 FileChannel fc = f.getChannel(); in loadHyphenator() local
121 MappedByteBuffer buf = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size()); in loadHyphenator()
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
DLVPSA_Control.c274 …LVM_UINT32 fc; /* Filter centre f… in LVPSA_SetBPFiltersType() local
282fc = (LVM_UINT32)pInst->pFiltersParams[ii].CenterFrequency; /* Get the band centre frequency */ in LVPSA_SetBPFiltersType()
290 if ((LOW_FREQ * fs) >= (fc << 15)) in LVPSA_SetBPFiltersType()
299 … if (((LOW_FREQ * fs) < (fc << 15)) && ((fc << 15) < (HIGH_FREQ * fs)) && (QFactor > 300)) in LVPSA_SetBPFiltersType()
/frameworks/base/tests/LegacyRestoreTest/
Djbmr2-encrypted-settings-abcd.ab14 �&d?�6g1g�K��^�?�(<Ȭ��F�R���2’]����?e�p��� EO���3 ����{n{��Sn$��� ��fcʲ1i�Bu�z�1z� � XG��E�K�…
/frameworks/base/docs/html/guide/topics/manifest/
Duses-sdk-element.jd15 <li><a href="#fc">Application forward compatibility</a></li>
451 <h3 id="fc">Application forward compatibility</h3>
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DGsmCdmaPhone.java2901 String fc = sch[2]; in isCarrierOtaSpNum() local
2902 if (dialStr.regionMatches(0,fc,0,fcLen)) { in isCarrierOtaSpNum()
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
DAppWidgetServiceImpl.java1203 FilterComparison fc = new FilterComparison(intent); in bindRemoteViewsService() local
1204 Pair<Integer, FilterComparison> key = Pair.create(appWidgetId, fc); in bindRemoteViewsService()
1222 Pair<Integer, FilterComparison> serviceId = Pair.create(widget.provider.id.uid, fc); in bindRemoteViewsService()