OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TaskKey
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/components/domain_reliability/
test_util.h
86
struct
TaskKey
{
87
TaskKey
(base::TimeTicks time, int sequence_number)
95
// Comparator for
TaskKey
; sorts by time, then by sequence number.
97
bool operator() (const
TaskKey
& lhs, const
TaskKey
& rhs) const {
104
typedef std::map<
TaskKey
, base::Closure, TaskKeyCompare> TaskMap;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
Task.java
68
public static class
TaskKey
{
76
public
TaskKey
(int id, Intent intent, int userId, long firstActiveTime, long lastActiveTime) {
92
if (!(o instanceof
TaskKey
)) {
95
return id == ((
TaskKey
) o).id
96
&& userId == ((
TaskKey
) o).userId;
113
public
TaskKey
key;
135
public Task(
TaskKey
key, boolean isActive, int taskAffiliation, int taskAffiliationColor,
Completed in 258 milliseconds