Searched defs:Step (Results 1 - 25 of 47) sorted by relevance

12

/external/chromium_org/chrome/browser/chromeos/first_run/
H A Dstep.cc40 Step::Step(const std::string& name, function in class:chromeos::first_run::Step
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() {
H A Dstep.h27 class Step { class in namespace:chromeos::first_run
29 Step(const std::string& name,
32 virtual ~Step();
34 // Step shows its content.
53 // Called from OnBeforeHide. Step implementation could override this method to
57 // Called from OnAfterHide. Step implementation could override this method to
70 DISALLOW_COPY_AND_ASSIGN(Step);
/external/chromium_org/ash/wm/
H A Dwindow_cycle_controller.cc76 Step(direction);
90 void WindowCycleController::Step(Direction direction) { function in class:ash::WindowCycleController
92 window_cycle_list_->Step(direction);
H A Dwindow_cycle_list.cc131 void WindowCycleList::Step(WindowCycleController::Direction direction) { function in class:ash::WindowCycleList
/external/chromium_org/ui/gfx/animation/
H A Dslide_animation_unittest.cc23 void Step(base::TimeTicks ticks) { function in class:gfx::SlideAnimation::TestApi
24 animation_->Step(ticks);
73 test_api.Step(base::TimeTicks() + base::TimeDelta::FromMilliseconds(50));
H A Dthrob_animation.cc60 void ThrobAnimation::Step(base::TimeTicks time_now) { function in class:gfx::ThrobAnimation
61 LinearAnimation::Step(time_now);
H A Dlinear_animation.cc74 void LinearAnimation::Step(base::TimeTicks time_now) { function in class:gfx::LinearAnimation
H A Dmulti_animation.cc46 void MultiAnimation::Step(base::TimeTicks time_now) { function in class:gfx::MultiAnimation
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathStep.cpp42 Step::Step(Axis axis, const NodeTest& nodeTest) function in class:blink::XPath::Step
48 Step::Step(Axis axis, const NodeTest& nodeTest, WillBeHeapVector<OwnPtrWillBeMember<Predicate> >& predicates) function in class:blink::XPath::Step
55 Step::~Step()
59 void Step::trace(Visitor* visitor)
66 void Step::optimize()
87 void optimizeStepPair(Step* first, Step* secon
[all...]
H A DXPathGrammar.y59 blink::XPath::Step::Axis axis;
60 blink::XPath::Step::NodeTest* nodeTest;
67 blink::XPath::Step* step;
92 %type <step> Step
158 Step
166 RelativeLocationPath '/' Step
172 RelativeLocationPath DescendantOrSelf Step
181 Step: label
185 $$ = new Step(Step
[all...]
/external/chromium_org/chrome/browser/ui/autofill/
H A Dloading_animation.cc26 void LoadingAnimation::Step(base::TimeTicks time_now) { function in class:autofill::LoadingAnimation
27 LinearAnimation::Step(time_now);
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeNumericFieldElement.h48 struct Step { struct in class:blink::DateTimeNumericFieldElement
49 Step(int step = 1, int stepBase = 0) : step(step), stepBase(stepBase) { } function 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;
/external/chromium_org/third_party/webrtc/base/
H A Dtask.cc69 void Task::Step() { function in class:rtc::Task
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DEventMod.java54 public static final byte Step = 10; field in class:EventMod.ModKind
/external/chromium_org/sql/
H A Dstatement.cc64 bool Statement::Step() { function in class:sql::Statement
77 // the last error that Step() caused thereby generating a second
/external/llvm/lib/TableGen/
H A DSetTheory.cpp170 int Step = 1; variable
176 Step = II->getValue();
206 Step *= From <= To ? 1 : -1;
208 if (Step > 0 && From > To)
210 else if (Step < 0 && From < To)
225 From += Step;
/external/chromium_org/third_party/re2/re2/
H A Dnfa.cc98 inline int Step(Threadq* runq, Threadq* nextq, int c, int flag, const char* p);
292 int NFA::Step(Threadq* runq, Threadq* nextq, int c, int flag, const char* p) { function in class:re2::NFA
517 int id = Step(runq, nextq, c, flag, p-1);
/external/chromium_org/ui/compositor/
H A Dlayer_animator.cc386 void LayerAnimator::Step(base::TimeTicks now) { function in class:ui::LayerAnimator
387 TRACE_EVENT0("ui", "LayerAnimator::Step");
790 Step(start_time);
/external/chromium_org/v8/tools/push-to-trunk/
H A Dcommon_includes.py258 class Step(GitRecipesMixin): class in inherits:GitRecipesMixin
294 print ">>> Step %d: %s" % (self._number, self._text)
537 class UploadStep(Step):
552 class DetermineV8Sheriff(Step):
586 def MakeStep(step_class=Step, number=0, state=None, config=None,
/external/regex-re2/re2/
H A Dnfa.cc98 inline int Step(Threadq* runq, Threadq* nextq, int c, int flag, const char* p);
292 int NFA::Step(Threadq* runq, Threadq* nextq, int c, int flag, const char* p) { function in class:re2::NFA
517 int id = Step(runq, nextq, c, flag, p-1);
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DXPathParser.java1615 * RelativeLocationPath ::= Step
1616 * | RelativeLocationPath '/' Step
1626 if (!Step())
1635 if (!Step())
1648 * Step ::= Basis Predicate
1655 protected boolean Step() throws javax.xml.transform.TransformerException method in class:XPathParser
1661 // At most a single '/' before each Step is consumed by caller; if the
1662 // first thing is a '/', that means we had '//' and the Step must not
1735 // No Step matched - that's an error if previous thing was a '//'
/external/clang/include/clang/AST/
H A DOpenMPClause.h1007 void setStep(Expr *Step) { *varlist_end() = Step; } argument
1036 /// \a Step.
1044 /// \param Step Linear step.
1048 ArrayRef<Expr *> VL, Expr *Step);
/external/chromium_org/v8/src/heap/
H A Dincremental-marking.cc824 Step(allocated * kFastMarking / kInitialMarkingSpeed, GC_VIA_STACK_GUARD);
895 void IncrementalMarking::Step(intptr_t allocated_bytes, CompletionAction action, function in class:v8::internal::IncrementalMarking
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp155 ExprAST *Start, *End, *Step, *Body; member in class:__anon25453::ForExprAST
159 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
326 ExprAST *Step = 0;
329 Step = ParseExpression();
330 if (Step == 0) return 0;
340 return new ForExprAST(IdName, Start, End, Step, Body);
613 if (Step) {
614 StepVal = Step->Codegen();
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp170 ExprAST *Start, *End, *Step, *Body; member in class:__anon25454::ForExprAST
174 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
354 ExprAST *Step = 0;
357 Step = ParseExpression();
358 if (Step == 0) return 0;
368 return new ForExprAST(IdName, Start, End, Step, Body);
717 if (Step) {
718 StepVal = Step->Codegen();

Completed in 689 milliseconds

12