Home
last modified time | relevance | path

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

/frameworks/support/fragment/tests/java/android/support/v4/app/
DFragmentLifecycleTest.java397 FragmentController fc = startupFragmentController(null); in saveAnimationState() local
398 FragmentManager fm = fc.getSupportFragmentManager(); in saveAnimationState()
410 fc = restartFragmentController(fc); in saveAnimationState()
411 fm = fc.getSupportFragmentManager(); in saveAnimationState()
425 fc = restartFragmentController(fc); in saveAnimationState()
426 fm = fc.getSupportFragmentManager(); in saveAnimationState()
434 shutdownFragmentController(fc); in saveAnimationState()
446 FragmentController fc = FragmentController.createController( in childFragmentManagerAttach() local
448 fc.attachHost(null); in childFragmentManagerAttach()
449 fc.dispatchCreate(); in childFragmentManagerAttach()
[all …]
/frameworks/minikin/tests/unittest/
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()
64 std::shared_ptr<FontCollection> fc(new FontCollection(families)); in TEST() local
66 EXPECT_FALSE(fc->hasVariationSelector(0x82A6, 0)); in TEST()
67 expectVSGlyphs(fc.get(), 0x82A6, std::set<uint32_t>({0xFE00, 0xFE0E, 0xE0100, 0xE0101, 0xE0102})); in TEST()
69 EXPECT_FALSE(fc->hasVariationSelector(0x845B, 0)); in TEST()
70 expectVSGlyphs(fc.get(), 0x845B, std::set<uint32_t>({0xFE01, 0xFE0E, 0xE0101, 0xE0102, 0xE0103})); in TEST()
72 EXPECT_FALSE(fc->hasVariationSelector(0x537F, 0)); in TEST()
73 expectVSGlyphs(fc.get(), 0x537F, std::set<uint32_t>({0xFE0E})); in TEST()
[all …]
/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/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDcFailCause.java129 for (DcFailCause fc : values()) {
130 sErrorCodeToFailCauseMap.put(fc.getErrorCode(), fc); in fc.getErrorCode()
243 DcFailCause fc = sErrorCodeToFailCauseMap.get(errorCode); in fromInt() local
244 if (fc == null) { in fromInt()
245 fc = UNKNOWN; in fromInt()
247 return fc; in fromInt()
/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/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/core/java/android/text/
DHyphenator.java145 FileChannel fc = f.getChannel(); in loadHyphenator() local
146 MappedByteBuffer buf = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size()); in loadHyphenator()
/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/opt/telephony/src/java/com/android/internal/telephony/
DGsmCdmaPhone.java3009 String fc = sch[2]; in isCarrierOtaSpNum() local
3010 if (dialStr.regionMatches(0,fc,0,fcLen)) { in isCarrierOtaSpNum()
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
DAppWidgetServiceImpl.java1260 FilterComparison fc = new FilterComparison(intent); in bindRemoteViewsService() local
1261 Pair<Integer, FilterComparison> key = Pair.create(appWidgetId, fc); in bindRemoteViewsService()
1279 Pair<Integer, FilterComparison> serviceId = Pair.create(widget.provider.id.uid, fc); in bindRemoteViewsService()