/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): 172 class EditChangeLog(Step): 195 class StragglerCommits(Step): 204 class SquashCommits(Step): 237 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): 130 class EditChangeLog(Step): 153 class PushBranchRef(Step): 164 class MakeBranch(Step): 175 class AddChangeLog(Step): 185 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): 170 class CleanUp(Step):
|
D | merge_to_branch.py | 38 class Preparation(Step): 57 class CreateBranch(Step): 65 class SearchArchitecturePorts(Step): 97 class CreateCommitMessage(Step): 146 class ApplyPatches(Step): 159 class CommitLocal(Step): 169 class AddInformationalComment(Step): 180 class CommitRepository(Step): 189 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 | auto_push.py | 40 class Preparation(Step): 48 class FetchCandidate(Step): 57 class LastReleaseBailout(Step): 70 class CreateRelease(Step):
|
D | releases.py | 125 class Preparation(Step): 133 class RetrieveV8Releases(Step): 318 class UpdateChromiumCheckout(Step): 338 class RetrieveChromiumV8Releases(Step): 385 class RetrieveChromiumBranches(Step): 437 class RetrieveInformationOnChromeReleases(Step): 503 class CleanUp(Step): 510 class WriteOutput(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() 84 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F() 102 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F() 115 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F() 117 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F() 129 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F() 142 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F() [all …]
|
D | sqlite.cc | 96 return stmt.Step(&unused_done); in SetPragma() 176 Status SqliteStatement::Step(bool* is_done) { in Step() function in tensorflow::SqliteStatement 202 TF_CHECK_OK(Step(&is_done)); in StepOrDie() 208 TF_RETURN_IF_ERROR(Step(&is_done)); in StepOnce() 222 Status s = Step(&is_done); in StepAndReset()
|
/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/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/libmojo/base/android/jni_generator/ |
D | testFromJavaPGenerics.golden | 19 // Step 1: forward declarations. 30 // Step 2: method stubs. 52 // Step 3: RegisterNatives.
|
D | testNativesLong.golden | 19 // Step 1: forward declarations. 28 // Step 2: method stubs. 39 // Step 3: RegisterNatives.
|
D | testInnerClassNatives.golden | 19 // Step 1: forward declarations. 32 // Step 2: method stubs. 43 // Step 3: RegisterNatives.
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 188 std::unique_ptr<ExprAST> Start, End, Step, Body; member in __anon3a8d13e00111::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 | 377 with breakdown_timer.Step('garbage_collection'): 379 with breakdown_timer.Step('trigger_refresh'): 382 with breakdown_timer.Step('schedule_running_host_queue_entries'): 384 with breakdown_timer.Step('schedule_special_tasks'): 386 with breakdown_timer.Step('schedule_new_jobs'): 388 with breakdown_timer.Step('gather_tick_metrics'): 390 with breakdown_timer.Step('sync_refresh'): 394 with breakdown_timer.Step('send_to_lucifer'): 402 with breakdown_timer.Step('run_cleanup'): 404 with breakdown_timer.Step('find_aborting'): [all …]
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 154 ExprAST *Start, *End, *Step, *Body; member in ForExprAST 158 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST() 324 ExprAST *Step = 0; in ParseForExpr() local 327 Step = ParseExpression(); in ParseForExpr() 328 if (Step == 0) return 0; in ParseForExpr() 338 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr() 611 if (Step) { in Codegen() 612 StepVal = Step->Codegen(); in Codegen()
|
/external/autotest/client/cros/cellular/pseudomodem/ |
D | state_machine.py | 99 self.Step() 150 def Step(self): member in StateMachine 192 gobject.idle_add(StateMachine.Step, self)
|
/external/perfetto/src/traced/probes/filesystem/ |
D | file_scanner.cc | 60 Step(); in Scan() 105 void FileScanner::Step() { in Step() function in perfetto::FileScanner 147 Step(); in Steps()
|