Searched defs:now (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/ui/dialog/
H A Dicon-preview.cpp289 GTimeVal now = {0, 0}; local
290 g_get_current_time(&now);
291 glong secs = now.tv_sec % 60;
292 glong mins = (now.tv_sec / 60) % 60;
293 gchar *ptr = g_strdup_printf(":%02ld:%02ld.%06ld", mins, secs, now.tv_usec);
H A Dswatches.cpp450 // Add the entry now
817 double now = timer->elapsed(); local
822 if ( track->updatePending && ( (now - track->lastGradientUpdate) >= DOC_UPDATE_THREASHOLD) ) {
844 double now = timer->elapsed(); local
845 double elapsed = now - track->lastGradientUpdate;
851 track->lastGradientUpdate = now;
/inkscape/src/display/
H A Dsp-canvas.cpp834 // TODO: This metric should be improved, because in case of (partly) overlapping items we will now
838 // centers are not coincident, but at least it's better than what we have now.
1618 GTimeVal now; local
1619 g_get_current_time (&now);
1621 glong elapsed = (now.tv_sec - setup->start_time.tv_sec) * 1000000
1622 + (now.tv_usec - setup->start_time.tv_usec);
1689 The default for now is the strips mode.

Completed in 25 milliseconds