Searched refs:step (Results 1 - 25 of 462) sorted by relevance

1234567891011>>

/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Dvalidatereviewer_unittest.py44 def _test_review_text(self, step, text, expected):
47 self.assertEqual(step._has_valid_reviewer(entry), expected)
50 step = ValidateReviewer(MockTool(), MockOptions())
51 self._test_review_text(step, "Reviewed by Eric Seidel.", True)
52 self._test_review_text(step, "Reviewed by Eric Seidel", True) # Not picky about the '.'
53 self._test_review_text(step, "Reviewed by Eric.", False)
54 self._test_review_text(step, "Reviewed by Eric C Seidel.", False)
55 self._test_review_text(step, "Rubber-stamped by Eric.", True)
56 self._test_review_text(step, "Rubber stamped by Eric.", True)
57 self._test_review_text(step, "Unreviewe
[all...]
H A Dmetastep.py44 for step in steps:
45 collected_options = collected_options + step.options()
53 for step in self._step_instances:
54 step.run(state)
H A Dsuggestreviewers_unittest.py38 step = SuggestReviewers(MockTool(), MockOptions(suggest_reviewers=False))
39 OutputCapture().assert_outputs(self, step.run, [{}])
43 step = SuggestReviewers(MockTool(), MockOptions(suggest_reviewers=True, git_commit=None))
46 capture.assert_outputs(self, step.run, [{"bug_id": "123"}], expected_stdout=expected_stdout, expected_stderr=expected_stderr)
H A Dupdatechangelogswithreview_unittest.py38 step = UpdateChangeLogsWithReviewer(MockTool(), MockOptions())
40 capture.assert_outputs(self, step._guess_reviewer_from_bug, [75], expected_stderr=expected_stderr)
47 step = UpdateChangeLogsWithReviewer(MockTool(), options)
48 capture.assert_outputs(self, step.run, [{}])
H A Dcleanworkingdirectory_unittest.py39 step = CleanWorkingDirectory(tool, MockOptions(clean=True, force_clean=False))
40 step.run({})
46 step = CleanWorkingDirectory(tool, MockOptions(clean=False))
47 step.run({})
H A Dclosebugforlanddiff_unittest.py38 step = CloseBugForLandDiff(MockTool(), MockOptions())
40 capture.assert_outputs(self, step.run, [{"commit_text" : "Mock commit text"}], expected_stderr=expected_stderr)
H A Dsteps_unittest.py48 def _run_step(self, step, tool=None, options=None, state=None):
55 step(tool, options).run(state)
71 step = RunTests(MockTool(log_executive=True), mock_options)
77 step = RunTests(tool, mock_options)
87 OutputCapture().assert_outputs(self, step.run, [{}], expected_stderr=expected_stderr)
/external/skia/legacy/src/animator/
H A DSkAnimateProperties.h17 SK_PROPERTY(step),
/external/skia/src/animator/
H A DSkAnimateProperties.h17 SK_PROPERTY(step),
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
H A DRecentBuildsLoader.js47 var step = build.steps[stepIndex];
48 if (step.name === "layout-test") {
49 if (!("text" in step))
51 var strings = step.text;
59 } else if (step.name === "MasterShellCommand") {
60 if (!("urls" in step))
62 if (!("view results" in step.urls))
64 var url = step.urls["view results"];
/external/webkit/Source/WebCore/xml/
H A DXPathPath.cpp117 Step* step = m_steps[i]; local
121 bool needToCheckForDuplicateNodes = !nodes.subtreesAreDisjoint() || (step->axis() != Step::ChildAxis && step->axis() != Step::SelfAxis
122 && step->axis() != Step::DescendantAxis && step->axis() != Step::DescendantOrSelfAxis && step->axis() != Step::AttributeAxis);
128 if (nodes.subtreesAreDisjoint() && (step->axis() == Step::ChildAxis || step->axis() == Step::SelfAxis))
133 step->evaluate(nodes[j], matches);
151 void LocationPath::appendStep(Step* step) argument
166 insertFirstStep(Step* step) argument
[all...]
/external/skia/src/effects/
H A DSkCornerPathEffect.cpp19 SkPoint* step) {
22 step->set(b.fX - a.fX, b.fY - a.fY);
25 step->scale(SK_ScalarHalf);
28 step->scale(SkScalarDiv(radius, dist));
45 SkVector firstStep, step; local
70 bool drawSegment = ComputeStep(pts[0], pts[1], fRadius, &step);
73 dst->moveTo(moveTo + step);
76 dst->quadTo(pts[0].fX, pts[0].fY, pts[0].fX + step.fX,
77 pts[0].fY + step.fY);
80 dst->lineTo(pts[1].fX - step
18 ComputeStep(const SkPoint& a, const SkPoint& b, SkScalar radius, SkPoint* step) argument
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DFunction.java43 * Callback for one step in aggregate function.
49 public void step(FunctionContext fc, String args[]); method in interface:Function
52 * Callback for final step in aggregate function.
H A DVm.java16 * Internal last error code for compile()/step() methods.
22 * Perform one step on compiled SQLite VM.
30 * while (vm.step(cb)) {
34 * while (vm.step(cb)) {
47 public native boolean step(Callback cb) throws SQLite.Exception; method in class:Vm
/external/kernel-headers/original/sound/
H A Dtlv.h43 #define TLV_DB_SCALE_ITEM(min, step, mute) \
45 (min), ((step) & TLV_DB_SCALE_MASK) | ((mute) ? TLV_DB_SCALE_MUTE : 0)
46 #define DECLARE_TLV_DB_SCALE(name, min, step, mute) \
47 unsigned int name[] = { TLV_DB_SCALE_ITEM(min, step, mute) }
49 /* dB scale specified with min/max values instead of step */
/external/webkit/Source/WebCore/html/
H A DTextFieldInputType.cpp75 int step = 0; local
77 step = 1;
79 step = -1;
82 element()->stepUpFromRenderer(step);
90 int step = 0; local
92 step = 1;
94 step = -1;
97 element()->stepUpFromRenderer(step);
H A DStepRange.cpp39 step = 1.0;
42 hasStep = element->getAllowedValueStep(&step);
53 // Rounds clampedValue to minimum + N * step.
54 clampedValue = minimum + round((clampedValue - minimum) / step) * step;
56 clampedValue -= step;
/external/opencv/otherlibs/highgui/
H A Dgrfmt_jpeg2000.h68 bool ReadData( uchar* data, int step, int color );
73 bool ReadComponent8u( uchar *data, jas_matrix_t *buffer, int step, int cmpt,
75 bool ReadComponent16u( unsigned short *data, jas_matrix_t *buffer, int step, int cmpt,
91 bool WriteImage( const uchar* data, int step,
95 int step, int ncmpts, int w, int h );
97 int step, int ncmpts, int w, int h );
H A Dgrfmt_imageio.h24 bool ReadData( uchar* data, int step, int color );
40 bool WriteImage( const uchar* data, int step,
/external/skia/legacy/src/effects/
H A DSkCornerPathEffect.cpp24 SkPoint* step) {
27 step->set(b.fX - a.fX, b.fY - a.fY);
30 step->scale(SK_ScalarHalf);
33 step->scale(SkScalarDiv(radius, dist));
50 SkVector firstStep, step; local
75 bool drawSegment = ComputeStep(pts[0], pts[1], fRadius, &step);
78 dst->moveTo(moveTo + step);
81 dst->quadTo(pts[0].fX, pts[0].fY, pts[0].fX + step.fX,
82 pts[0].fY + step.fY);
85 dst->lineTo(pts[1].fX - step
23 ComputeStep(const SkPoint& a, const SkPoint& b, SkScalar radius, SkPoint* step) argument
[all...]
/external/webkit/Source/WebCore/platform/wx/wxcode/
H A Dscrollbar_render.h51 int max, int step, int flags=0);
54 int step, int *thumbStart, int *thumbLength)
56 float proportion = ((float)physicalLength - 8)/ (max + step);
53 calcThumbStartAndLength(int physicalLength, int max, int current, int step, int *thumbStart, int *thumbLength) argument
/external/opencv/cv/src/
H A Dcvdistransform.cpp68 int step, float* dist, int dststep, CvSize size, const float* metrics )
77 step /= sizeof(temp[0]);
80 icvInitTopBottom( temp, step, size, BORDER );
86 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
97 int t0 = tmp[j-step-1] + DIAG_DIST;
98 int t = tmp[j-step] + HV_DIST;
100 t = tmp[j-step+1] + DIAG_DIST;
113 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
120 int t = tmp[j+step+1] + DIAG_DIST;
122 t = tmp[j+step]
67 icvDistanceTransform_3x3_C1R( const uchar* src, int srcstep, int* temp, int step, float* dist, int dststep, CvSize size, const float* metrics ) argument
139 icvDistanceTransform_5x5_C1R( const uchar* src, int srcstep, int* temp, int step, float* dist, int dststep, CvSize size, const float* metrics ) argument
228 icvDistanceTransformEx_5x5_C1R( const uchar* src, int srcstep, int* temp, int step, float* dist, int dststep, int* labels, int lstep, CvSize size, const float* metrics ) argument
[all...]
/external/opencv/cvaux/src/
H A Dcvvideo.cpp73 memcpy( even->data.ptr + even->step*y,
74 frame->data.ptr + frame->step*y*2, size.width );
75 memcpy( odd->data.ptr + even->step*y,
76 frame->data.ptr + frame->step*(y*2+1), size.width );
/external/webkit/Source/WebCore/platform/win/
H A DPathWalker.cpp46 bool PathWalker::step() function in class:WebCore::PathWalker
/external/apache-http/src/org/apache/http/conn/routing/
H A DBasicRouteDirector.java54 * Provides the next step.
61 * either the next step to perform, or success, or failure.
70 int step = UNREACHABLE;
73 step = firstStep(plan);
75 step = proxiedStep(plan, fact);
77 step = directStep(plan, fact);
79 return step;
85 * Determines the first step to establish a route.
89 * @return the first step
99 * Determines the next step t
[all...]

Completed in 551 milliseconds

1234567891011>>