Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDcFailCause.java72 for (DcFailCause fc : values()) {
73 sErrorCodeToFailCauseMap.put(fc.getErrorCode(), fc); in fc.getErrorCode()
116 DcFailCause fc = sErrorCodeToFailCauseMap.get(errorCode); in fromInt() local
117 if (fc == null) { in fromInt()
118 fc = UNKNOWN; in fromInt()
120 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/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/libs/hwui/tests/
Dmain.cpp63 virtual void setFrameCount(int fc) { in setFrameCount() argument
64 if (fc > 0) { in setFrameCount()
65 frameCount = fc; in setFrameCount()
/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/cdma/
DCDMAPhone.java1619 String fc = sch[2]; in isCarrierOtaSpNum() local
1620 if (dialStr.regionMatches(0,fc,0,fcLen)) { in isCarrierOtaSpNum()
/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/base/services/appwidget/java/com/android/server/appwidget/
DAppWidgetServiceImpl.java950 FilterComparison fc = new FilterComparison(intent); in bindRemoteViewsService() local
951 Pair<Integer, FilterComparison> key = Pair.create(appWidgetId, fc); in bindRemoteViewsService()
969 Pair<Integer, FilterComparison> serviceId = Pair.create(widget.provider.id.uid, fc); in bindRemoteViewsService()