Searched refs:ci (Results 1 - 15 of 15) sorted by relevance

/packages/apps/Phone/src/com/android/phone/
H A DCallLogAsync.java41 * this, ci, number, presentation, type, timestamp, duration);
62 * @param ci CallerInfo.
71 CallerInfo ci,
95 this.ci = ci;
105 public final CallerInfo ci; field in class:CallLogAsync.AddCallArgs
164 c.ci, c.context, c.number, c.presentation,
70 AddCallArgs(Context context, CallerInfo ci, String number, int presentation, int callType, long timestamp, long durationInMillis) argument
H A DManageConferenceUtils.java62 public void onQueryComplete(int token, Object cookie, CallerInfo ci) { argument
63 if (DBG) log("callerinfo query complete, updating UI." + ci);
73 displayCallerInfoForConferenceRow(ci, presentation,
276 public final void displayCallerInfoForConferenceRow(CallerInfo ci, int presentation, argument
282 if (ci != null) {
283 callerName = ci.name;
287 if (TextUtils.isEmpty(ci.phoneNumber)) {
289 } else if (!TextUtils.isEmpty(ci.cnapName)) {
291 callerName = ci.cnapName;
293 callerName = ci
[all...]
H A DCallNotifier.java913 public void onQueryComplete(int token, Object cookie, CallerInfo ci) { argument
917 mApplication.notificationMgr.notifyMissedCall(ci.name, ci.phoneNumber,
918 ci.phoneLabel, ci.cachedPhoto, ci.cachedPhotoIcon,
938 if (ci.shouldSendToVoicemail) {
945 if (ci.contactRingtoneUri != null) {
948 r.setCustomRingtoneUri(ci.contactRingtoneUri);
1164 final CallerInfo ci
[all...]
H A DCallCard.java604 CallerInfo ci = (CallerInfo) o;
606 ci.cnapName = conn.getCnapName();
607 ci.numberPresentation = conn.getNumberPresentation();
608 ci.namePresentation = conn.getCnapNamePresentation();
610 + "CNAP name=" + ci.cnapName
611 + ", Number/Name Presentation=" + ci.numberPresentation);
612 if (DBG) log(" ==> Got CallerInfo; updating display: ci = " + ci);
613 updateDisplayForPerson(ci, presentation, false, call, conn);
615 CallerInfo ci
659 onQueryComplete(int token, Object cookie, CallerInfo ci) argument
1583 showCachedImage(ImageView view, CallerInfo ci) argument
[all...]
H A DContactsAsyncHelper.java139 public boolean isDifferentImageRequest(CallerInfo ci) { argument
143 return (mCurrentCallerInfo != ci);
167 public void setPhotoRequest(CallerInfo ci) { argument
168 mCurrentCallerInfo = ci;
H A DPhoneUtils.java1694 public void onQueryComplete(int token, Object cookie, CallerInfo ci) {
1700 if (DBG) log("- onQueryComplete: CallerInfo:" + ci);
1701 if (ci.contactExists || ci.isEmergencyNumber() || ci.isVoiceMailNumber()) {
1708 // Here 'ci' is a new CallerInfo instance read
1716 // fill 'ci' in. The same routine could be used in
1718 if (0 == ci.numberPresentation) {
1719 ci.numberPresentation = conn.getNumberPresentation();
1731 newCi.phoneNumber = ci
1748 getCompactNameFromCallerInfo(CallerInfo ci, Context context) argument
2339 modifyForSpecialCnapCases(Context context, CallerInfo ci, String number, int presentation) argument
[all...]
H A DNotificationMgr.java1124 public void onQueryComplete(int token, Object cookie, CallerInfo ci){ argument
1128 if (DBG) log("- ci: " + ci);
1137 + PhoneUtils.getCompactNameFromCallerInfo(ci, mContext));
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DVoiceSearch.java98 ComponentInfo ci = ri.activityInfo != null ? ri.activityInfo : ri.serviceInfo;
100 return getContext().getPackageManager().getPackageInfo(ci.packageName, 0).versionCode;
102 Log.e(TAG, "Cannot find voice search package " + ci.packageName, e);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedViewIconCache.java48 final ComponentInfo ci = info.activityInfo != null ? info.activityInfo :
50 mComponentName = new ComponentName(ci.packageName, ci.name);
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DWnnSentence.java59 Iterator<WnnClause> ci = clauses.iterator();
60 while (ci.hasNext()) {
61 WnnClause clause = ci.next();
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DCallLogProviderTest.java178 CallerInfo ci = new CallerInfo();
179 ci.name = "1-800-GOOG-411";
180 ci.numberType = Phone.TYPE_CUSTOM;
181 ci.numberLabel = "Directory";
182 Uri uri = Calls.addCall(ci, getMockContext(), "1-800-263-7643",
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
H A DResearchLog.java241 CompletionInfo[] ci = (CompletionInfo[]) value;
243 for (int j = 0; j < ci.length; j++) {
244 mJsonWriter.value(ci[j].toString());
/packages/inputmethods/LatinIME/native/jni/src/
H A Dcorrection.cpp77 const uint32_t ci = toBaseLowerCase(input[i - 1]); local
78 const uint16_t cost = (ci == co) ? 0 : 1;
80 if (i >= 2 && prevprev && ci == prevCO && co == toBaseLowerCase(input[i - 2])) {
1059 const uint32_t ci = toBaseLowerCase(before[i]); local
1061 const uint16_t cost = (ci == co) ? 0 : 1;
1064 if (i > 0 && j > 0 && ci == toBaseLowerCase(after[j - 1])
/packages/apps/Contacts/src/com/android/contacts/calllog/
H A DCallLogAdapter.java777 ContactInfo ci = mContactInfoCache.getPossiblyExpired(numberCountryIso);
778 if (ci != null && ci != ContactInfo.EMPTY) {
779 matchingNumber = ci.number;
/packages/apps/Settings/src/com/android/settings/
H A DRadioInfo.java531 for (CellInfo ci : mCellInfoValue) {
535 value.append(ci.toString());

Completed in 2481 milliseconds