Home | History | Annotate | Download | only in log

Lines Matching defs:INT

30      * Comparison method for {@link EventContainer#testValue(int, Object, com.android.ddmlib.log.EventContainer.CompareMethod)}
71 INT(1),
79 private int mValue;
86 static EventValueType getEventValueType(int value) {
103 * NOTE: for now, only {@link #STRING}, {@link #INT}, and {@link #LONG} are supported.
111 return INT.mValue + "@" + object.toString(); //$NON-NLS-1$
138 case INT:
155 public int getValue() {
164 private EventValueType(int value) {
169 public int mTag;
170 public int pid; /* generating process's pid */
171 public int tid; /* generating process's tid */
172 public int sec; /* seconds since Epoch */
173 public int nsec; /* nanoseconds */
183 EventContainer(LogEntry entry, int tag, Object data) {
197 EventContainer(int tag, int pid, int tid, int sec, int nsec, Object data) {
209 * Returns the data as an int.
210 * @throws InvalidTypeException if the data type is not {@link EventValueType#INT}.
214 if (getType(mData) == EventValueType.INT) {
251 public Object getValue(int valueIndex) {
258 * @throws InvalidTypeException if the data type is not {@link EventValueType#INT},
260 * list at index <code>valueIndex</code> is not of type {@link EventValueType#INT} or
264 public double getValueAsDouble(int valueIndex) throws InvalidTypeException {
271 * @throws InvalidTypeException if the data type is not {@link EventValueType#INT},
274 * {@link EventValueType#INT}, {@link EventValueType#LONG}, or {@link EventValueType#STRING}
277 public String getValueAsString(int valueIndex) throws InvalidTypeException {
293 return EventValueType.INT;
323 public boolean testValue(int index, Object value,
392 private final Object getValue(Object data, int valueIndex, boolean recursive) {
396 case INT:
412 private final double getValueAsDouble(Object data, int valueIndex, boolean recursive)
417 case INT:
435 private final String getValueAsString(Object data, int valueIndex, boolean recursive)
440 case INT: