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

/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/base/core/java/android/provider/
H A DCallLog.java137 * @param ci the CallerInfo object to get the target contact from. Can be null
149 public static Uri addCall(CallerInfo ci, Context context, String number, argument
157 if (ci != null) ci.name = "";
160 if (ci != null) ci.name = "";
164 if (ci != null) ci.name = "";
174 if (ci != null) {
175 values.put(CACHED_NAME, ci
[all...]
/frameworks/base/core/java/android/pim/
H A DContactsAsyncHelper.java111 public boolean isDifferentImageRequest(CallerInfo ci) { argument
115 return (mCurrentCallerInfo != ci);
139 public void setPhotoRequest(CallerInfo ci) { argument
140 mCurrentCallerInfo = ci;
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallerInfoAsyncQuery.java58 public void onQueryComplete(int token, Object cookie, CallerInfo ci); argument
H A DPhoneBase.java180 protected PhoneBase(PhoneNotifier notifier, Context context, CommandsInterface ci) { argument
181 this(notifier, context, ci, false);
193 protected PhoneBase(PhoneNotifier notifier, Context context, CommandsInterface ci, argument
198 mCM = ci;
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
H A DStkService.java149 private StkService(CommandsInterface ci, SIMRecords sr, Context context, argument
151 if (ci == null || sr == null || context == null || fh == null
156 mCmdIf = ci;
451 * @param ci CommandsInterface object
458 public static StkService getInstance(CommandsInterface ci, SIMRecords sr, argument
461 if (ci == null || sr == null || context == null || fh == null
467 sInstance = new StkService(ci, sr, context, fh, sc);
/frameworks/base/core/java/android/content/res/
H A DResources.java1391 public void setCompatibilityInfo(CompatibilityInfo ci) { argument
1392 mCompatibilityInfo = ci;
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java143 public CDMAPhone(Context context, CommandsInterface ci, PhoneNotifier notifier) { argument
144 this(context,ci,notifier, false);
147 public CDMAPhone(Context context, CommandsInterface ci, PhoneNotifier notifier, argument
149 super(notifier, context, ci, unitTestMode);
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGSMPhone.java128 GSMPhone (Context context, CommandsInterface ci, PhoneNotifier notifier) { argument
129 this(context,ci,notifier, false);
133 GSMPhone (Context context, CommandsInterface ci, PhoneNotifier notifier, boolean unitTestMode) { argument
134 super(notifier, context, ci, unitTestMode);
136 if (ci instanceof SimulatedRadioControl) {
137 mSimulatedRadioControl = (SimulatedRadioControl) ci;

Completed in 370 milliseconds