Home
last modified time | relevance | path

Searched refs:Queued (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_ilist_test.cpp35 EXPECT_FALSE(list.Queued(&node)); in TEST()
47 EXPECT_TRUE(list.Queued(&node)); in TEST()
54 EXPECT_FALSE(list.Queued(&node)); in TEST()
96 EXPECT_TRUE(list1.Queued(&nodes[0])); in TEST()
97 EXPECT_TRUE(list1.Queued(&nodes[1])); in TEST()
98 EXPECT_TRUE(list1.Queued(&nodes[2])); in TEST()
101 EXPECT_FALSE(list2.Queued(&nodes[0])); in TEST()
102 EXPECT_TRUE(list2.Queued(&nodes[1])); in TEST()
103 EXPECT_FALSE(list2.Queued(&nodes[2])); in TEST()
113 EXPECT_FALSE(list1.Queued(&nodes[1])); in TEST()
[all …]
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DTUScheduler.h119 Queued, enumerator
126 Queued, // The action is pending in the thread task queue to be run. enumerator
H A DTUScheduler.cpp480 Status.PreambleActivity = PreambleAction::Queued; in run()
1390 Status.ASTActivity.K = ASTAction::Queued; in run()
1422 Status.ASTActivity.K = ASTAction::Queued; in run()
1555 case PreambleAction::Queued: in renderTUAction()
1563 case ASTAction::Queued: in renderTUAction()
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/
H A Dtsan_ilist.h62 bool Queued(Elem* e) const;
169 bool IList<Base, Node, Elem>::Queued(Elem* e) const { in Queued() function
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/
H A Dtsan_ilist.h62 bool Queued(Elem* e) const;
169 bool IList<Base, Node, Elem>::Queued(Elem* e) const { in Queued() function
H A Dtsan_rtl.cpp158 CHECK(!ctx->trace_part_recycle.Queued(part)); in DoResetImpl()
259 if (ctx->slot_queue.Queued(slot)) in FindSlotAndLock()
1018 if (ctx->slot_queue.Queued(thr->slot)) { in TraceSwitchPartImpl()
H A Dtsan_rtl_thread.cpp259 CHECK(parts->Queued(trace.local_head)); in OnFinished()
/llvm-project-15.0.7/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp286 llvm::BitVector Queued(Body->getNumBlockIDs()); in throwEscapes() local
289 Queued[ThrowBlock.getBlockID()] = true; in throwEscapes()
296 if (!Succ.isReachable() || Queued[Succ->getBlockID()]) in throwEscapes()
312 Queued[Succ->getBlockID()] = true; in throwEscapes()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReader.cpp8156 std::unique_ptr<IdentifierIterator> Queued; member in __anon4dbaf2521111::ChainedIdentifierIterator
8161 : Current(std::move(First)), Queued(std::move(Second)) {} in ChainedIdentifierIterator()
8173 std::swap(Current, Queued); in Next()