HomeSort by: relevance | last modified time | path
    Searched defs:Task (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ThreadPool.h 51 /// Asynchronous submission of a task to the pool. The returned future can be
52 /// used to wait for the task to finish and is *non-blocking* on destruction.
55 auto Task =
57 return asyncImpl(std::move(Task));
60 /// Asynchronous submission of a task to the pool. The returned future can be
61 /// used to wait for the task to finish and is *non-blocking* on destruction.
76 /// Asynchronous submission of a task to the pool. The returned future can be
77 /// used to wait for the task to finish and is *non-blocking* on destruction.
TaskQueue.h 9 // This file defines a crude C++11 based task queue.
32 /// guarantees that if task B is enqueued after task A, task B begins after
33 /// task A completes and there is no overlap between the two.
40 template <typename Callable> struct Task {
42 explicit Task(Callable C, TaskQueue &Parent)
68 /// Construct a task queue with no work.
77 /// Asynchronous submission of a task to the queue. The returned future can be
78 /// used to wait for the task (and all previous tasks that have not ye
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/LTO/
Caching.cpp 36 return [=](unsigned Task, StringRef Key) -> AddStreamFn {
53 AddBuffer(Task, std::move(*MBOrErr));
77 unsigned Task;
81 unsigned Task)
84 Task(Task) {}
130 AddBuffer(Task, std::move(*MBOrErr));
134 return [=](size_t Task) -> std::unique_ptr<NativeObjectStream> {
148 AddBuffer, std::move(*Temp), std::string(EntryPath.str()), Task);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Parallel.cpp 105 auto Task = WorkStack.top();
108 Task();
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
Core.h 1220 /// Represents an abstract task for ORC to run.
1221 class Task : public RTTIExtends<Task, RTTIRoot> {
1225 /// Description of the task to be performed. Used for logging.
1228 /// Run the task.
1235 /// A materialization task.
1236 class MaterializationTask : public RTTIExtends<MaterializationTask, Task> {
1265 using DispatchTaskFunction = unique_function<void(std::unique_ptr<Task> T)>;
1338 /// Set the task dispatch function.
1415 void dispatchTask(std::unique_ptr<Task> T)
    [all...]

Completed in 60 milliseconds