Searched refs:ci (Results 1 - 12 of 12) 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
163 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.java243 public final void displayCallerInfoForConferenceRow(CallerInfo ci, argument
251 if (ci != null) {
252 callerName = ci.name;
254 callerName = ci.phoneNumber;
259 callerNumber = ci.phoneNumber;
260 callerNumberType = ci.phoneLabel;
324 public void onQueryComplete(int token, Object cookie, CallerInfo ci) { argument
325 if (DBG) log("callerinfo query complete, updating UI." + ci);
332 displayCallerInfoForConferenceRow(ci,
H A DCallCard.java502 CallerInfo ci = (CallerInfo) o;
504 ci.cnapName = conn.getCnapName();
505 ci.numberPresentation = conn.getNumberPresentation();
506 ci.namePresentation = conn.getCnapNamePresentation();
508 + "CNAP name=" + ci.cnapName
509 + ", Number/Name Presentation=" + ci.numberPresentation);
510 if (DBG) log(" ==> Got CallerInfo; updating display: ci = " + ci);
511 updateDisplayForPerson(ci, presentation, false, call, conn);
513 CallerInfo ci
556 onQueryComplete(int token, Object cookie, CallerInfo ci) argument
1330 showCachedImage(ImageView view, CallerInfo ci) argument
[all...]
H A DCallNotifier.java946 public void onQueryComplete(int token, Object cookie, CallerInfo ci) { argument
950 mApplication.notificationMgr.notifyMissedCall(ci.name, ci.phoneNumber,
951 ci.phoneLabel, ((Long) cookie).longValue());
970 if (ci.shouldSendToVoicemail) {
977 if (ci.contactRingtoneUri != null) {
980 r.setCustomRingtoneUri(ci.contactRingtoneUri);
1164 final CallerInfo ci = getCallerInfoFromConnection(c); // May be null.
1165 final String logNumber = getLogNumber(c, ci);
1174 final int presentation = getPresentation(c, ci);
[all...]
H A DPhoneUtils.java1540 public void onQueryComplete(int token, Object cookie, CallerInfo ci) {
1546 if (DBG) log("- onQueryComplete: CallerInfo:" + ci);
1547 if (ci.contactExists || ci.isEmergencyNumber() || ci.isVoiceMailNumber()) {
1554 // Here 'ci' is a new CallerInfo instance read
1562 // fill 'ci' in. The same routine could be used in
1564 if (0 == ci.numberPresentation) {
1565 ci.numberPresentation = conn.getNumberPresentation();
1577 newCi.phoneNumber = ci
1594 getCompactNameFromCallerInfo(CallerInfo ci, Context context) argument
2169 modifyForSpecialCnapCases(Context context, CallerInfo ci, String number, int presentation) argument
[all...]
H A DNotificationMgr.java975 public void onQueryComplete(int token, Object cookie, CallerInfo ci){ argument
979 if (DBG) log("- ci: " + ci);
988 + 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/inputmethods/LatinIME/native/src/
H A Dcorrection.cpp51 const uint32_t ci = Dictionary::toBaseLowerCase(input[i]);
53 const uint16_t cost = (ci == co) ? 0 : 1;
56 if (i > 0 && j > 0 && ci == Dictionary::toBaseLowerCase(output[j - 1])
96 const uint32_t ci = Dictionary::toBaseLowerCase(input[i - 1]); local
97 const uint16_t cost = (ci == co) ? 0 : 1;
99 if (i >= 2 && prevprev && ci == prevCO
/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/apps/Contacts/src/com/android/contacts/calllog/
H A DCallLogAdapter.java738 ContactInfo ci = mContactInfoCache.getPossiblyExpired(numberCountryIso);
739 if (ci != null && ci != ContactInfo.EMPTY) {
740 matchingNumber = ci.number;

Completed in 742 milliseconds