Home
last modified time | relevance | path

Searched refs:currentInfo (Results 1 – 4 of 4) sorted by relevance

/packages/services/Telephony/src/com/android/phone/
DPhoneUtils.java647 ((CallerInfoToken) userDataObject).currentInfo.contactRefUri = in placeCall()
1247 info = ((CallerInfoToken) userDataObject).currentInfo; in getCallerInfo()
1280 public CallerInfo currentInfo; field in PhoneUtils.CallerInfoToken
1367 cit.currentInfo = new CallerInfo(); in startGetCallerInfo()
1409 cit.currentInfo = new CallerInfo(); in startGetCallerInfo()
1413 cit.currentInfo.cnapName = c.getCnapName(); in startGetCallerInfo()
1414 cit.currentInfo.name = cit.currentInfo.cnapName; // This can still get overwritten in startGetCallerInfo()
1416 cit.currentInfo.numberPresentation = c.getNumberPresentation(); in startGetCallerInfo()
1417 cit.currentInfo.namePresentation = c.getCnapNamePresentation(); in startGetCallerInfo()
1422 + cit.currentInfo.cnapName in startGetCallerInfo()
[all …]
DCallLogger.java130 ci = ((PhoneUtils.CallerInfoToken) o).currentInfo; in getCallerInfoFromConnection()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
DBinaryDictIOUtils.java184 final PtNodeInfo currentInfo = dictDecoder.readPtNode(ptNodePos); in getTerminalPosition() local
187 p < currentInfo.mCharacters.length; in getTerminalPosition()
190 || word.codePointAt(j) != currentInfo.mCharacters[p]) { in getTerminalPosition()
198 if (wordPos + currentInfo.mCharacters.length == wordLen) { in getTerminalPosition()
199 return currentInfo.isTerminal() ? ptNodePos : FormatSpec.NOT_VALID_WORD; in getTerminalPosition()
201 wordPos += currentInfo.mCharacters.length; in getTerminalPosition()
202 if (currentInfo.mChildrenAddress == FormatSpec.NO_CHILDREN_ADDRESS) { in getTerminalPosition()
206 dictDecoder.setPosition(currentInfo.mChildrenAddress); in getTerminalPosition()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DUpdateHandler.java761 final WordListMetadata currentInfo = MetadataHandler.findWordListById(fromList, id); in compareMetadataForUpgrade() local
768 DebugLogUtils.l("Considering updating ", id, "currentInfo =", currentInfo); in compareMetadataForUpgrade()
770 if (null == currentInfo && null == newInfo) { in compareMetadataForUpgrade()
782 } else if (null == currentInfo) { in compareMetadataForUpgrade()
793 actions.add(new ActionBatch.ForgetAction(clientId, currentInfo, false)); in compareMetadataForUpgrade()
796 if (newInfo.mVersion == currentInfo.mVersion) { in compareMetadataForUpgrade()
797 if (TextUtils.equals(newInfo.mRemoteFilename, currentInfo.mRemoteFilename)) { in compareMetadataForUpgrade()
799 newInfo.mRetryCount = currentInfo.mRetryCount; in compareMetadataForUpgrade()
804 } else if (newInfo.mVersion > currentInfo.mVersion) { in compareMetadataForUpgrade()
808 currentInfo.mId, currentInfo.mVersion); in compareMetadataForUpgrade()
[all …]