Home
last modified time | relevance | path

Searched refs:Done (Results 1 - 25 of 179) sorted by relevance

12345678

/third_party/node/deps/v8/src/debug/
H A Ddebug-scope-iterator.cc54 if (!Done() && ShouldIgnore()) Advance(); in DebugScopeIterator()
60 if (!Done() && ShouldIgnore()) Advance(); in DebugScopeIterator()
66 if (!Done() && ShouldIgnore()) Advance(); in DebugScopeIterator()
69 bool DebugScopeIterator::Done() { return iterator_.Done(); } in Done() function in v8::internal::DebugScopeIterator
72 DCHECK(!Done()); in Advance()
74 while (!Done() && ShouldIgnore()) { in Advance()
85 DCHECK(!Done()); in GetType()
90 DCHECK(!Done()); in GetObject()
96 DCHECK(!Done()); in GetScriptId()
[all...]
H A Ddebug-stack-trace-iterator.cc39 for (; !Done() && index > 0; --index) Advance(); in DebugStackTraceIterator()
44 bool DebugStackTraceIterator::Done() const { return iterator_.done(); } in Done() function in v8::internal::DebugStackTraceIterator
73 DCHECK(!Done()); in GetContextId()
83 DCHECK(!Done()); in GetReceiver()
120 CHECK(!Done()); in GetReturnValue()
136 DCHECK(!Done()); in GetFunctionDebugName()
141 DCHECK(!Done()); in GetScript()
148 DCHECK(!Done()); in GetSourceLocation()
155 DCHECK(!Done()); in GetFunction()
162 DCHECK(!Done()); in GetScopeIterator()
[all...]
/third_party/ninja/src/
H A Dsubprocess_test.cc48 while (!subproc->Done()) { in TEST_F()
62 while (!subproc->Done()) { in TEST_F()
81 while (!subproc->Done()) { in TEST_F()
92 while (!subproc->Done()) { in TEST_F()
105 while (!subproc->Done()) { in TEST_F()
116 while (!subproc->Done()) { in TEST_F()
129 while (!subproc->Done()) { in TEST_F()
140 while (!subproc->Done()) { in TEST_F()
156 while (!subproc->Done()) { in TEST_F()
170 while (!subproc->Done()) { in TEST_F()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DUse.cpp57 ptrdiff_t Done = 0; in initTags() local
58 while (Done < 20) { in initTags()
66 new (Stop) Use(tags[Done++]); in initTags()
69 ptrdiff_t Count = Done; in initTags()
74 ++Done; in initTags()
75 Count = Done; in initTags()
79 ++Done; in initTags()
/third_party/skia/include/private/
H A DSkOnce.h28 if (state == Done) { in operator ()()
36 // Great! We'll run fn() then notify the other threads by releasing Done into fState. in operator ()()
38 return fState.store(Done, std::memory_order_release); in operator ()()
42 // We'll just spin here acquiring until it releases Done into fState. in operator ()()
44 while (fState.load(std::memory_order_acquire) != Done) { /*spin*/ } in operator ()()
49 enum State : uint8_t { NotStarted, Claimed, Done};
/third_party/node/test/parallel/
H A Dtest-tls-client-default-ciphers.js30 function Done() {} function
37 throw new Done();
40 assert.throws(tls.connect, Done);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DThreading.h69 enum InitStatus { Uninitialized = 0, Wait = 1, Done = 2 }; enumerator
104 flag = Done; in call_once()
110 while (tmp != Done) { in call_once()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DLoopTraversal.cpp44 bool Done = isBlockDone(ActiveMBB); in traverse()
45 MBBTraversalOrder.push_back(TraversedMBBInfo(ActiveMBB, Primary, Done)); in traverse()
53 if (Done) in traverse()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DThreading.h92 enum InitStatus { Uninitialized = 0, Wait = 1, Done = 2 }; enumerator
131 flag.status = Done; in call_once()
137 while (tmp != Done) { in call_once()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/
H A DFunctionInfo.cpp50 bool Done = false; in decode()
51 while (!Done) { in decode()
69 Done = true; in decode()
179 bool Done = false; in lookup() local
182 while (!Done) { in lookup()
196 Done = true; in lookup()
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/jsonrpc2/
H A Dstream.go59 case <-ctx.Done():
72 case <-ctx.Done():
100 case <-ctx.Done():
147 case <-ctx.Done():
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/jsonrpc2/
H A Dstream.go59 case <-ctx.Done():
72 case <-ctx.Done():
100 case <-ctx.Done():
147 case <-ctx.Done():
/third_party/spirv-tools/utils/vscode/src/lsp/jsonrpc2/
H A Dstream.go59 case <-ctx.Done():
72 case <-ctx.Done():
100 case <-ctx.Done():
147 case <-ctx.Done():
/third_party/python/Objects/
H A Dodictobject.c956 goto Done; in odict_reduce()
961 goto Done; in odict_reduce()
965 goto Done; in odict_reduce()
970 goto Done; in odict_reduce()
975 Done: in odict_reduce()
1390 goto Done; in odict_repr()
1399 goto Done; in odict_repr()
1403 goto Done; in odict_repr()
1410 goto Done; in odict_repr()
1424 goto Done; in odict_repr()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
H A DEscapeEnumerator.h33 bool Done; member in llvm::EscapeEnumerator
40 Builder(F.getContext()), Done(false), in EscapeEnumerator()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DLoopTraversal.h98 bool Done = true) in TraversedMBBInfo()
99 : MBB(BB), PrimaryPass(Primary), IsDone(Done) {} in TraversedMBBInfo()
/third_party/python/Python/
H A Dmysnprintf.c66 goto Done; in PyOS_vsnprintf()
75 Done: in PyOS_vsnprintf()
/third_party/node/src/
H A Dnode_bob.h66 // its own, it can send a Done function that the
68 using Done = std::function<void(size_t)>;
70 using Next = std::function<void(int, const T*, size_t count, Done done)>;
/third_party/vixl/src/aarch32/
H A Dlocation-aarch32.cc46 for (ForwardRefListIterator it(this); !it.Done(); it.Advance()) { in ResolveReferences()
106 for (ForwardRefListIterator it(const_cast<Location*>(this)); !it.Done(); in GetMaxAlignment()
117 for (ForwardRefListIterator it(const_cast<Location*>(this)); !it.Done(); in GetMinLocation()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterInlineAsm.cpp199 bool Done = true; in EmitMSInlineAsmStr() local
203 default: Done = false; break; in EmitMSInlineAsmStr()
208 if (Done) break; in EmitMSInlineAsmStr()
341 bool Done = true; in EmitGCCInlineAsmStr() local
345 default: Done = false; break; in EmitGCCInlineAsmStr()
373 if (Done) break; in EmitGCCInlineAsmStr()
/third_party/python/Modules/_ctypes/
H A Dcallbacks.c178 goto Done; in _CallPythonObject()
191 goto Done; in _CallPythonObject()
196 goto Done; in _CallPythonObject()
207 goto Done; in _CallPythonObject()
216 goto Done; in _CallPythonObject()
296 Done: in _CallPythonObject()
/third_party/python/Modules/
H A D_randommodule.c309 goto Done; in random_seed()
313 goto Done; in random_seed()
318 goto Done; in random_seed()
327 goto Done; in random_seed()
334 goto Done; in random_seed()
352 Done: in random_seed()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8632/
H A DControlFlow.cpp152 Label Done; \ in TEST_F()
166 __ jmp(&Done, AssemblerX8632::k##Near##Jump); \ in TEST_F()
189 __ bind(&Done); \ in TEST_F()
195 Label Done; \ in TEST_F()
196 __ jmp(&Done, AssemblerX8632::kNearJump); \ in TEST_F()
219 __ bind(&Done); \ in TEST_F()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8664/
H A DControlFlow.cpp208 Label Done; \ in TEST_F()
222 __ jmp(&Done, AssemblerX8664::k##Near##Jump); \ in TEST_F()
245 __ bind(&Done); \ in TEST_F()
251 Label Done; \ in TEST_F()
252 __ jmp(&Done, AssemblerX8664::kNearJump); \ in TEST_F()
275 __ bind(&Done); \ in TEST_F()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
H A DARMBaseRegisterInfo.cpp672 bool Done = false; in resolveFrameIndex()
674 Done = rewriteARMFrameIndex(MI, i, BaseReg, Off, TII); in resolveFrameIndex()
677 Done = rewriteT2FrameIndex(MI, i, BaseReg, Off, TII, this); in resolveFrameIndex()
679 assert(Done && "Unable to resolve frame index!"); in resolveFrameIndex()
680 (void)Done; in resolveFrameIndex()
784 bool Done = false; in eliminateFrameIndex() local
786 Done = rewriteARMFrameIndex(MI, FIOperandNum, FrameReg, Offset, TII); in eliminateFrameIndex()
789 Done = rewriteT2FrameIndex(MI, FIOperandNum, FrameReg, Offset, TII, this); in eliminateFrameIndex()
791 if (Done) in eliminateFrameIndex()

Completed in 12 milliseconds

12345678