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

1234

/external/compiler-rt/test/tsan/
H A Dvptr_benign_race.cc12 void Done() { function in struct:A
33 obj->Done();
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();
/external/v8/src/
H A Dlithium-inl.h37 bool TempIterator::Done() { return current_ >= limit_; } function in class:v8::internal::TempIterator
41 DCHECK(!Done());
63 bool InputIterator::Done() { return current_ >= limit_; } function in class:v8::internal::InputIterator
67 DCHECK(!Done());
92 bool UseIterator::Done() { function in class:v8::internal::UseIterator
93 return input_iterator_.Done() && env_iterator_.Done();
98 DCHECK(!Done());
99 LOperand* result = input_iterator_.Done() ? env_iterator_.Current()
107 input_iterator_.Done()
[all...]
H A Ddata-flow.h33 bool Done() const { return current_index_ >= target_->data_length_; } function in class:v8::internal::BitVector::BASE_EMBEDDED
37 DCHECK(!Done());
201 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/pdfium/core/include/reflow/
H A Dreflowengine.h45 typedef enum { Ready, ToBeContinued, Done, Failed } ParseStatus; enumerator in enum:IPDF_ProgressiveReflowPageParser::__anon13113
63 typedef enum { Ready, ToBeContinued, Waiting, Done, Failed } RenderStatus; enumerator in enum:IPDF_ProgressiveReflowPageRender::__anon13114
/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/v8/tools/testrunner/local/
H A Dprogress.py60 def Done(self): member in class:ProgressIndicator
86 def Done(self): member in class:SimpleProgressIndicator
129 print 'Done running %s: %s' % (test.GetLabel(), outcome)
162 def Done(self): member in class:CompactProgressIndicator
163 self.PrintProgress('Done')
256 def Done(self): member in class:JUnitTestProgressIndicator
257 self.progress_indicator.Done()
299 def Done(self): member in class:JsonTestProgressIndicator
300 self.progress_indicator.Done()
/external/llvm/lib/Target/Hexagon/
H A DHexagonPeephole.cpp244 bool Done = false; local
259 Done = true;
265 if (!Done) {
295 } // if (!Done)
/external/openfst/src/include/fst/extensions/pdt/
H A Dcollection.h65 bool Done() const { return id_ == kNoNodeId; } function in class:fst::Collection::SetIterator
/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.cpp364 bool Done = rewriteAArch64FrameIndex(MI, i, BaseReg, Off, TII); local
365 assert(Done && "Unable to resolve frame index!");
366 (void)Done;
/external/llvm/tools/bugpoint/
H A DExtractFunction.cpp61 std::set<Constant*> Done; local
67 Done.insert(V);
77 if (C && !isa<GlobalValue>(C) && !Done.count(C))
/external/llvm/unittests/ProfileData/
H A DCoverageMappingTest.cpp57 bool Done; member in struct:__anon11286::OneFunctionCoverageReader
63 Done(false) {}
66 if (Done)
68 Done = true;
/external/openfst/src/include/fst/
H A Darcsort.h60 for (ArcIterator< Fst<Arc> > aiter(fst_, s); !aiter.Done(); aiter.Next())
65 bool Done() const { return i_ >= arcs_.size(); } function in class:fst::ArcSortMapper
H A Dcomplement.h201 bool Done() const { return s_ > 0 && siter_.Done(); } function in class:fst::StateIterator
220 virtual bool Done_() const { return Done(); }
248 bool Done() const { function in class:fst::ArcIterator
250 return pos_ > 0 && aiter_->Done();
305 virtual bool Done_() const { return Done(); }
H A Dpartition.h265 bool Done() { function in class:fst::PartitionIterator
/external/openfst/src/include/fst/extensions/far/
H A Dcompile-strings.h38 // for (StringReader<Arc> reader(...); !reader.Done(); reader.Next()) {
64 bool Done() { function in class:fst::StringReader
248 !reader.Done();
H A Dstlist.h211 bool Done() const { function in class:fst::STListReader
H A Dsttable.h202 bool Done() const { return error_ || heap_.empty(); } function in class:fst::STTableReader
/external/v8/src/heap/
H A Dgc-idle-time-handler.h25 static GCIdleTimeAction Done() { function in class:v8::internal::GCIdleTimeAction
/external/llvm/include/llvm/Object/
H A DMachO.h99 bool Done; member in class:llvm::object::ExportEntry
135 bool Done; member in class:llvm::object::MachORebaseEntry
183 bool Done; member in class:llvm::object::MachOBindEntry
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterInlineAsm.cpp190 bool Done = true; local
194 default: Done = false; break;
199 if (Done) break;
288 bool Done = true; local
292 default: Done = false; break;
320 if (Done) break;

Completed in 2599 milliseconds

1234