Searched defs:Done (Results 51 - 75 of 90) sorted by relevance

1234

/external/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp132 bool Done = false; local
133 while (!Done) {
143 Done = true;
525 bool Done = false; local
526 while (!Done) {
530 Done = true;
/external/llvm/lib/Target/Hexagon/
H A DHexagonSplitDouble.cpp1122 bool Done = splitInstr(MI, PairMap); local
1123 if (Done)
1125 Changed |= Done;
H A DHexagonExpandCondsets.cpp1080 bool Done = predicate(*I, (Opc == Hexagon::A2_tfrt), UpdRegs); local
1081 if (!Done) {
1091 Changed |= Done;
1212 bool Done = false; local
1235 Done = coalesceRegisters(RD, RegisterRef(S1));
1237 if (!Done && S2.isReg()) {
1241 Done = coalesceRegisters(RD, RegisterRef(S2));
1243 Changed |= Done;
/external/llvm/lib/Transforms/Scalar/
H A DScalarizer.cpp261 bool Done = visit(I); local
263 if (Done && I->getType()->isVoidTy())
H A DIndVarSimplify.cpp2075 bool Done = false; local
2084 Done = true;
2086 Done = true;
2090 if (Done) break;
/external/python/cpython3/Lib/test/
H A Dtest_grammar.py1366 class Done(Exception): pass class in function:GrammarTests.test_async_for
1383 raise Done
1385 with self.assertRaises(Done):
1389 class Done(Exception): pass class in function:GrammarTests.test_async_with
1410 raise Done
1412 with self.assertRaises(Done):
H A Dtest_coroutines.py1722 class Done(Exception): pass class in function:CoroutineTest.test_for_tuple
1738 raise Done
1740 with self.assertRaises(Done):
1745 class Done(Exception): pass class in function:CoroutineTest.test_for_stop_iteration
1761 raise Done
1763 with self.assertRaises(Done):
/external/swiftshader/third_party/LLVM/lib/Support/
H A DCommandLine.cpp760 // do not give it values that others need. 'Done' controls whether the
763 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required; local
764 while (NumVals-ValNo > NumPositionalRequired && !Done) {
767 Done = true; // Optional arguments want _at most_ one value
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMBaseRegisterInfo.cpp1071 bool Done = false;
1073 Done = rewriteARMFrameIndex(MI, i, BaseReg, Off, TII);
1076 Done = rewriteT2FrameIndex(MI, i, BaseReg, Off, TII);
1078 assert (Done && "Unable to resolve frame index!");
1079 (void)Done;
1182 bool Done = false; local
1184 Done = rewriteARMFrameIndex(MI, i, FrameReg, Offset, TII);
1187 Done = rewriteT2FrameIndex(MI, i, FrameReg, Offset, TII);
1189 if (Done)
/external/v8/src/heap/
H A Dmark-compact.h324 inline bool Done() { return cell_index_ == last_cell_index_; } function in class:v8::internal::BASE_EMBEDDED
/external/clang/lib/Lex/
H A DModuleMap.cpp1463 bool Done = false; local
1468 Done = true;
1532 } while (!Done);
2256 bool Done = false; local
2261 Done = true;
2313 } while (!Done);
/external/llvm/lib/Support/
H A DCommandLine.cpp1240 // do not give it values that others need. 'Done' controls whether the
1243 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required; local
1244 while (NumVals - ValNo > NumPositionalRequired && !Done) {
1247 Done = true; // Optional arguments want _at most_ one value
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp1713 bool Done = false; local
1722 Done = true;
1724 Done = true;
1728 if (Done) break;
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DCommandLine.cpp1263 // do not give it values that others need. 'Done' controls whether the
1266 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required; local
1267 while (NumVals - ValNo > NumPositionalRequired && !Done) {
1270 Done = true; // Optional arguments want _at most_ one value
/external/v8/src/ast/
H A Dast-types.h858 bool Done() const { return index_ < 0; } function in class:v8::internal::AstBitsetType::AstType::Iterator
/external/v8/src/crankshaft/
H A Dlithium.h559 bool Done() { return current_ >= limit_; } function in class:v8::internal::BASE_EMBEDDED
562 DCHECK(!Done());
568 DCHECK(!Done());
601 bool Done() { return current_iterator_.Done(); } function in class:v8::internal::BASE_EMBEDDED
604 DCHECK(!current_iterator_.Done());
616 while (current_iterator_.env() != NULL && current_iterator_.Done()) {
802 inline bool Done();
818 inline bool Done();
833 inline bool Done();
[all...]
H A Dhydrogen.h247 bool Done() { return current_ >= predecessor_list_->length(); } function in class:v8::internal::BASE_EMBEDDED
261 next_ = Done() ? NULL : instr_->next();
264 inline bool Done() const { return instr_ == NULL; } function in class:v8::internal::BASE_EMBEDDED
268 next_ = Done() ? NULL : instr_->next();
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp3442 // so Pair[3].Group = {0,3} and Done = false (that is, 0 will not be added
3447 // so Pair[3].Group = {0, 1, 3} and Done = false.
3450 // Since Done remains true, we add 2 to the set of Separable pairs.
3453 // so Done remains true and we add it to the Coupled set.
3474 bool Done = true; local
3483 Done = false;
3486 if (Done) {
3836 bool Done = true; local
3845 Done = false;
3848 if (Done) {
[all...]
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp1268 bool Done = false; local
1269 while (!Done) {
1285 Done = true;
1291 Done = true;
1379 if (!Done && UpdateLocLex)
/external/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp374 auto Done = local
376 Builder.CreateCondBr(Done, DoneBB, BodyBB);
380 // Done.
525 auto Done = local
527 CGF.Builder.CreateCondBr(Done, DoneBB, BodyBB);
530 // Done.
H A DCGExpr.cpp547 llvm::BasicBlock *Done = nullptr; local
559 Done = createBasicBlock("null");
561 Builder.CreateCondBr(IsNonNull, Rest, Done);
682 if (Done) {
683 Builder.CreateBr(Done);
684 EmitBlock(Done);
/external/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp1282 bool Done = false; local
1294 Done = true;
1300 Done = true;
1305 } while (!Done);
/external/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1534 void Done(Instruction *I) { function in class:__anon14673::MemorySanitizerVisitor::Combiner
1557 OC.Done(&I);
1604 SC.Done(&I);
2005 SC.Done(&I);
/external/vixl/src/aarch64/
H A Dmacro-assembler-aarch64.h439 if (!sub_iterator_[i].Done()) {
448 VIXL_ASSERT(!Done());
450 if (!sub_iterator_[i].Done()) {
458 bool Done() const { function in class:vixl::aarch64::VeneerPool::BranchInfoSetIterator
460 if (!sub_iterator_[i].Done()) return false;
466 VIXL_ASSERT(!Done());
468 if (!sub_iterator_[i].Done()) {
478 if (!sub_iterator_[i].Done()) {
/external/clang/lib/AST/
H A DASTContext.cpp8101 bool Done = false; local
8102 while (!Done) {
8104 default: Done = true; --Str; break;
8304 Done = !AllowTypeModifiers;
8305 while (!Done) {
8307 default: Done = true; --Str; break;

Completed in 847 milliseconds

1234