Home
last modified time | relevance | path

Searched refs:tsource (Results 1 – 3 of 3) sorted by relevance

/external/wayland/src/
Devent-loop.c613 struct wl_event_source_timer *tsource = in wl_event_source_timer_update() local
614 wl_container_of(source, tsource, base); in wl_event_source_timer_update()
615 struct wl_timer_heap *timers = &tsource->base.loop->timers; in wl_event_source_timer_update()
629 if (tsource->heap_idx == -1) { in wl_event_source_timer_update()
630 wl_timer_heap_arm(timers, tsource, deadline); in wl_event_source_timer_update()
631 } else if (time_lt(deadline, tsource->deadline)) { in wl_event_source_timer_update()
632 tsource->deadline = deadline; in wl_event_source_timer_update()
633 heap_sift_up(timers->data, tsource); in wl_event_source_timer_update()
635 tsource->deadline = deadline; in wl_event_source_timer_update()
636 heap_sift_down(timers->data, timers->active, tsource); in wl_event_source_timer_update()
[all …]
/external/antlr/runtime/C/src/
Dantlr3tokenstream.c538 pANTLR3_TOKEN_SOURCE tsource; in toStringSS() local
556 tsource = ts->getTokenSource(ts); in toStringSS()
558 if (tsource != NULL && cts->tokens != NULL) in toStringSS()
562 string = tsource->strFactory->newRaw(tsource->strFactory); in toStringSS()
/external/antlr/runtime/Cpp/include/
Dantlr3tokenstream.inl568 TokenSourceType* tsource; local
585 tsource = cts->get_tokenSource();
587 if (tsource != NULL && !cts->get_tokens().empty() )