OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LogStatement
(Results
1 - 3
of
3
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
LogUnit.java
38
* in the code. (There is no
LogStatement
class; the data is stored across the instance variables
56
private final ArrayList<
LogStatement
> mLogStatementList;
96
mLogStatementList = new ArrayList<
LogStatement
>();
104
private LogUnit(final ArrayList<
LogStatement
> logStatementList,
121
public void addLogStatement(final
LogStatement
logStatement
, final long time,
126
mLogStatementList.add(
logStatement
);
134
* For each publishable {@code
LogStatement
}, invoke {@link
LogStatement
#outputToLocked}.
144
// Write out any
logStatement
that passes the privacy filter
[
all
...]
ResearchLogger.java
81
// enqueueEvent to record a
LogStatement
).
581
private static final
LogStatement
LOGSTATEMENT_FEEDBACK =
582
new
LogStatement
("UserFeedback", false, false, "contents", "accountName", "recording");
689
* This method is called when adding a
LogStatement
to a LogUnit, and when adding a LogUnit to a
767
private synchronized void enqueueEvent(final
LogStatement
logStatement
,
769
enqueueEvent(mCurrentLogUnit,
logStatement
, values);
772
private synchronized void enqueueEvent(final LogUnit logUnit, final
LogStatement
logStatement
,
774
assert values.length ==
logStatement
.getKeys().length
[
all
...]
LogStatement.java
34
* A
LogStatement
contains a name, keys, and flags about whether the {@code Object[] values}
38
public class
LogStatement
{
39
private static final String TAG =
LogStatement
.class.getSimpleName();
60
// Name specifying the
LogStatement
type.
83
LogStatement
(final String name, final boolean isPotentiallyPrivate,
108
* Utility function to test whether a key-value pair exists in a
LogStatement
.
110
* A
LogStatement
is really just a template -- it does not contain the values, only the
114
*
LogStatement
119
* @returns {@true} if {@code queryKey} exists in the keys for this
LogStatement
, and {@code
139
* Utility function to set a value in a
LogStatement
[
all
...]
Completed in 1290 milliseconds