HomeSort by relevance Sort by last modified time
    Searched defs:logUnit (Results 1 - 3 of 3) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
FixedLogBuffer.java 27 * capacity, adding another LogUnit that is a word evicts the oldest LogUnits out one at a time to
55 * Adds a new LogUnit to the front of the LIFO queue, evicting existing LogUnit's
59 public void shiftIn(final LogUnit newLogUnit) {
61 // This LogUnit doesn't contain any word, so it doesn't count toward the word-limit.
80 public LogUnit unshiftIn() {
81 final LogUnit logUnit = super.unshiftIn();
82 if (logUnit != null && logUnit.hasOneOrMoreWords())
    [all...]
MainLogBuffer.java 40 * the LogUnit, and it is pushed back in here when the user is done. Because words may be pulled
120 * @param logUnits a LogUnit list to check for publishability
129 private int getPublishabilityResultCode(final ArrayList<LogUnit> logUnits,
141 final LogUnit logUnit = logUnits.get(i);
142 numWordsInLogUnitList += logUnit.getNumWords();
170 for (final LogUnit logUnit : logUnits) {
171 if (!logUnit.hasOneOrMoreWords()) {
173 if (logUnit.mayContainDigit())
    [all...]
ResearchLogger.java 132 // FEEDBACK_WORD_BUFFER_SIZE should add 1 because it must also hold the feedback LogUnit itself.
188 /* package for test */ LogUnit mCurrentLogUnit = new LogUnit();
193 // gesture, and when committing the earlier word, split the LogUnit.
202 // Stores a temporary LogUnit while generating a phantom space. Needed because phantom spaces
205 private LogUnit mPhantomSpaceLogUnit = null;
254 protected void publish(final ArrayList<LogUnit> logUnits,
257 for (final LogUnit logUnit : logUnits) {
259 final String wordsString = logUnit.getWordsAsString()
    [all...]

Completed in 193 milliseconds