Searched defs:Done (Results 1 - 25 of 69) sorted by relevance

123

/external/chromium-trace/catapult/perf_insights/perf_insights/mre/
H A Dthreaded_work_queue_unittest.py26 wq.PostMainThreadTask(Done)
28 def Done(): function in function:ThreadedWorkQueueTests._RunSimpleDecrementingTest
/external/compiler-rt/test/tsan/
H A Dvptr_harmful_race.cc11 void Done() { function in struct:A
31 obj->Done();
H A Dvptr_harmful_race2.cc11 void Done() { function in struct:A
32 obj->Done();
H A Dvptr_harmful_race3.cc11 void Done() { function in struct:A
33 obj->Done();
H A Dvptr_benign_race.cc13 void Done() { function in struct:A
41 obj->Done();
/external/v8/src/crankshaft/
H A Dlithium-inl.h39 bool TempIterator::Done() { return current_ >= limit_; } function in class:v8::internal::TempIterator
43 DCHECK(!Done());
65 bool InputIterator::Done() { return current_ >= limit_; } function in class:v8::internal::InputIterator
69 DCHECK(!Done());
94 bool UseIterator::Done() { function in class:v8::internal::UseIterator
95 return input_iterator_.Done() && env_iterator_.Done();
100 DCHECK(!Done());
101 LOperand* result = input_iterator_.Done() ? env_iterator_.Current()
109 input_iterator_.Done()
[all...]
/external/chromium-trace/catapult/third_party/typ/typ/
H A Dpool.py35 Done = 'Done' variable in class:_MessageType
39 values = [Request, Response, Close, Done, Error, Interrupt]
128 if msg_type == _MessageType.Done:
164 responses.put((_MessageType.Done,
/external/libchrome/base/metrics/
H A Dsample_map.cc50 for (; !iter->Done(); iter->Next()) {
68 bool SampleMapIterator::Done() const { function in class:base::SampleMapIterator
73 DCHECK(!Done());
79 DCHECK(!Done());
89 while (!Done() && iter_->second == 0) {
H A Dhistogram_samples.cc18 bool Done() const override;
39 bool SampleCountPickleIterator::Done() const { function in class:base::__anon9047::SampleCountPickleIterator
44 DCHECK(!Done());
54 DCHECK(!Done());
141 !it->Done();
164 DCHECK(!Done());
H A Dsample_vector.cc81 while (index < counts_size_ && !iter->Done()) {
101 return iter->Done();
156 bool SampleVectorIterator::Done() const { function in class:SampleVectorIterator
161 DCHECK(!Done());
169 DCHECK(!Done());
179 DCHECK(!Done());
186 if (Done())
/external/llvm/lib/IR/
H A DUse.cpp58 ptrdiff_t Done = 0; local
59 while (Done < 20) {
67 new (Stop) Use(tags[Done++]);
70 ptrdiff_t Count = Done;
75 ++Done;
76 Count = Done;
80 ++Done;
/external/llvm/lib/Target/Hexagon/
H A DHexagonPeephole.cpp245 bool Done = false; local
260 Done = true;
266 if (!Done) {
296 } // if (!Done)
H A DHexagonGenExtract.cpp232 bool Done = convert(In); local
233 if (HasCutoff && Done)
235 Changed |= Done;
H A DHexagonGenPredicate.cpp503 bool Done = convertToPredForm(MI); local
504 if (Done) {
511 auto Done = [Processed] (MachineInstr *MI) -> bool { local
514 PUsers.remove_if(Done);
/external/v8/src/debug/
H A Ddebug-scopes.h48 bool Done() { function in class:v8::internal::ScopeIterator
/external/v8/src/heap/
H A Dgc-idle-time-handler.h23 static GCIdleTimeAction Done() { function in class:v8::internal::GCIdleTimeAction
122 // despite having idle time available before we returning a Done action to
/external/v8/tools/testrunner/local/
H A Dprogress.py53 def Done(self): member in class:ProgressIndicator
118 def Done(self): member in class:SimpleProgressIndicator
161 print 'Done running %s: %s' % (test.GetLabel(), outcome)
199 def Done(self): member in class:CompactProgressIndicator
200 self.PrintProgress('Done')
290 def Done(self): member in class:JUnitTestProgressIndicator
325 def Done(self): member in class:JsonTestProgressIndicator
/external/pcre/dist/
H A Dpcregexp.pas89 destructor Done; virtual; procedure
504 destructor TpcRegExp.Done;
697 Dispose(PpcRegExp(P),Done);
774 Dispose(PpcRE,Done);
786 Dispose(PpcRE,Done);
826 Dispose(P, Done);
844 Dispose(PRegExpCache,Done);
/external/llvm/include/llvm/Analysis/
H A DIntervalIterator.h146 bool Done = ProcessInterval(getSourceGraphNode(OrigContainer, *SuccIt)); local
148 if (Done) return *this; // Found a new interval! Use it!
/external/llvm/lib/Target/AArch64/
H A DAArch64RegisterInfo.cpp350 bool Done = rewriteAArch64FrameIndex(MI, i, BaseReg, Off, TII); local
351 assert(Done && "Unable to resolve frame index!");
352 (void)Done;
/external/llvm/unittests/ProfileData/
H A DCoverageMappingTest.cpp57 bool Done; member in struct:__anon12780::OneFunctionCoverageReader
63 Done(false) {}
66 if (Done)
68 Done = true;
/external/v8/src/
H A Dbit-vector.h29 bool Done() const { return current_index_ >= target_->data_length_; } function in class:v8::internal::BitVector::BASE_EMBEDDED
33 DCHECK(!Done());
200 bool Done() const { return it_.Done(); } function in class:v8::internal::BASE_EMBEDDED::BASE_EMBEDDED
223 for (Iterator it(&other, zone); !it.Done(); it.Advance()) {
/external/webrtc/webrtc/p2p/stunprober/
H A Dstunprober.h178 bool Done() { function in class:stunprober::StunProber
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterInlineAsm.cpp185 bool Done = true; local
189 default: Done = false; break;
194 if (Done) break;
283 bool Done = true; local
287 default: Done = false; break;
315 if (Done) break;
/external/llvm/lib/Target/ARM/
H A DThumb1FrameLowering.cpp389 bool Done = emitPopSpecialFixUp(MBB, /* DoIt */ true); local
390 (void)Done;
391 assert(Done && "Emission of the special fixup failed!?");

Completed in 747 milliseconds

123