/external/v8/tools/release/ |
D | push_to_candidates.py | 40 class Preparation(Step): 55 class FreshBranch(Step): 63 class PreparePushRevision(Step): 75 class IncrementVersion(Step): 109 class DetectLastRelease(Step): 119 class PrepareChangeLog(Step): 154 class EditChangeLog(Step): 177 class StragglerCommits(Step): 186 class SquashCommits(Step): 219 class NewBranch(Step): [all …]
|
D | create_release.py | 14 class Preparation(Step): 23 class PrepareBranchRevision(Step): 33 class IncrementVersion(Step): 70 class DetectLastRelease(Step): 77 class PrepareChangeLog(Step): 112 class EditChangeLog(Step): 135 class PushBranchRef(Step): 146 class MakeBranch(Step): 157 class AddChangeLog(Step): 167 class SetVersion(Step): [all …]
|
D | roll_merge.py | 38 class Preparation(Step): 59 class CreateBranch(Step): 67 class SearchArchitecturePorts(Step): 99 class CreateCommitMessage(Step): 134 class ApplyPatches(Step): 148 class PrepareVersion(Step): 156 class IncrementVersion(Step): 179 class CommitLocal(Step): 191 class CommitRepository(Step): 201 class TagRevision(Step): [all …]
|
D | auto_roll.py | 25 class Preparation(Step): 35 class DetectLastRoll(Step): 54 class DetectRevisionToRoll(Step): 90 class PrepareRollCandidate(Step): 105 class SwitchChromium(Step): 120 class UpdateChromiumCheckout(Step): 136 class UploadCL(Step): 171 class CleanUp(Step):
|
D | auto_tag.py | 12 class Preparation(Step): 27 class GetTags(Step): 35 class GetOldestUntaggedVersion(Step): 91 class GetLKGRs(Step): 101 class CalculateTagRevision(Step): 149 class MakeTag(Step): 161 class CleanUp(Step):
|
D | merge_to_branch.py | 39 class Preparation(Step): 58 class CreateBranch(Step): 66 class SearchArchitecturePorts(Step): 98 class CreateCommitMessage(Step): 152 class ApplyPatches(Step): 165 class CommitLocal(Step): 175 class CommitRepository(Step): 184 class CleanUp(Step):
|
D | auto_push.py | 40 class Preparation(Step): 48 class FetchCandidate(Step): 57 class LastReleaseBailout(Step): 70 class CreateRelease(Step):
|
/external/pdfium/third_party/agg23/ |
D | agg_pixfmt_gray.h | 42 template<class Blender, unsigned Step = 1, unsigned Offset = 0> 95 value_type* p = (value_type*)m_rbuf->row(y) + x * Step + Offset; in pixel() 103 x * Step * sizeof(value_type) + in row() 110 x * Step * sizeof(value_type) + in span() 115 *((value_type*)m_rbuf->row(y) + x * Step + Offset) = c.v; in copy_pixel() 119 copy_or_blend_pix((value_type*)m_rbuf->row(y) + x * Step + Offset, c, cover); in blend_pixel() 125 value_type* p = (value_type*)m_rbuf->row(y) + x * Step + Offset; in copy_hline() 128 p += Step; in copy_hline() 137 value_type* p = (value_type*)m_rbuf->row(y) + x * Step + Offset; in blend_hline() 142 p += Step; in blend_hline() [all …]
|
/external/tensorflow/tensorflow/core/lib/db/ |
D | sqlite_test.cc | 51 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F() 55 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F() 59 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F() 69 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F() 85 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F() 99 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F() 117 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F() 130 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F() 132 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F() 144 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F() [all …]
|
D | sqlite.cc | 96 return stmt.Step(&unused_done); in SetPragma() 177 Status SqliteStatement::Step(bool* is_done) { in Step() function in tensorflow::SqliteStatement 203 TF_CHECK_OK(Step(&is_done)); in StepOrDie() 209 TF_RETURN_IF_ERROR(Step(&is_done)); in StepOnce() 223 Status s = Step(&is_done); in StepAndReset()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | LoopPredication.cpp | 246 bool isSupportedStep(const SCEV* Step); 422 bool LoopPredication::isSupportedStep(const SCEV* Step) { in isSupportedStep() argument 423 return Step->isOne() || (Step->isAllOnesValue() && EnableCountDownLoop); in isSupportedStep() 535 auto *Step = RangeCheckIV->getStepRecurrence(*SE); in widenICmpRangeCheck() local 538 if (!isSupportedStep(Step)) { in widenICmpRangeCheck() 554 assert(Step->getType() == in widenICmpRangeCheck() 557 if (Step != CurrLatchCheck.IV->getStepRecurrence(*SE)) { in widenICmpRangeCheck() 562 if (Step->isOne()) in widenICmpRangeCheck() 566 assert(Step->isAllOnesValue() && "Step should be -1!"); in widenICmpRangeCheck() 669 auto *Step = Result->IV->getStepRecurrence(*SE); in parseLoopLatchICmp() local [all …]
|
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/ |
D | Condition.java | 16 public interface Step<I, O> { interface in Condition 23 public abstract <U> Condition<U> and(Step<? super T, U> mapping); in and() 26 public final <U> Condition<U> then(Step<? super T, U> mapping) { return and(mapping); } in then() 57 public <U> Condition<U> and(Step<? super T, U> next) { in and() 65 @Override public <U> Condition<U> and(Step<? super T, U> mapping) { in and()
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | utils.h | 66 template<int Begin, int End, int Step = 1> 71 UnrollerL<Begin + Step, End, Step>::step(func); in step() 75 template<int End, int Step> 76 struct UnrollerL<End, End, Step> { 83 template<int Begin, int End, int Step = 1, int Mask = 0x7f> 91 UnrollerL<Begin + Step, End, Step>::step(func); 95 template<int End, int Step, int Mask> 96 struct UnrollerLMask<End, End, Step, Mask> {
|
/external/clang/ |
D | INSTALL.txt | 8 // Step 1: Organization 21 // Step 2: Configure and Build LLVM 32 // Step 3: (Optional) Verify Your Build 40 // Step 4: Install Clang
|
/external/llvm/lib/Transforms/Utils/ |
D | LoopUtils.cpp | 657 const SCEV *Step) in InductionDescriptor() argument 658 : StartValue(Start), IK(K), Step(Step) { in InductionDescriptor() 675 assert(Step->getType()->isIntegerTy() && "StepValue is not an integer"); in InductionDescriptor() 686 if (isa<SCEVConstant>(Step)) in getConstIntStepValue() 687 return dyn_cast<ConstantInt>(cast<SCEVConstant>(Step)->getValue()); in getConstIntStepValue() 716 SE->getMulExpr(Step, SE->getSCEV(Index))); in transform() 720 assert(Index->getType() == Step->getType() && in transform() 722 assert(isa<SCEVConstant>(Step) && in transform() 724 const SCEV *S = SE->getMulExpr(SE->getSCEV(Index), Step); in transform() 780 const SCEV *Step = AR->getStepRecurrence(*SE); in isInductionPHI() local [all …]
|
/external/libchrome/base/android/jni_generator/ |
D | testInnerClassNativesBothInnerAndOuterRegistrations.golden | 19 // Step 1: Forward declarations (classes). 42 // Step 2: Forward declarations (methods). 52 // Step 3: Method declarations. 95 // Step 4: Main dex and non-main dex registration functions.
|
D | testNativesLong.golden | 19 // Step 1: Forward declarations. 34 // Step 2: Constants (optional). 37 // Step 3: Method stubs.
|
D | testInnerClassNatives.golden | 19 // Step 1: Forward declarations. 47 // Step 2: Constants (optional). 50 // Step 3: Method stubs.
|
/external/v8/src/wasm/ |
D | module-compiler.h | 126 template <typename Step, typename... Args> 130 template <typename Step, typename... Args> 135 template <typename Step, typename... Args> 140 template <typename Step, typename... Args>
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 198 std::unique_ptr<ExprAST> Start, End, Step, Body; member in __anon1b6fdac40111::ForExprAST 202 std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step, in ForExprAST() argument 205 Step(std::move(Step)), Body(std::move(Body)) {} in ForExprAST() 391 std::unique_ptr<ExprAST> Step; in ParseForExpr() local 394 Step = ParseExpression(); in ParseForExpr() 395 if (!Step) in ParseForExpr() 408 std::move(Step), std::move(Body)); in ParseForExpr() 724 if (Step) { in codegen() 725 StepVal = Step->codegen(); in codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 188 std::unique_ptr<ExprAST> Start, End, Step, Body; member in __anona9d9756c0111::ForExprAST 192 std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step, in ForExprAST() argument 195 Step(std::move(Step)), Body(std::move(Body)) {} in ForExprAST() 377 std::unique_ptr<ExprAST> Step; in ParseForExpr() local 380 Step = ParseExpression(); in ParseForExpr() 381 if (!Step) in ParseForExpr() 394 std::move(Step), std::move(Body)); in ParseForExpr() 710 if (Step) { in codegen() 711 StepVal = Step->codegen(); in codegen()
|
/external/llvm/lib/Analysis/ |
D | ScalarEvolutionExpander.cpp | 278 const SCEV *Step = A->getStepRecurrence(SE); in FactorOutConstant() local 279 const SCEV *StepRem = SE.getConstant(Step->getType(), 0); in FactorOutConstant() 280 if (!FactorOutConstant(Step, StepRem, Factor, SE, DL)) in FactorOutConstant() 287 S = SE.getAddRecExpr(Start, Step, A->getLoop(), in FactorOutConstant() 1059 const SCEV *Step = AR->getStepRecurrence(SE); in IsIncrementNSW() local 1060 const SCEV *OpAfterExtend = SE.getAddExpr(SE.getSignExtendExpr(Step, WideTy), in IsIncrementNSW() 1063 SE.getSignExtendExpr(SE.getAddExpr(AR, Step), WideTy); in IsIncrementNSW() 1073 const SCEV *Step = AR->getStepRecurrence(SE); in IsIncrementNUW() local 1074 const SCEV *OpAfterExtend = SE.getAddExpr(SE.getZeroExtendExpr(Step, WideTy), in IsIncrementNUW() 1077 SE.getZeroExtendExpr(SE.getAddExpr(AR, Step), WideTy); in IsIncrementNUW() [all …]
|
/external/clang/lib/Sema/ |
D | SemaInit.cpp | 3026 void InitializationSequence::Step::Destroy() { in Destroy() 3124 Step S; in AddAddressOverloadResolutionStep() 3135 Step S; in AddDerivedToBaseCastStep() 3147 Step S; in AddReferenceBindingStep() 3154 Step S; in AddExtraneousCopyToTemporary() 3165 Step S; in AddUserConversionStep() 3176 Step S; in AddQualificationConversionStep() 3194 Step S; in AddAtomicConversionStep() 3203 Step S; in AddLValueToRValueStep() 3212 Step S; in AddConversionSequenceStep() [all …]
|
/external/libphonenumber/demo/war/ |
D | phonenumberparser.jsp | 10 <h2>Step 1</h2> 18 <h2>Step 2</h2> 24 <h2>Step 3</h2>
|
/external/autotest/scheduler/ |
D | monitor_db.py | 375 with breakdown_timer.Step('trigger_refresh'): 378 with breakdown_timer.Step('schedule_running_host_queue_entries'): 380 with breakdown_timer.Step('schedule_special_tasks'): 382 with breakdown_timer.Step('schedule_new_jobs'): 384 with breakdown_timer.Step('gather_tick_metrics'): 386 with breakdown_timer.Step('sync_refresh'): 390 with breakdown_timer.Step('send_to_lucifer'): 398 with breakdown_timer.Step('run_cleanup'): 400 with breakdown_timer.Step('find_aborting'): 402 with breakdown_timer.Step('find_aborted_special_tasks'): [all …]
|