Home | History | Annotate | Download | only in phone

Lines Matching refs:cit

1316         CallerInfoToken cit;
1320 cit = new CallerInfoToken();
1321 cit.asyncQuery = null;
1322 return cit;
1365 cit = new CallerInfoToken();
1366 cit.currentInfo = new CallerInfo();
1367 cit.asyncQuery = CallerInfoAsyncQuery.startQuery(QUERY_TOKEN, context,
1369 cit.asyncQuery.addQueryListener(QUERY_TOKEN, listener, cookie);
1370 cit.isFinal = false;
1372 c.setUserData(cit);
1397 cit = new CallerInfoToken();
1398 cit.currentInfo = new CallerInfo();
1402 cit.currentInfo.cnapName = c.getCnapName();
1403 cit.currentInfo.name = cit.currentInfo.cnapName; // This can still get overwritten
1405 cit.currentInfo.numberPresentation = c.getNumberPresentation();
1406 cit.currentInfo.namePresentation = c.getCnapNamePresentation();
1411 + cit.currentInfo.cnapName
1412 + ", Name/Number Pres=" + cit.currentInfo.numberPresentation);
1419 number = modifyForSpecialCnapCases(context, cit.currentInfo, number,
1420 cit.currentInfo.numberPresentation);
1422 cit.currentInfo.phoneNumber = number;
1426 if (cit.currentInfo.numberPresentation != Connection.PRESENTATION_ALLOWED) {
1427 cit.isFinal = true;
1430 cit.asyncQuery = CallerInfoAsyncQuery.startQuery(QUERY_TOKEN, context,
1432 cit.asyncQuery.addQueryListener(QUERY_TOKEN, listener, cookie);
1433 cit.isFinal = false;
1442 cit.isFinal = true; // please see note on isFinal, above.
1445 c.setUserData(cit);
1453 cit = (CallerInfoToken) userDataObject;
1456 if (cit.asyncQuery != null) {
1457 cit.asyncQuery.addQueryListener(QUERY_TOKEN, listener, cookie);
1467 cit.currentInfo.cnapName = c.getCnapName();
1469 cit.currentInfo.name = cit.currentInfo.cnapName;
1470 cit.currentInfo.numberPresentation = c.getNumberPresentation();
1471 cit.currentInfo.namePresentation = c.getCnapNamePresentation();
1473 updatedNumber = modifyForSpecialCnapCases(context, cit.currentInfo,
1474 updatedNumber, cit.currentInfo.numberPresentation);
1476 cit.currentInfo.phoneNumber = updatedNumber;
1479 + cit.currentInfo.cnapName
1480 + ", Name/Number Pres=" + cit.currentInfo.numberPresentation);
1484 if (cit.currentInfo.numberPresentation != Connection.PRESENTATION_ALLOWED) {
1485 cit.isFinal = true;
1487 cit.asyncQuery = CallerInfoAsyncQuery.startQuery(QUERY_TOKEN, context,
1489 cit.asyncQuery.addQueryListener(QUERY_TOKEN, listener, cookie);
1490 cit.isFinal = false;
1494 if (cit.currentInfo == null) {
1495 cit.currentInfo = new CallerInfo();
1498 cit.currentInfo.cnapName = c.getCnapName(); // This can still get
1500 cit.currentInfo.name = cit.currentInfo.cnapName;
1501 cit.currentInfo.numberPresentation = c.getNumberPresentation();
1502 cit.currentInfo.namePresentation = c.getCnapNamePresentation();
1505 + cit.currentInfo.cnapName
1506 + ", Name/Number Pres=" + cit.currentInfo.numberPresentation);
1507 cit.isFinal = true; // please see note on isFinal, above.
1517 cit = new CallerInfoToken();
1518 cit.currentInfo = (CallerInfo) userDataObject;
1519 cit.asyncQuery = null;
1520 cit.isFinal = true;
1523 if (DBG) log("==> cit.currentInfo = " + cit.currentInfo);
1525 return cit;