Searched defs:ci (Results 1 - 25 of 51) sorted by relevance

123

/frameworks/base/libs/hwui/tests/common/scenes/
H A DRoundRectClippingAnimation.cpp31 int ci = 0; variable
35 auto color = BrightColors[ci++ % BrightColorsCount];
/frameworks/base/tests/net/java/android/net/
H A DIpSecConfigTest.java101 private void assertParcelingIsLossless(IpSecConfig ci) throws Exception { argument
103 ci.writeToParcel(p, 0);
106 assertTrue(IpSecConfig.equals(co, ci));
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DMetaDataTest.java42 private void checkMetaData(ComponentName cn, PackageItemInfo ci) argument
44 assertNotNull("Unable to find component " + cn, ci);
46 Bundle md = ci.metaData;
59 XmlResourceParser xml = ci.loadXmlMetaData(mContext.getPackageManager(),
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DCsimFileHandler.java30 public CsimFileHandler(UiccCardApplication app, String aid, CommandsInterface ci) { argument
31 super(app, aid, ci);
H A DIsimFileHandler.java30 public IsimFileHandler(UiccCardApplication app, String aid, CommandsInterface ci) { argument
31 super(app, aid, ci);
H A DSIMFileHandler.java33 public SIMFileHandler(UiccCardApplication app, String aid, CommandsInterface ci) { argument
34 super(app, aid, ci);
H A DUsimFileHandler.java31 public UsimFileHandler(UiccCardApplication app, String aid, CommandsInterface ci) { argument
32 super(app, aid, ci);
H A DRuimFileHandler.java33 public RuimFileHandler(UiccCardApplication app, String aid, CommandsInterface ci) { argument
34 super(app, aid, ci);
H A DUiccSlot.java79 public void update(CommandsInterface ci, IccCardStatus ics, int phoneId) { argument
87 mCi = ci;
131 public void update(CommandsInterface ci, IccSlotStatus iss) { argument
135 mCi = ci;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/apdu/
H A DCloseLogicalChannelInvocation.java39 CloseLogicalChannelInvocation(CommandsInterface ci) { argument
40 mCi = ci;
H A DOpenLogicalChannelInvocation.java42 OpenLogicalChannelInvocation(CommandsInterface ci) { argument
43 mCi = ci;
H A DTransmitApduLogicalChannelInvocation.java43 TransmitApduLogicalChannelInvocation(CommandsInterface ci) { argument
44 mCi = ci;
H A DApduSender.java70 public ApduSender(CommandsInterface ci, String aid, boolean supportExtendedApdu) { argument
73 mOpenChannel = new OpenLogicalChannelInvocation(ci);
74 mCloseChannel = new CloseLogicalChannelInvocation(ci);
75 mTransmitApdu = new TransmitApduLogicalChannelInvocation(ci);
/frameworks/base/telephony/java/android/telephony/mbms/
H A DMbmsUtils.java49 public static ComponentName toComponentName(ComponentInfo ci) { argument
50 return new ComponentName(ci.packageName, ci.name);
/frameworks/base/telephony/java/android/telephony/
H A DCellInfoCdma.java42 public CellInfoCdma(CellInfoCdma ci) { argument
43 super(ci);
44 this.mCellIdentityCdma = ci.mCellIdentityCdma.copy();
45 this.mCellSignalStrengthCdma = ci.mCellSignalStrengthCdma.copy();
H A DCellInfoGsm.java42 public CellInfoGsm(CellInfoGsm ci) { argument
43 super(ci);
44 this.mCellIdentityGsm = ci.mCellIdentityGsm.copy();
45 this.mCellSignalStrengthGsm = ci.mCellSignalStrengthGsm.copy();
H A DCellInfoLte.java42 public CellInfoLte(CellInfoLte ci) { argument
43 super(ci);
44 this.mCellIdentityLte = ci.mCellIdentityLte.copy();
45 this.mCellSignalStrengthLte = ci.mCellSignalStrengthLte.copy();
H A DCellInfoWcdma.java42 public CellInfoWcdma(CellInfoWcdma ci) { argument
43 super(ci);
44 this.mCellIdentityWcdma = ci.mCellIdentityWcdma.copy();
45 this.mCellSignalStrengthWcdma = ci.mCellSignalStrengthWcdma.copy();
H A DCellIdentityLte.java59 * @param ci 28-bit Cell Identity
65 public CellIdentityLte(int mcc, int mnc, int ci, int pci, int tac) { argument
66 this(ci, pci, tac, Integer.MAX_VALUE, Integer.MAX_VALUE, String.valueOf(mcc),
74 * @param ci 28-bit Cell Identity
81 public CellIdentityLte(int mcc, int mnc, int ci, int pci, int tac, int earfcn) { argument
82 this(ci, pci, tac, earfcn, Integer.MAX_VALUE, String.valueOf(mcc), String.valueOf(mnc),
88 * @param ci 28-bit Cell Identity
100 public CellIdentityLte(int ci, int pci, int tac, int earfcn, int bandwidth, String mccStr, argument
103 mCi = ci;
H A DCellInfo.java99 protected CellInfo(CellInfo ci) { argument
100 this.mRegistered = ci.mRegistered;
101 this.mTimeStampType = ci.mTimeStampType;
102 this.mTimeStamp = ci.mTimeStamp;
103 this.mCellConnectionStatus = ci.mCellConnectionStatus;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaSubscriptionSourceManager.java62 private CdmaSubscriptionSourceManager(Context context, CommandsInterface ci) { argument
63 mCi = ci;
78 CommandsInterface ci, Handler h, int what, Object obj) {
81 sInstance = new CdmaSubscriptionSourceManager(context, ci);
77 getInstance(Context context, CommandsInterface ci, Handler h, int what, Object obj) argument
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallerInfoAsyncQuery.java74 public void onQueryComplete(int token, Object cookie, CallerInfo ci); argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DTelephonyComponentFactory.java64 public ServiceStateTracker makeServiceStateTracker(GsmCdmaPhone phone, CommandsInterface ci) { argument
65 return new ServiceStateTracker(phone, ci);
106 public UiccProfile makeUiccProfile(Context context, CommandsInterface ci, IccCardStatus ics, argument
108 return new UiccProfile(context, ci, ics, phoneId, uiccCard, lock);
167 getCdmaSubscriptionSourceManagerInstance(Context context, CommandsInterface ci, Handler h, argument
169 return CdmaSubscriptionSourceManager.getInstance(context, ci, h, what, obj);
/frameworks/base/core/java/android/view/
H A DDisplayInfo.java533 public void getAppMetrics(DisplayMetrics outMetrics, CompatibilityInfo ci, argument
535 getMetricsWithSize(outMetrics, ci, configuration, appWidth, appHeight);
/frameworks/base/packages/ExtServices/src/android/ext/services/notification/
H A DAssistant.java138 ChannelImpressions ci = createChannelImpressionsWithThresholds();
139 ci.populateFromXml(parser);
141 ci.append(mkeyToImpressions.get(key));
142 mkeyToImpressions.put(key, ci);
201 ChannelImpressions ci = mkeyToImpressions.getOrDefault(key,
203 if (ranking.getImportance() > IMPORTANCE_MIN && ci.shouldTriggerBlock()) {
207 mkeyToImpressions.put(key, ci);
223 ChannelImpressions ci = mkeyToImpressions.getOrDefault(key,
226 ci.incrementViews();
236 ci
323 insertImpressions(String key, ChannelImpressions ci) argument
[all...]

Completed in 418 milliseconds

123