/external/webkit/WebKitTools/Scripts/webkitpy/commands/ |
D | download.py | 34 import webkitpy.steps as steps namespace 51 steps = [ variable in Build 52 steps.CleanWorkingDirectory, 53 steps.Update, 54 steps.Build, 61 steps = [ variable in BuildAndTest 62 steps.CleanWorkingDirectory, 63 steps.Update, 64 steps.Build, 65 steps.RunTests, [all …]
|
D | upload.py | 38 import webkitpy.steps as steps namespace 134 steps = [ variable in ObsoleteAttachments 135 steps.ObsoletePatches, 164 steps = [ variable in Post 165 steps.CheckStyle, 166 steps.ConfirmDiff, 167 steps.ObsoletePatches, 168 steps.PostDiff, 176 steps = [ variable in LandSafely 177 steps.UpdateChangeLogsWithReviewer, [all …]
|
D | abstractsequencedcommand.py | 34 steps = None variable in AbstractSequencedCommand 36 self._sequence = StepSequence(self.steps)
|
/external/webkit/WebKitTools/Scripts/webkitpy/steps/ |
D | __init__.py | 30 from webkitpy.steps.applypatch import ApplyPatch 31 from webkitpy.steps.applypatchwithlocalcommit import ApplyPatchWithLocalCommit 32 from webkitpy.steps.build import Build 33 from webkitpy.steps.checkstyle import CheckStyle 34 from webkitpy.steps.cleanworkingdirectory import CleanWorkingDirectory 35 from webkitpy.steps.cleanworkingdirectorywithlocalcommits import CleanWorkingDirectoryWithLocalComm… 36 from webkitpy.steps.closebug import CloseBug 37 from webkitpy.steps.closebugforlanddiff import CloseBugForLandDiff 38 from webkitpy.steps.closepatch import ClosePatch 39 from webkitpy.steps.commit import Commit [all …]
|
D | completerollout.py | 30 from webkitpy.steps.build import Build 31 from webkitpy.steps.commit import Commit 32 from webkitpy.steps.metastep import MetaStep 33 from webkitpy.steps.options import Options
|
D | metastep.py | 29 from webkitpy.steps.abstractstep import AbstractStep 42 def _collect_options_from_steps(steps): argument 44 for step in steps:
|
D | ensurelocalcommitifneeded.py | 29 from webkitpy.steps.abstractstep import AbstractStep 30 from webkitpy.steps.options import Options
|
D | applypatch.py | 29 from webkitpy.steps.abstractstep import AbstractStep 30 from webkitpy.steps.options import Options
|
D | update.py | 29 from webkitpy.steps.abstractstep import AbstractStep 30 from webkitpy.steps.options import Options
|
D | createbug.py | 29 from webkitpy.steps.abstractstep import AbstractStep 30 from webkitpy.steps.options import Options
|
D | confirmdiff.py | 29 from webkitpy.steps.abstractstep import AbstractStep 30 from webkitpy.steps.options import Options
|
D | applypatchwithlocalcommit.py | 29 from webkitpy.steps.applypatch import ApplyPatch 30 from webkitpy.steps.options import Options
|
D | ensurebuildersaregreen.py | 29 from webkitpy.steps.abstractstep import AbstractStep 30 from webkitpy.steps.options import Options
|
D | checkstyle.py | 32 from webkitpy.steps.abstractstep import AbstractStep 33 from webkitpy.steps.options import Options
|
D | closebug.py | 29 from webkitpy.steps.abstractstep import AbstractStep 30 from webkitpy.steps.options import Options
|
D | obsoletepatches.py | 30 from webkitpy.steps.abstractstep import AbstractStep 31 from webkitpy.steps.options import Options
|
D | build.py | 29 from webkitpy.steps.abstractstep import AbstractStep 30 from webkitpy.steps.options import Options
|
D | closebugforlanddiff.py | 30 from webkitpy.steps.abstractstep import AbstractStep 31 from webkitpy.steps.options import Options
|
D | cleanworkingdirectory.py | 31 from webkitpy.steps.abstractstep import AbstractStep 32 from webkitpy.steps.options import Options
|
/external/webkit/WebKitTools/BuildSlaveSupport/build.webkit.org-config/webkit/ |
D | factories.py | 1 from webkit.steps import * 14 self.steps.append(s(SetConfiguration, configuration="release")) 18 self.steps.append(s(UploadLayoutResults)) 22 self.steps.append(s(CompileWebKit, configuration="release")) 25 self.steps.append(s(JavaScriptCoreTest)) 28 self.steps.append(s(LayoutTest)) 33 self.steps.append(s(CompileWebKitNoSVG, configuration="release")) 39 self.steps.append(s(SetConfiguration, configuration="release")) 40 self.steps.append(s(CompileWebKit, configuration="release")) 41 self.steps.append(s(PixelLayoutTest)) [all …]
|
/external/libxml2/ |
D | pattern.c | 101 xmlStreamStepPtr steps; /* the array of steps */ member 169 xmlStepOpPtr steps; /* ops for computation */ member 211 cur->steps = (xmlStepOpPtr) xmlMalloc(cur->maxStep * sizeof(xmlStepOp)); in xmlNewPattern() 212 if (cur->steps == NULL) { in xmlNewPattern() 240 if (comp->steps != NULL) { in xmlFreePattern() 243 op = &comp->steps[i]; in xmlFreePattern() 250 xmlFree(comp->steps); in xmlFreePattern() 349 temp = (xmlStepOpPtr) xmlRealloc(comp->steps, comp->maxStep * 2 * in xmlPatternAdd() 356 comp->steps = temp; in xmlPatternAdd() 359 comp->steps[comp->nbStep].op = op; in xmlPatternAdd() [all …]
|
D | xpath.c | 576 xmlXPathStepOp *steps; /* ops for computation of this expression */ member 631 cur->steps = (xmlXPathStepOp *) xmlMalloc(cur->maxStep * in xmlXPathNewCompExpr() 633 if (cur->steps == NULL) { in xmlXPathNewCompExpr() 638 memset(cur->steps, 0, cur->maxStep * sizeof(xmlXPathStepOp)); in xmlXPathNewCompExpr() 662 op = &comp->steps[i]; in xmlXPathFreeCompExpr() 674 op = &comp->steps[i]; in xmlXPathFreeCompExpr() 682 if (comp->steps != NULL) { in xmlXPathFreeCompExpr() 683 xmlFree(comp->steps); in xmlXPathFreeCompExpr() 726 real = (xmlXPathStepOp *) xmlRealloc(comp->steps, in xmlXPathCompExprAdd() 733 comp->steps = real; in xmlXPathCompExprAdd() [all …]
|
/external/webkit/WebKitTools/Scripts/webkitpy/ |
D | stepsequence.py | 29 import webkitpy.steps as steps namespace 44 def __init__(self, steps): argument 45 self._steps = steps or [] 49 steps.Options.parent_command, 50 steps.Options.quiet,
|
/external/skia/src/animator/ |
D | SkDisplayApply.cpp | 36 SK_PROPERTY(steps), 57 SK_MEMBER_PROPERTY(steps, Int), 67 …restore(false), scope(NULL), steps(-1), transition((Transition) -1), fActive(NULL), /*fCurrentScop… in SkApply() 228 if (steps != -1) in dump() 229 SkDebugf("steps=\"%d\" ", steps); in dump() 402 for (int step = 0; step <= steps; step++) { in enableCreate() 415 step = steps; // quit in enableCreate() 421 step = steps; // quit in enableCreate() 498 case SK_PROPERTY(steps): in getProperty() 500 value->fOperand.fS32 = steps; in getProperty() [all …]
|
/external/webkit/WebKitTools/Scripts/ |
D | test-webkitpy | 51 from webkitpy.steps.steps_unittest import * 52 from webkitpy.steps.closebugforlanddiff_unittest import * 53 from webkitpy.steps.updatechangelogswithreview_unittests import *
|