OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Tasks
(Results
1 - 25
of
31
) sorted by null
1
2
/external/llvm/lib/Support/
ThreadPool.cpp
29
// for
tasks
to be queued or the Pool to be destroyed.
37
// Wait for
tasks
to be pushed in the queue
39
[&] { return !EnableFlag || !
Tasks
.empty(); });
41
if (!EnableFlag &&
Tasks
.empty())
52
Task = std::move(
Tasks
.front());
53
Tasks
.pop();
79
[&] { return
Tasks
.empty() && !ActiveThreads; });
93
Tasks
.push(std::move(PackagedTask));
124
// Sequential implementation running the
tasks
125
while (!
Tasks
.empty())
[
all
...]
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/1.0.2/
kotlin-gradle-plugin-core-1.0.2.jar
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/1.0.0/
kotlin-gradle-plugin-core-1.0.0.jar
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/1.0.0-beta-4584/
kotlin-gradle-plugin-core-1.0.0-beta-4584.jar
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/1.0.0-rc-1036/
kotlin-gradle-plugin-core-1.0.0-rc-1036.jar
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/0.13.1513/
kotlin-gradle-plugin-core-0.13.1513.jar
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/0.13.1514/
kotlin-gradle-plugin-core-0.13.1514.jar
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/0.12.613/
kotlin-gradle-plugin-core-0.12.613.jar
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/1.0.0-beta-1103/
kotlin-gradle-plugin-core-1.0.0-beta-1103.jar
/packages/apps/Dialer/tests/src/com/android/dialer/
CallDetailActivityTest.java
19
import static com.android.dialer.calllog.CallLogAsyncTaskUtil.
Tasks
;
93
mFakeAsyncTaskExecutor.runTask(
Tasks
.GET_CALL_DETAILS);
106
mFakeAsyncTaskExecutor.runTask(
Tasks
.DELETE_VOICEMAIL);
116
mFakeAsyncTaskExecutor.runTask(
Tasks
.GET_CALL_DETAILS);
129
mFakeAsyncTaskExecutor.runTask(
Tasks
.DELETE_CALL);
/packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogAsyncTaskUtil.java
54
public enum
Tasks
{
148
sAsyncTaskExecutor.submit(
Tasks
.GET_CALL_DETAILS,
271
sAsyncTaskExecutor.submit(
Tasks
.DELETE_CALL, new AsyncTask<Void, Void, Void>() {
308
sAsyncTaskExecutor.submit(
Tasks
.DELETE_BLOCKED_CALL, new AsyncTask<Void, Void, Long>() {
352
sAsyncTaskExecutor.submit(
Tasks
.MARK_VOICEMAIL_READ, new AsyncTask<Void, Void, Void>() {
376
sAsyncTaskExecutor.submit(
Tasks
.DELETE_VOICEMAIL, new AsyncTask<Void, Void, Void>() {
400
sAsyncTaskExecutor.submit(
Tasks
.MARK_CALL_READ, new AsyncTask<Void, Void, Void>() {
439
sAsyncTaskExecutor.submit(
Tasks
.UPDATE_DURATION, new AsyncTask<Void, Void, Void>() {
/packages/apps/Dialer/tests/src/com/android/dialer/voicemail/
VoicemailPlaybackTest.java
26
import static com.android.dialer.voicemail.VoicemailAsyncTaskUtil.
Tasks
.ARCHIVE_VOICEMAIL_CONTENT;
27
import static com.android.dialer.voicemail.VoicemailPlaybackPresenter.
Tasks
.CHECK_FOR_CONTENT;
VoicemailAsyncTaskUtilTest.java
134
mFakeAsyncTaskExecutor.runTask(VoicemailAsyncTaskUtil.
Tasks
.GET_VOICEMAIL_FILE_PATH);
149
mFakeAsyncTaskExecutor.runTask(VoicemailAsyncTaskUtil.
Tasks
.GET_VOICEMAIL_FILE_PATH);
165
mFakeAsyncTaskExecutor.runTask(VoicemailAsyncTaskUtil.
Tasks
.SET_VOICEMAIL_ARCHIVE_STATUS);
181
mFakeAsyncTaskExecutor.runTask(VoicemailAsyncTaskUtil.
Tasks
.SET_VOICEMAIL_ARCHIVE_STATUS);
198
mFakeAsyncTaskExecutor.runTask(VoicemailAsyncTaskUtil.
Tasks
.ARCHIVE_VOICEMAIL_CONTENT);
212
mFakeAsyncTaskExecutor.runTask(VoicemailAsyncTaskUtil.
Tasks
.ARCHIVE_VOICEMAIL_CONTENT);
228
mFakeAsyncTaskExecutor.runTask(VoicemailAsyncTaskUtil.
Tasks
.ARCHIVE_VOICEMAIL_CONTENT);
VoicemailActivityInstrumentationTestCase2.java
40
import static com.android.dialer.voicemail.VoicemailPlaybackPresenter.
Tasks
.CHECK_FOR_CONTENT;
/packages/apps/Dialer/src/com/android/dialer/voicemail/
VoicemailArchivePlaybackPresenter.java
54
mAsyncTaskExecutor.submit(
Tasks
.CHECK_FOR_CONTENT, new AsyncTask<Void, Void, Boolean>() {
VoicemailAsyncTaskUtil.java
45
* Class containing asynchronous
tasks
for voicemails.
52
public enum
Tasks
{
106
mAsyncTaskExecutor.submit(
Tasks
.GET_VOICEMAIL_FILE_PATH,
139
mAsyncTaskExecutor.submit(
Tasks
.SET_VOICEMAIL_ARCHIVE_STATUS,
167
mAsyncTaskExecutor.submit(
Tasks
.ARCHIVE_VOICEMAIL_CONTENT,
VoicemailPlaybackPresenter.java
103
public enum
Tasks
{
163
// Used to run async
tasks
that need to interact with the UI.
408
mAsyncTaskExecutor.submit(
Tasks
.CHECK_FOR_CONTENT, new AsyncTask<Void, Void, Boolean>() {
527
mAsyncTaskExecutor.submit(
Tasks
.CHECK_CONTENT_AFTER_CHANGE,
[
all
...]
VoicemailPlaybackLayout.java
79
public enum
Tasks
{
602
mAsyncTaskExecutor.submit(
Tasks
.QUERY_ARCHIVED_STATUS,
/external/llvm/include/llvm/Support/
ThreadPool.h
104
/// It is an error to try to add new
tasks
while blocking on this call.
115
///
Tasks
waiting for execution in the pool.
116
std::queue<PackagedTaskTy>
Tasks
;
118
/// Locking and signaling for accessing the
Tasks
queue.
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar
/external/icu/tools/srcgen/currysrc/libs/
org.eclipse.jdt.core_3.11.0.v20150602-1242.jar
/prebuilts/devtools/tools/lib/
ecj-4.4.jar
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.jdt.core/3.9.1.v20130905-0837/
org.eclipse.jdt.core-3.9.1.v20130905-0837.jar
/prebuilts/tools/common/m2/repository/com/google/dagger/dagger-compiler/2.6/
dagger-compiler-2.6.jar
/prebuilts/tools/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.2.2/
ecj-4.2.2.jar
Completed in 716 milliseconds
1
2