Searched refs:closure (Results 1 - 25 of 332) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/JavaScript/build/
H A DREADME14 * closure compiler: Download here: http://closure-compiler.googlecode.com/files/compiler-latest.zip
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DNFAToDFAConverter.java122 * Walk each alt in decision and compute closure from the start of that
123 * rule, making sure that the closure does not include other alts within
125 * with the starting closure so we can trace the alt number for all states
148 // overall closure that will represent the DFA start state,
159 closure((NFAState)alt.transition[0].target,
169 closure((NFAState)alt.transition[0].target,
187 // now DFA start state has the complete closure for the decision
290 // Only compute closure if a unique alt number is not known.
296 closure(t); // add any NFA states reachable via epsilon
300 System.out.println("DFA state after closure "
457 public void closure(DFAState d) { method in class:NFAToDFAConverter
591 public void closure(NFAState p, method in class:NFAToDFAConverter
[all...]
/external/bison/
H A DAndroid.mk156 src/closure.c \
/external/bison/src/
H A DLR0.c31 #include "closure.h"
359 closure (s->items, s->nitems);
H A Dclosure.c28 #include "closure.h"
197 closure (item_number *core, size_t n)
194 closure (item_number *core, size_t n) function
H A Dclosure.h27 data so that closure can be called. n is the number of elements to
47 void closure (item_number *items, size_t n);
H A Dprint-xml.c28 #include "closure.h"
63 closure (sitems, snritems);
H A Dprint.c27 #include "closure.h"
81 closure (sitems, snritems);
520 `closure' will be run, which needs memory allocation/deallocation. */
H A Dprint_graph.c24 #include "closure.h"
73 closure (sitems, snritems);
/external/chromium_org/ash/test/
H A Dui_controls_factory_ash.cc78 const base::Closure& closure) OVERRIDE {
83 window, key, control, shift, alt, command, closure);
95 const base::Closure& closure) OVERRIDE {
99 ui_controls->SendMouseMoveNotifyWhenDone(p.x(), p.y(), closure);
109 MouseButton type, int state, const base::Closure& closure) OVERRIDE {
113 type, state, closure);
123 const base::Closure& closure) OVERRIDE {
127 ui_controls->RunClosureAfterAllPendingUIEvents(closure);
/external/chromium_org/ash/wm/
H A Dlock_state_controller_unittest.cc317 base::Closure closure = base::Bind(&CheckCalledCallback, call_flag); local
318 lock_state_controller_->OnLockScreenHide(closure);
/external/chromium_org/athena/env/
H A Dathena_env_impl.cc255 explicit Finder(const base::Closure& c) : closure(c) {}
257 return closure.Equals(other);
259 base::Closure closure; member in struct:athena::__anon2117::AthenaEnvImpl::Finder
269 virtual void AddTerminatingCallback(const base::Closure& closure) OVERRIDE {
270 if (closure.is_null())
275 Finder(closure)));
276 terminating_callbacks_.push_back(closure);
280 const base::Closure& closure) OVERRIDE {
284 Finder(closure));
/external/chromium_org/athena/env/public/
H A Dathena_env.h38 virtual void AddTerminatingCallback(const base::Closure& closure) = 0;
39 virtual void RemoveTerminatingCallback(const base::Closure& closure) = 0;
/external/chromium_org/base/
H A Dcallback_helpers.cc14 ScopedClosureRunner::ScopedClosureRunner(const Closure& closure) argument
15 : closure_(closure) {
29 void ScopedClosureRunner::Reset(const Closure& closure) { argument
31 closure_ = closure;
H A Dcallback_helpers.h35 explicit ScopedClosureRunner(const Closure& closure);
39 void Reset(const Closure& closure);
H A Dcritical_closure.h23 // This class wraps a closure so it can continue to run for a period of time
29 explicit CriticalClosure(const Callback<R(void)>& closure) argument
30 : closure_(closure) {}
48 // Returns a closure (which may return a result, but must not require any extra
59 // Note new closures might be posted in this closure. If the new closures need
64 Callback<R(void)> MakeCriticalClosure(const Callback<R(void)>& closure) { argument
67 Owned(new internal::CriticalClosure<R>(closure)));
71 inline Callback<R(void)> MakeCriticalClosure(const Callback<R(void)>& closure) {
74 return closure;
/external/chromium_org/base/task/
H A Dcancelable_task_tracker.cc43 void RunAndDeleteFlag(const Closure& closure, const CancellationFlag* flag) { argument
44 closure.Run();
48 void RunOrPostToTaskRunner(TaskRunner* task_runner, const Closure& closure) { argument
50 closure.Run();
52 task_runner->PostTask(FROM_HERE, closure);
/external/chromium_org/cc/base/
H A Ddelayed_unique_notifier.cc16 const base::Closure& closure,
19 closure_(closure),
73 // Note the order here is important since closure might schedule another run.
14 DelayedUniqueNotifier( base::SequencedTaskRunner* task_runner, const base::Closure& closure, const base::TimeDelta& delay) argument
H A Ddelayed_unique_notifier.h20 // Configure this notifier to issue the |closure| notification in |delay| time
23 const base::Closure& closure,
H A Ddelayed_unique_notifier_unittest.cc20 const base::Closure& closure,
22 : DelayedUniqueNotifier(task_runner, closure, delay) {}
19 TestNotifier(base::SequencedTaskRunner* task_runner, const base::Closure& closure, const base::TimeDelta& delay) argument
H A Dunique_notifier.cc15 const base::Closure& closure)
17 closure_(closure),
36 // Note that the order here is important in case closure schedules another
14 UniqueNotifier(base::SequencedTaskRunner* task_runner, const base::Closure& closure) argument
H A Dunique_notifier.h20 // Configure this notifier to issue the |closure| notification when scheduled.
22 const base::Closure& closure);
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dpower_policy_browsertest.cc142 // Runs |closure| and waits for |profile|'s user policy to be updated as a
144 void RunClosureAndWaitForUserPolicyUpdate(const base::Closure& closure,
251 const base::Closure& closure,
262 closure.Run();
250 RunClosureAndWaitForUserPolicyUpdate( const base::Closure& closure, Profile* profile) argument
/external/chromium_org/chrome/browser/devtools/device/usb/
H A Dandroid_usb_browsertest.cc476 DevToolsAndroidBridgeWarmUp(base::Closure closure, argument
478 : closure_(closure), adb_bridge_(adb_bridge) {}

Completed in 1465 milliseconds

1234567891011>>