am b4a983d4: Merge "Remove DicNode.isFirstWord()."

* commit 'b4a983d400fdb6e86694a594361895aef3e9c497':
  Remove DicNode.isFirstWord().
main
Keisuke Kuroyanagi 2014-03-27 08:41:26 +00:00 committed by Android Git Automerger
commit 65e88e14ee
1 changed files with 3 additions and 5 deletions

View File

@ -218,10 +218,6 @@ class DicNode {
return CharUtils::isAsciiUpper(c); return CharUtils::isAsciiUpper(c);
} }
bool isFirstWord() const {
return mDicNodeProperties.getPrevWordTerminalPtNodePos() == NOT_A_DICT_POS;
}
bool isCompletion(const int inputSize) const { bool isCompletion(const int inputSize) const {
return mDicNodeState.mDicNodeStateInput.getInputIndex(0) >= inputSize; return mDicNodeState.mDicNodeStateInput.getInputIndex(0) >= inputSize;
} }
@ -292,7 +288,9 @@ class DicNode {
// the one that corresponds to the last word of the suggestion, and all the previous words // the one that corresponds to the last word of the suggestion, and all the previous words
// are concatenated together in mDicNodeStateOutput. // are concatenated together in mDicNodeStateOutput.
int getTotalNodeSpaceCount() const { int getTotalNodeSpaceCount() const {
if (isFirstWord()) return 0; if (!hasMultipleWords()) {
return 0;
}
return CharUtils::getSpaceCount(mDicNodeState.mDicNodeStateOutput.getCodePointBuf(), return CharUtils::getSpaceCount(mDicNodeState.mDicNodeStateOutput.getCodePointBuf(),
mDicNodeState.mDicNodeStateOutput.getPrevWordsLength()); mDicNodeState.mDicNodeStateOutput.getPrevWordsLength());
} }