/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.all_of/ |
D | all_of.pass.cpp | 34 return std::all_of(std::begin(ia), std::end(ia), test1()) in test_constexpr() 35 && !std::all_of(std::begin(ib), std::end(ib), test1()) in test_constexpr() 45 assert(std::all_of(input_iterator<const int*>(ia), in main() 47 assert(std::all_of(input_iterator<const int*>(ia), in main() 53 assert(std::all_of(input_iterator<const int*>(ia), in main() 55 assert(std::all_of(input_iterator<const int*>(ia), in main()
|
/external/deqp-deps/SPIRV-Tools/source/val/ |
D | validate_mode_setting.cpp | 248 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 258 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 289 if (!std::all_of( in ValidateExecutionMode() 301 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 318 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 349 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 362 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 373 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
|
/external/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_mode_setting.cpp | 248 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 258 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 289 if (!std::all_of( in ValidateExecutionMode() 301 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 318 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 349 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 362 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 373 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
|
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/ |
D | partition_copy.pass.cpp | 39 return std::all_of(std::begin(r1), p.first, is_odd()) in test_constexpr() 40 && std::all_of(p.first, std::end(r1), [](int a){return a == 0;}) in test_constexpr() 42 && std::all_of(p.second, std::end(r2), [](int a){return a == 0;}) in test_constexpr()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCBoolRetToInt.cpp | 134 if (!std::all_of(Users.begin(), Users.end(), IsValidUser) || in getPromotablePHINodes() 135 !std::all_of(Operands.begin(), Operands.end(), IsValidOperand)) in getPromotablePHINodes() 153 if (!std::all_of(Users.begin(), Users.end(), IsPromotable) || in getPromotablePHINodes() 154 !std::all_of(Operands.begin(), Operands.end(), IsPromotable)) in getPromotablePHINodes()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/ |
D | PPCBoolRetToInt.cpp | 151 if (!llvm::all_of(Users, IsValidUser) || in getPromotablePHINodes() 152 !llvm::all_of(Operands, IsValidOperand)) in getPromotablePHINodes() 170 if (!llvm::all_of(Users, IsPromotable) || in getPromotablePHINodes() 171 !llvm::all_of(Operands, IsPromotable)) in getPromotablePHINodes()
|
/external/libcxx/fuzzing/ |
D | fuzzing.cpp | 202 if (!std::all_of (working.begin(), iter, is_even<uint8_t>())) return 1; in partition() 221 if (!std::all_of (v1.begin(), v1.end(), is_even<uint8_t>())) return 2; in partition_copy() 256 if (!std::all_of (working.begin(), iter, is_even<stable_test>())) return 1; in stable_partition() 282 if (!std::all_of(working.begin(), partition_iter, [=](uint8_t v) { return v <= nth; })) in nth_element() 284 if (!std::all_of(partition_iter, working.end(), [=](uint8_t v) { return v >= nth; })) in nth_element() 305 if (!std::all_of(working.begin(), sort_iter, [=](uint8_t v) { return v <= nth; })) in partial_sort() 307 if (!std::all_of(sort_iter, working.end(), [=](uint8_t v) { return v >= nth; })) in partial_sort()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/ |
D | Instruction.cpp | 136 if (!llvm::all_of(Uses, [](const UniqueUse &Use) { return Use->isReady(); })) in update() 150 if (llvm::all_of(Defs, IsDefReady)) in update()
|
D | CodeRegion.h | 122 return std::all_of(Regions.begin(), Regions.end(), in empty()
|
D | Scheduler.cpp | 152 return std::all_of(Desc.Resources.begin(), Desc.Resources.end(), in canBeIssued() 165 bool AllInOrderResources = all_of(Desc.Buffers, [&](uint64_t BufferMask) { in mustIssueImmediately()
|
/external/clang/lib/Sema/ |
D | SemaCUDA.cpp | 378 if (!llvm::all_of(CD->inits(), [&](const CXXCtorInitializer *CI) { in isEmptyCudaConstructor() 417 if (!llvm::all_of(ClassDecl->bases(), [&](const CXXBaseSpecifier &BS) { in isEmptyCudaDestructor() 425 if (!llvm::all_of(ClassDecl->fields(), [&](const FieldDecl *Field) { in isEmptyCudaDestructor()
|
/external/libcxx/test/std/containers/sequences/vector/vector.cons/ |
D | assign_size_value.pass.cpp | 30 assert(std::all_of(v.begin(), v.end(), is6)); in test()
|
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.generate/ |
D | generate.pass.cpp | 36 return std::all_of(std::begin(ia), std::end(ia), [](int x) { return x == 1; }) in test_constexpr()
|
D | generate_n.pass.cpp | 44 && std::all_of(std::begin(ib), it, [](int x) { return x == 2; }) in test_constexpr()
|
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.fill/ |
D | fill.pass.cpp | 29 return std::all_of(std::begin(ia), std::end(ia), [](int a) {return a == 5; }) in test_constexpr()
|
/external/v8/src/interpreter/ |
D | bytecode-label.h | 72 std::all_of(labels_.begin(), labels_.end(), in is_bound()
|
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/ |
D | remove_copy.pass.cpp | 32 && std::all_of (it, std::end(ib), [](int a) {return a == 0;}) in test_constexpr()
|
D | remove_copy_if.pass.cpp | 36 && std::all_of (it, std::end(ib), [](int a) {return a == 0;}) in test_constexpr()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | LoopInfo.cpp | 64 return all_of(I->operands(), [this](Value *V) { return isLoopInvariant(V); }); in hasLoopInvariantOperands() 178 return all_of(this->blocks(), [&](const BasicBlock *BB) { in isLCSSAForm() 187 return all_of(this->blocks(), [&](const BasicBlock *BB) { in isRecursivelyLCSSAForm()
|
/external/llvm/lib/CodeGen/ |
D | ImplicitNullChecks.cpp | 271 if (!all_of(MI->operands(), IsMIOperandSafe)) in isSafeToHoist() 463 all_of(Dependency->operands(), DependencyOperandIsOk); in analyzeBlockForNullChecks()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | STLExtras.h | 351 bool all_of(R &&range, UnaryPredicate P); 387 return all_of(std::initializer_list<bool>{std::get<Ns>(this->iterators) != in test() 590 bool all_of(R &&Range, UnaryPredicate P) { 591 return std::all_of(std::begin(Range), std::end(Range), P);
|
/external/mesa3d/src/gallium/state_trackers/clover/api/ |
D | memory.cpp | 173 if (all_of([=](const device &dev) { in clCreateImage() 188 if (all_of([=](const device &dev) { in clCreateImage()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | constants.cpp | 217 if (!std::all_of(components.begin(), components.end(), in CreateConstant() 229 if (!std::all_of(components.begin(), components.end(), in CreateConstant()
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | constants.cpp | 217 if (!std::all_of(components.begin(), components.end(), in CreateConstant() 229 if (!std::all_of(components.begin(), components.end(), in CreateConstant()
|
/external/llvm/lib/Analysis/ |
D | CodeMetrics.cpp | 48 if (!std::all_of(V->user_begin(), V->user_end(), in completeEphemeralValues()
|