Home | History | Annotate | Download | only in item

Lines Matching refs:logcat

30  * An {@link IItem} used to store logcat info.
57 * Get the start time of the logcat.
64 * Set the start time of the logcat.
71 * Get the stop time of the logcat.
78 * Set the stop time of the logcat.
162 LogcatItem logcat = (LogcatItem) other;
164 Date start = logcat.getStartTime().before(getStartTime()) ?
165 logcat.getStartTime() : getStartTime();
166 Date stop = logcat.getStopTime().after(getStopTime()) ?
167 logcat.getStopTime() : getStopTime();
168 Date overlapStart = logcat.getStartTime().after(getStartTime()) ?
169 logcat.getStartTime() : getStartTime();
170 Date overlapStop = logcat.getStopTime().before(getStopTime()) ?
171 logcat.getStopTime() : getStopTime();
178 !logcat.getEvents().contains(event)) {
179 throw new ConflictingItemException("Event in first logcat not contained in " +
180 "overlapping portion of other logcat.");
185 for (MiscLogcatItem event : logcat.getEvents()) {
189 throw new ConflictingItemException("Event in first logcat not contained in " +
190 "overlapping portion of other logcat.");