Lines Matching defs:cit
1500 CallerInfoToken cit;
1504 cit = new CallerInfoToken();
1505 cit.asyncQuery = null;
1506 return cit;
1549 cit = new CallerInfoToken();
1550 cit.currentInfo = new CallerInfo();
1551 cit.asyncQuery = CallerInfoAsyncQuery.startQuery(QUERY_TOKEN, context,
1553 cit.asyncQuery.addQueryListener(QUERY_TOKEN, listener, cookie);
1554 cit.isFinal = false;
1556 c.setUserData(cit);
1587 cit = new CallerInfoToken();
1588 cit.currentInfo = new CallerInfo();
1592 cit.currentInfo.cnapName = c.getCnapName();
1593 cit.currentInfo.name = cit.currentInfo.cnapName; // This can still get overwritten
1595 cit.currentInfo.numberPresentation = c.getNumberPresentation();
1596 cit.currentInfo.namePresentation = c.getCnapNamePresentation();
1601 + cit.currentInfo.cnapName
1602 + ", Name/Number Pres=" + cit.currentInfo.numberPresentation);
1609 number = modifyForSpecialCnapCases(context, cit.currentInfo, number,
1610 cit.currentInfo.numberPresentation);
1612 cit.currentInfo.phoneNumber = number;
1616 if (cit.currentInfo.numberPresentation != PhoneConstants.PRESENTATION_ALLOWED) {
1617 cit.isFinal = true;
1620 cit.asyncQuery = CallerInfoAsyncQuery.startQuery(QUERY_TOKEN, context,
1622 cit.asyncQuery.addQueryListener(QUERY_TOKEN, listener, cookie);
1623 cit.isFinal = false;
1632 cit.isFinal = true; // please see note on isFinal, above.
1635 c.setUserData(cit);
1645 cit = (CallerInfoToken) userDataObject;
1648 if (cit.asyncQuery != null) {
1649 cit.asyncQuery.addQueryListener(QUERY_TOKEN, listener, cookie);
1669 cit.currentInfo.cnapName = c.getCnapName();
1671 cit.currentInfo.name = cit.currentInfo.cnapName;
1672 cit.currentInfo.numberPresentation = c.getNumberPresentation();
1673 cit.currentInfo.namePresentation = c.getCnapNamePresentation();
1675 updatedNumber = modifyForSpecialCnapCases(context, cit.currentInfo,
1676 updatedNumber, cit.currentInfo.numberPresentation);
1678 cit.currentInfo.phoneNumber = updatedNumber;
1685 + cit.currentInfo.cnapName
1686 + ", Name/Number Pres=" + cit.currentInfo.numberPresentation);
1693 if (cit.currentInfo.numberPresentation != PhoneConstants.PRESENTATION_ALLOWED) {
1694 cit.isFinal = true;
1696 cit.asyncQuery = CallerInfoAsyncQuery.startQuery(QUERY_TOKEN, context,
1698 cit.asyncQuery.addQueryListener(QUERY_TOKEN, listener, cookie);
1699 cit.isFinal = false;
1703 if (cit.currentInfo == null) {
1704 cit.currentInfo = new CallerInfo();
1707 cit.currentInfo.cnapName = c.getCnapName(); // This can still get
1709 cit.currentInfo.name = cit.currentInfo.cnapName;
1710 cit.currentInfo.numberPresentation = c.getNumberPresentation();
1711 cit.currentInfo.namePresentation = c.getCnapNamePresentation();
1715 + cit.currentInfo.cnapName
1716 + ", Name/Number Pres=" + cit.currentInfo.numberPresentation);
1720 cit.isFinal = true; // please see note on isFinal, above.
1730 cit = new CallerInfoToken();
1731 cit.currentInfo = (CallerInfo) userDataObject;
1732 cit.asyncQuery = null;
1733 cit.isFinal = true;
1736 if (DBG) log("==> cit.currentInfo = " + cit.currentInfo);
1738 return cit;