HomeSort by relevance Sort by last modified time
    Searched refs:Step (Results 1 - 25 of 198) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
math-cordic.js 58 var Step;
65 for (Step = 0; Step < 12; Step++) {
68 NewX = X - (Y >> Step);
69 Y = (X >> Step) + Y;
71 CurrAngle += Angles[Step];
73 NewX = X + (Y >> Step);
74 Y = -(X >> Step) + Y;
76 CurrAngle -= Angles[Step];
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
math-cordic.js 58 var Step;
65 for (Step = 0; Step < 12; Step++) {
68 NewX = X - (Y >> Step);
69 Y = (X >> Step) + Y;
71 CurrAngle += Angles[Step];
73 NewX = X + (Y >> Step);
74 Y = -(X >> Step) + Y;
76 CurrAngle -= Angles[Step];
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
math-cordic.js 59 var Step;
66 for (Step = 0; Step < 12; Step++) {
69 NewX = X - (Y >> Step);
70 Y = (X >> Step) + Y;
72 CurrAngle += Angles[Step];
74 NewX = X + (Y >> Step);
75 Y = -(X >> Step) + Y;
77 CurrAngle -= Angles[Step];
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathGrammar.y 59 blink::XPath::Step::Axis axis;
60 blink::XPath::Step::NodeTest* nodeTest;
67 blink::XPath::Step* step;
92 %type <step> Step
94 %type <step> DescendantOrSelf
99 %type <step> AbbreviatedStep
158 Step
166 RelativeLocationPath '/' Step
    [all...]
XPathStep.h 41 class Step FINAL : public ParseNode {
42 WTF_MAKE_NONCOPYABLE(Step);
96 Step(Axis, const NodeTest&);
97 Step(Axis, const NodeTest&, WillBeHeapVector<OwnPtrWillBeMember<Predicate> >&);
98 virtual ~Step();
109 friend void optimizeStepPair(Step*, Step*, bool&);
122 void optimizeStepPair(Step*, Step*, bool& dropSecondStep);
XPathStep.cpp 42 Step::Step(Axis axis, const NodeTest& nodeTest)
48 Step::Step(Axis axis, const NodeTest& nodeTest, WillBeHeapVector<OwnPtrWillBeMember<Predicate> >& predicates)
55 Step::~Step()
59 void Step::trace(Visitor* visitor)
66 void Step::optimize()
87 void optimizeStepPair(Step* first, Step* second, bool& dropSecondStep
    [all...]
XPathParser.cpp 49 typedef HashMap<String, Step::Axis> AxisNamesMap;
72 Step::Axis axis;
75 { "ancestor", Step::AncestorAxis },
76 { "ancestor-or-self", Step::AncestorOrSelfAxis },
77 { "attribute", Step::AttributeAxis },
78 { "child", Step::ChildAxis },
79 { "descendant", Step::DescendantAxis },
80 { "descendant-or-self", Step::DescendantOrSelfAxis },
81 { "following", Step::FollowingAxis },
82 { "following-sibling", Step::FollowingSiblingAxis }
    [all...]
XPathPath.h 38 class Step;
64 void appendStep(Step*);
65 void insertFirstStep(Step*);
70 WillBeHeapVector<RawPtrWillBeMember<Step> > m_steps;
  /external/chromium_org/chrome/browser/chromeos/first_run/
step.cc 5 #include "chrome/browser/chromeos/first_run/step.h"
40 Step::Step(const std::string& name,
48 Step::~Step() { RecordCompletion(); }
50 void Step::Show() {
55 void Step::OnBeforeHide() {
60 void Step::OnAfterHide() {
65 gfx::Size Step::GetOverlaySize() const {
69 void Step::RecordCompletion()
    [all...]
step.h 27 class Step {
29 Step(const std::string& name,
32 virtual ~Step();
34 // Step shows its content.
37 // Called before hiding step.
40 // Called after step has been hidden.
53 // Called from OnBeforeHide. Step implementation could override this method to
57 // Called from OnAfterHide. Step implementation could override this method to
62 // Records time spent on step to UMA.
70 DISALLOW_COPY_AND_ASSIGN(Step);
    [all...]
first_run_controller.h 31 class Step;
39 typedef std::vector<linked_ptr<first_run::Step> > Steps;
74 first_run::Step* GetCurrentStep() const;
86 // Index of step that is currently shown.
  /external/chromium_org/chrome/browser/chromeos/first_run/steps/
app_list_step.h 9 #include "chrome/browser/chromeos/first_run/step.h"
14 class AppListStep : public Step {
19 // Overriden from Step.
help_step.h 9 #include "chrome/browser/chromeos/first_run/step.h"
14 class HelpStep : public Step {
19 // Overriden from Step.
tray_step.h 9 #include "chrome/browser/chromeos/first_run/step.h"
14 class TrayStep : public Step {
19 // Overriden from Step.
app_list_step.cc 23 : Step(kAppListStep, shell_helper, actor) {
  /external/chromium_org/ui/gfx/animation/
animation_container_element.h 22 virtual void Step(base::TimeTicks time_now) = 0;
multi_animation_unittest.cc 23 // Step to 50, which is half way through the first part.
24 as_element->Step(base::TimeTicks() + base::TimeDelta::FromMilliseconds(50));
27 // Step to 120, which is 20% through the second part.
28 as_element->Step(base::TimeTicks() +
33 // Step to 320, which is 20% through the second part.
34 as_element->Step(base::TimeTicks() +
52 // Step to 0. Because the start_time is 100, this should be 100ms into the
54 as_element->Step(base::TimeTicks());
57 // Step to 100, which is effectively 200ms into the animation.
58 as_element->Step(base::TimeTicks() + base::TimeDelta::FromMilliseconds(100))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DateTimeNumericFieldElement.h 48 struct Step {
49 Step(int step = 1, int stepBase = 0) : step(step), stepBase(stepBase) { }
50 int step; member in struct:blink::DateTimeNumericFieldElement::Step
65 DateTimeNumericFieldElement(Document&, FieldOwner&, const Range&, const Range& hardLimits, const String& placeholder, const Step& = Step());
100 const Step m_step;
DateTimeFieldElements.h 69 DateTimeHourFieldElementBase(Document&, FieldOwner&, const Range&, const Range& hardLimits, const Step&);
82 static PassRefPtrWillBeRawPtr<DateTimeHour11FieldElement> create(Document&, FieldOwner&, const Range&, const Step&);
85 DateTimeHour11FieldElement(Document&, FieldOwner&, const Range& hour23Range, const Step&);
96 static PassRefPtrWillBeRawPtr<DateTimeHour12FieldElement> create(Document&, FieldOwner&, const Range&, const Step&);
99 DateTimeHour12FieldElement(Document&, FieldOwner&, const Range& hour23Range, const Step&);
110 static PassRefPtrWillBeRawPtr<DateTimeHour23FieldElement> create(Document&, FieldOwner&, const Range&, const Step&);
113 DateTimeHour23FieldElement(Document&, FieldOwner&, const Range& hour23Range, const Step&);
124 static PassRefPtrWillBeRawPtr<DateTimeHour24FieldElement> create(Document&, FieldOwner&, const Range&, const Step&);
127 DateTimeHour24FieldElement(Document&, FieldOwner&, const Range& hour23Range, const Step&);
138 static PassRefPtrWillBeRawPtr<DateTimeMillisecondFieldElement> create(Document&, FieldOwner&, const Range&, const Step&)
    [all...]
  /external/chromium_org/sql/
statement_unittest.cc 55 EXPECT_FALSE(s.Step());
57 // Run should fail since this produces output, and we should use Step(). This
71 EXPECT_TRUE(s.Step());
74 EXPECT_FALSE(s.Step());
118 ASSERT_TRUE(s.Step());
120 ASSERT_FALSE(s.Step());
124 ASSERT_TRUE(s.Step());
126 EXPECT_FALSE(s.Step());
129 ASSERT_FALSE(s.Step());
  /external/chromium_org/chrome/browser/ui/autofill/
loading_animation.h 20 virtual void Step(base::TimeTicks time_now) OVERRIDE;
  /external/chromium_org/v8/tools/push-to-trunk/
bump_up_version.py 31 class Preparation(Step):
49 class GetCurrentBleedingEdgeVersion(Step):
63 # This step is pure paranoia. It forbids the script to continue if the last
66 class LastChangeBailout(Step):
76 class FetchLKGR(Step):
87 class GetLKGRVersion(Step):
113 class LKGRVersionUpToDateBailout(Step):
130 class GetTrunkVersion(Step):
142 class CalculateVersion(Step):
173 class CheckTreeStatus(Step)
    [all...]
auto_push.py 41 class Preparation(Step):
49 class CheckAutoPushSettings(Step):
61 class CheckTreeStatus(Step):
73 class FetchLKGR(Step):
82 class CheckLastPush(Step):
105 class PushToTrunk(Step):
  /external/chromium_org/ash/wm/
window_cycle_controller.cc 76 Step(direction);
90 void WindowCycleController::Step(Direction direction) {
92 window_cycle_list_->Step(direction);
  /external/chromium_org/chrome/browser/history/android/
android_urls_database_unittest.cc 54 ASSERT_TRUE(statement.Step());
59 ASSERT_TRUE(statement.Step());
64 EXPECT_FALSE(statement.Step());

Completed in 517 milliseconds

1 2 3 4 5 6 7 8