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

/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DMetaDataTest.java43 private void checkMetaData(ComponentName cn, PackageItemInfo ci) argument
45 assertNotNull("Unable to find component " + cn, ci);
47 Bundle md = ci.metaData;
60 XmlResourceParser xml = ci.loadXmlMetaData(mContext.getPackageManager(),
/frameworks/base/awt/java/awt/
H A DFontMetrics.java138 * @param ci
149 public LineMetrics getLineMetrics(CharacterIterator ci, int beginIndex, int limit, argument
151 return font.getLineMetrics(ci, beginIndex, limit, this.getFRCFromGraphics(context));
222 * @param ci
233 public Rectangle2D getStringBounds(CharacterIterator ci, int beginIndex, int limit, argument
235 return font.getStringBounds(ci, beginIndex, limit, this.getFRCFromGraphics(context));
H A DFont.java1026 * @param ci
1036 public Rectangle2D getStringBounds(CharacterIterator ci, int start, int end, argument
1038 int first = ci.getBeginIndex();
1039 int finish = ci.getEndIndex();
1062 ci.setIndex(start);
1064 chars[i] = ci.current();
1065 ci.next();
/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.java57 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.java141 public CDMAPhone(Context context, CommandsInterface ci, PhoneNotifier notifier) { argument
142 this(context,ci,notifier, false);
145 public CDMAPhone(Context context, CommandsInterface ci, PhoneNotifier notifier, argument
147 super(notifier, context, ci, unitTestMode);
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGSMPhone.java131 GSMPhone (Context context, CommandsInterface ci, PhoneNotifier notifier) { argument
132 this(context,ci,notifier, false);
136 GSMPhone (Context context, CommandsInterface ci, PhoneNotifier notifier, boolean unitTestMode) { argument
137 super(notifier, context, ci, unitTestMode);
139 if (ci instanceof SimulatedRadioControl) {
140 mSimulatedRadioControl = (SimulatedRadioControl) ci;

Completed in 874 milliseconds