/development/tools/repo_diff/service/repodiff/repositories/ |
D | project.go | 29 timestamp, 52 var timestamp int64 55 …`SELECT timestamp, uuid FROM project_differential WHERE upstream_target_id = ? AND downstream_targ… 56 …SELECT MAX(timestamp) FROM project_differential WHERE upstream_target_id = ? AND downstream_target… 63 ×tamp, 73 return timestamp, u, nil 77 timestamp, uid, err := p.GetMostRecentOuterKey() 102 timestamp, 118 AND timestamp = ? 122 timestamp,
|
D | commit.go | 53 timestamp, 72 var timestamp int64 75 …`SELECT timestamp, uuid FROM project_commit WHERE upstream_target_id = ? AND downstream_target_id … 76 …SELECT MAX(timestamp) FROM project_commit WHERE upstream_target_id = ? AND downstream_target_id = ? 83 ×tamp, 93 return timestamp, u, nil 97 timestamp, uid, err := c.GetMostRecentOuterKey() 127 timestamp, 139 AND timestamp = ? 143 timestamp, [all …]
|
D | project_test.go | 55 timestamp, uid, _ := p.GetMostRecentOuterKey() 57 assert.True(t, timestamp > oldTimestamp, "Insert timestamp should be greater than old")
|
/development/samples/browseable/MidiScope/src/com.example.android.common.midi/ |
D | MidiEventScheduler.java | 40 public void onSend(byte[] msg, int offset, int count, long timestamp) in onSend() argument 42 MidiEvent event = createScheduledEvent(msg, offset, count, timestamp); in onSend() 58 private MidiEvent(byte[] msg, int offset, int count, long timestamp) { in MidiEvent() argument 59 super(timestamp); in MidiEvent() 79 long timestamp) { in createScheduledEvent() argument 82 event = new MidiEvent(msg, offset, count, timestamp); in createScheduledEvent() 90 event.setTimestamp(timestamp); in createScheduledEvent()
|
D | MidiFramer.java | 49 public void onSend(byte[] data, int offset, int count, long timestamp) in onSend() argument 70 offset - sysExStartOffset + 1, timestamp); in onSend() 84 offset - sysExStartOffset, timestamp); in onSend() 87 mReceiver.send(data, offset, 1, timestamp); in onSend() 96 mReceiver.send(mBuffer, 0, mCount, timestamp); in onSend() 108 offset - sysExStartOffset, timestamp); in onSend()
|
D | EventScheduler.java | 100 public SchedulableEvent(long timestamp) { in SchedulableEvent() argument 101 mTimestamp = timestamp; in SchedulableEvent() 115 public void setTimestamp(long timestamp) { in setTimestamp() argument 116 mTimestamp = timestamp; in setTimestamp()
|
D | MidiDispatcher.java | 78 public void onSend(byte[] msg, int offset, int count, long timestamp) throws IOException { in onSend() argument 81 receiver.send(msg, offset, count, timestamp); in onSend()
|
/development/samples/browseable/MidiSynth/src/com.example.android.common.midi/ |
D | MidiEventScheduler.java | 40 public void onSend(byte[] msg, int offset, int count, long timestamp) in onSend() argument 42 MidiEvent event = createScheduledEvent(msg, offset, count, timestamp); in onSend() 58 private MidiEvent(byte[] msg, int offset, int count, long timestamp) { in MidiEvent() argument 59 super(timestamp); in MidiEvent() 79 long timestamp) { in createScheduledEvent() argument 82 event = new MidiEvent(msg, offset, count, timestamp); in createScheduledEvent() 90 event.setTimestamp(timestamp); in createScheduledEvent()
|
D | MidiFramer.java | 49 public void onSend(byte[] data, int offset, int count, long timestamp) in onSend() argument 70 offset - sysExStartOffset + 1, timestamp); in onSend() 84 offset - sysExStartOffset, timestamp); in onSend() 87 mReceiver.send(data, offset, 1, timestamp); in onSend() 96 mReceiver.send(mBuffer, 0, mCount, timestamp); in onSend() 108 offset - sysExStartOffset, timestamp); in onSend()
|
D | EventScheduler.java | 100 public SchedulableEvent(long timestamp) { in SchedulableEvent() argument 101 mTimestamp = timestamp; in SchedulableEvent() 115 public void setTimestamp(long timestamp) { in setTimestamp() argument 116 mTimestamp = timestamp; in setTimestamp()
|
D | MidiDispatcher.java | 78 public void onSend(byte[] msg, int offset, int count, long timestamp) throws IOException { in onSend() argument 81 receiver.send(msg, offset, count, timestamp); in onSend()
|
/development/tools/repo_diff/service/repodiff/utils/ |
D | time_test.go | 19 var timestamp ent.RepoTimestamp = 1519322647 20 assert.Equal(t, "2018-02-22", TimestampToDate(timestamp), "Date conversion") 24 var timestamp ent.RepoTimestamp = 1519322647 25 assert.Equal(t, "2018022210", TimestampToDataStudioDatetime(timestamp), "Datetime conversion")
|
D | time.go | 14 func TimestampToDate(timestamp ent.RepoTimestamp) string { 15 year, month, day := t.Unix(int64(timestamp), 0).Date() 20 func TimestampToDataStudioDatetime(timestamp ent.RepoTimestamp) string { 21 asTime := t.Unix(int64(timestamp), 0)
|
/development/tools/logblame/ |
D | logs.py | 19 def __init__(self, buf=None, timestamp=None, uid=None, pid=None, tid=None, level=None, argument 22 self.timestamp = timestamp 32 return "{%s} {%s} {%s} {%s} {%s} {%s}/{%s}: {%s}" % (self.buf, self.timestamp, self.uid, 38 and self.timestamp == other.timestamp 48 logLine = LogLine(self.buf, self.timestamp, self.uid, self.pid, self.tid, self.level, 68 clone.timestamp = logLine.timestamp 80 timestamp = None 127 timestamp=m.group(1), 145 timestamp=m.group(1),
|
/development/tools/repo_diff/service/repodiff/mappers/ |
D | mappers.go | 103 func diffRowToPersistCols(d e.AnalyzedDiffRow, uuidBytes string, timestamp e.RepoTimestamp, rowInde… 105 timestamp, 120 func commitRowToPersistCols(c e.AnalyzedCommitRow, uuidBytes string, timestamp e.RepoTimestamp, row… 122 timestamp, 133 func DiffRowsToPersistCols(diffRows []e.AnalyzedDiffRow, timestamp e.RepoTimestamp) [][]interface{}… 141 timestamp, 213 func CommitRowsToPersistCols(commitRows []e.AnalyzedCommitRow, timestamp e.RepoTimestamp) [][]inter… 221 timestamp, 254 var timestamp e.RepoTimestamp 256 ×tamp, [all …]
|
/development/samples/browseable/MessagingService/src/com.example.android.messagingservice/ |
D | Conversations.java | 65 private final long timestamp; field in Conversations.Conversation 72 this.timestamp = System.currentTimeMillis(); in Conversation() 88 return timestamp; in getTimestamp() 95 ", timestamp=" + timestamp + "]"; in toString()
|
/development/samples/ApiDemos/src/com/example/android/apis/content/ |
D | ChangedContacts.java | 203 long timestamp = 0; in onLoadFinished() local 215 timestamp = data.getLong(data.getColumnIndex( in onLoadFinished() 219 if (timestamp > 0) { in onLoadFinished() 220 saveLastTimestamp(timestamp, PREF_KEY_CHANGE); in onLoadFinished() 221 mChangeButton.setText("Changed since " + timestamp); in onLoadFinished() 229 timestamp = data.getLong(data.getColumnIndex( in onLoadFinished() 233 if (timestamp > 0) { in onLoadFinished() 234 saveLastTimestamp(timestamp, PREF_KEY_DELETE); in onLoadFinished() 235 mDeleteButton.setText("Deleted since " + timestamp); in onLoadFinished() 296 String timestamp = cursor.getString(cursor.getColumnIndex( in bindView() local [all …]
|
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/ |
D | VoicemailImpl.java | 39 Long timestamp, in VoicemailImpl() argument 51 mTimestamp = timestamp; in VoicemailImpl() 64 public static Builder createForInsertion(long timestamp, String number) { in createForInsertion() argument 65 return new Builder().setNumber(number).setTimestamp(timestamp); in createForInsertion() 112 public Builder setTimestamp(long timestamp) { in setTimestamp() argument 113 mBuilderTimestamp = timestamp; in setTimestamp()
|
/development/samples/browseable/MidiScope/src/com.example.android.midiscope/ |
D | LoggingReceiver.java | 44 public void onSend(byte[] data, int offset, int count, long timestamp) in onSend() argument 47 if (timestamp == 0) { in onSend() 50 long monoTime = timestamp - mStartTime; in onSend()
|
D | MidiScope.java | 58 long timestamp) throws IOException { in onSend() argument 61 mDeviceFramer.send(data, offset, count, timestamp); in onSend()
|
/development/tools/winscope/src/ |
D | transform_protolog.js | 101 timestamp: entry.elapsedRealtimeNanos, 111 timestamp: entry.elapsedRealtimeNanos, 140 data.sort(function(a, b) { return a.timestamp - b.timestamp })
|
D | transform.js | 22 function transform({obj, kind, name, children, timestamp, rect, bounds, highlight, rects_transform,… property 72 timestamp: call(timestamp, obj), property
|
D | transform_launcher.js | 36 timestamp: entry.elapsedRealtimeNanos, property
|
D | transform_sys_ui.js | 47 timestamp: entry.elapsedRealtimeNanos, property
|
/development/samples/browseable/JumpingJack/src/com.example.android.wearable.jumpingjack/ |
D | MainActivity.java | 147 detectJump(event.values[0], event.timestamp); in onSensorChanged() 163 private void detectJump(float xValue, long timestamp) { in detectJump() argument 165 if(timestamp - mLastTime < TIME_THRESHOLD_NS && mUp != (xValue > 0)) { in detectJump() 169 mLastTime = timestamp; in detectJump()
|