Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
3e05370d
Commit
3e05370d
authored
12 years ago
by
Kurt Partridge
Committed by
Android (Google) Code Review
12 years ago
Browse files
Options
Downloads
Plain Diff
Merge "[Rlog59c] More detailed logging of backspace"
parents
916c0a08
ef3936bc
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
java/src/com/android/inputmethod/latin/LatinIME.java
+12
-3
12 additions, 3 deletions
java/src/com/android/inputmethod/latin/LatinIME.java
java/src/com/android/inputmethod/research/ResearchLogger.java
+20
-4
20 additions, 4 deletions
.../src/com/android/inputmethod/research/ResearchLogger.java
with
32 additions
and
7 deletions
java/src/com/android/inputmethod/latin/LatinIME.java
+
12
−
3
View file @
3e05370d
...
@@ -1667,7 +1667,7 @@ public final class LatinIME extends InputMethodService implements KeyboardAction
...
@@ -1667,7 +1667,7 @@ public final class LatinIME extends InputMethodService implements KeyboardAction
if
(
mWordComposer
.
isBatchMode
())
{
if
(
mWordComposer
.
isBatchMode
())
{
if
(
ProductionFlag
.
IS_EXPERIMENTAL
)
{
if
(
ProductionFlag
.
IS_EXPERIMENTAL
)
{
final
String
word
=
mWordComposer
.
getTypedWord
();
final
String
word
=
mWordComposer
.
getTypedWord
();
ResearchLogger
.
latinIME_handleBackspace_batch
(
word
);
ResearchLogger
.
latinIME_handleBackspace_batch
(
word
,
1
);
ResearchLogger
.
getInstance
().
uncommitCurrentLogUnit
(
ResearchLogger
.
getInstance
().
uncommitCurrentLogUnit
(
word
,
false
/* dumpCurrentLogUnit */
);
word
,
false
/* dumpCurrentLogUnit */
);
}
}
...
@@ -1718,14 +1718,17 @@ public final class LatinIME extends InputMethodService implements KeyboardAction
...
@@ -1718,14 +1718,17 @@ public final class LatinIME extends InputMethodService implements KeyboardAction
// We should backspace one char and restart suggestion if at the end of a word.
// We should backspace one char and restart suggestion if at the end of a word.
if
(
mLastSelectionStart
!=
mLastSelectionEnd
)
{
if
(
mLastSelectionStart
!=
mLastSelectionEnd
)
{
// If there is a selection, remove it.
// If there is a selection, remove it.
final
int
lengthTo
Delete
=
mLastSelectionEnd
-
mLastSelectionStart
;
final
int
numChars
Delete
d
=
mLastSelectionEnd
-
mLastSelectionStart
;
mConnection
.
setSelection
(
mLastSelectionEnd
,
mLastSelectionEnd
);
mConnection
.
setSelection
(
mLastSelectionEnd
,
mLastSelectionEnd
);
// Reset mLastSelectionEnd to mLastSelectionStart. This is what is supposed to
// Reset mLastSelectionEnd to mLastSelectionStart. This is what is supposed to
// happen, and if it's wrong, the next call to onUpdateSelection will correct it,
// happen, and if it's wrong, the next call to onUpdateSelection will correct it,
// but we want to set it right away to avoid it being used with the wrong values
// but we want to set it right away to avoid it being used with the wrong values
// later (typically, in a subsequent press on backspace).
// later (typically, in a subsequent press on backspace).
mLastSelectionEnd
=
mLastSelectionStart
;
mLastSelectionEnd
=
mLastSelectionStart
;
mConnection
.
deleteSurroundingText
(
lengthToDelete
,
0
);
mConnection
.
deleteSurroundingText
(
numCharsDeleted
,
0
);
if
(
ProductionFlag
.
IS_EXPERIMENTAL
)
{
ResearchLogger
.
latinIME_handleBackspace
(
numCharsDeleted
);
}
}
else
{
}
else
{
// There is no selection, just delete one character.
// There is no selection, just delete one character.
if
(
NOT_A_CURSOR_POSITION
==
mLastSelectionEnd
)
{
if
(
NOT_A_CURSOR_POSITION
==
mLastSelectionEnd
)
{
...
@@ -1742,8 +1745,14 @@ public final class LatinIME extends InputMethodService implements KeyboardAction
...
@@ -1742,8 +1745,14 @@ public final class LatinIME extends InputMethodService implements KeyboardAction
}
else
{
}
else
{
mConnection
.
deleteSurroundingText
(
1
,
0
);
mConnection
.
deleteSurroundingText
(
1
,
0
);
}
}
if
(
ProductionFlag
.
IS_EXPERIMENTAL
)
{
ResearchLogger
.
latinIME_handleBackspace
(
1
);
}
if
(
mDeleteCount
>
DELETE_ACCELERATE_AT
)
{
if
(
mDeleteCount
>
DELETE_ACCELERATE_AT
)
{
mConnection
.
deleteSurroundingText
(
1
,
0
);
mConnection
.
deleteSurroundingText
(
1
,
0
);
if
(
ProductionFlag
.
IS_EXPERIMENTAL
)
{
ResearchLogger
.
latinIME_handleBackspace
(
1
);
}
}
}
}
}
if
(
mSettings
.
getCurrent
().
isSuggestionsRequested
(
mDisplayOrientation
))
{
if
(
mSettings
.
getCurrent
().
isSuggestionsRequested
(
mDisplayOrientation
))
{
...
...
This diff is collapsed.
Click to expand it.
java/src/com/android/inputmethod/research/ResearchLogger.java
+
20
−
4
View file @
3e05370d
...
@@ -1650,15 +1650,31 @@ public class ResearchLogger implements SharedPreferences.OnSharedPreferenceChang
...
@@ -1650,15 +1650,31 @@ public class ResearchLogger implements SharedPreferences.OnSharedPreferenceChang
}
}
/**
/**
* Log a call to LatinIME.handleBackspace().
* Log a call to LatinIME.handleBackspace() that is not a batch delete.
*
* UserInput: The user is deleting one or more characters by hitting the backspace key once.
* The covers single character deletes as well as deleting selections.
*/
private
static
final
LogStatement
LOGSTATEMENT_LATINIME_HANDLEBACKSPACE
=
new
LogStatement
(
"LatinIMEHandleBackspace"
,
true
,
false
,
"numCharacters"
);
public
static
void
latinIME_handleBackspace
(
final
int
numCharacters
)
{
final
ResearchLogger
researchLogger
=
getInstance
();
researchLogger
.
enqueueEvent
(
LOGSTATEMENT_LATINIME_HANDLEBACKSPACE
,
numCharacters
);
}
/**
* Log a call to LatinIME.handleBackspace() that is a batch delete.
*
*
* UserInput: The user is deleting a gestured word by hitting the backspace key once.
* UserInput: The user is deleting a gestured word by hitting the backspace key once.
*/
*/
private
static
final
LogStatement
LOGSTATEMENT_LATINIME_HANDLEBACKSPACE_BATCH
=
private
static
final
LogStatement
LOGSTATEMENT_LATINIME_HANDLEBACKSPACE_BATCH
=
new
LogStatement
(
"LatinIMEHandleBackspaceBatch"
,
true
,
false
,
"deletedText"
);
new
LogStatement
(
"LatinIMEHandleBackspaceBatch"
,
true
,
false
,
"deletedText"
,
public
static
void
latinIME_handleBackspace_batch
(
final
CharSequence
deletedText
)
{
"numCharacters"
);
public
static
void
latinIME_handleBackspace_batch
(
final
CharSequence
deletedText
,
final
int
numCharacters
)
{
final
ResearchLogger
researchLogger
=
getInstance
();
final
ResearchLogger
researchLogger
=
getInstance
();
researchLogger
.
enqueueEvent
(
LOGSTATEMENT_LATINIME_HANDLEBACKSPACE_BATCH
,
deletedText
);
researchLogger
.
enqueueEvent
(
LOGSTATEMENT_LATINIME_HANDLEBACKSPACE_BATCH
,
deletedText
,
numCharacters
);
researchLogger
.
mStatistics
.
recordGestureDelete
(
deletedText
.
length
(),
researchLogger
.
mStatistics
.
recordGestureDelete
(
deletedText
.
length
(),
SystemClock
.
uptimeMillis
());
SystemClock
.
uptimeMillis
());
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment