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

1 2 3

  /external/chromium_org/ui/base/animation/
slide_animation_unittest.cc 22 void Step(base::TimeTicks ticks) {
23 animation_->Step(ticks);
72 test_api.Step(base::TimeTicks() + base::TimeDelta::FromMilliseconds(50));
throb_animation.cc 60 void ThrobAnimation::Step(base::TimeTicks time_now) {
61 LinearAnimation::Step(time_now);
linear_animation.cc 74 void LinearAnimation::Step(base::TimeTicks time_now) {
multi_animation.cc 46 void MultiAnimation::Step(base::TimeTicks time_now) {
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathStep.cpp 42 Step::Step(Axis axis, const NodeTest& nodeTest, const Vector<Predicate*>& predicates)
49 Step::~Step()
55 void Step::optimize()
71 void optimizeStepPair(Step* first, Step* second, bool& dropSecondStep)
75 if (first->m_axis == Step::DescendantOrSelfAxis
76 && first->m_nodeTest.kind() == Step::NodeTest::AnyNodeTest
84 if (second->m_axis == Step::ChildAxis && second->predicatesAreContextListInsensitive())
    [all...]
XPathGrammar.y 59 Step::Axis axis;
60 Step::NodeTest* nodeTest;
67 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 : public ParseNode {
42 WTF_MAKE_NONCOPYABLE(Step);
79 Step(Axis, const NodeTest&, const Vector<Predicate*>& predicates = Vector<Predicate*>());
80 ~Step();
90 friend void optimizeStepPair(Step*, Step*, bool&);
102 void optimizeStepPair(Step*, Step*, bool& dropSecondStep);
  /external/chromium/chrome/browser/sync/
sync_setup_wizard.cc 22 void SyncSetupWizard::Step(State advance_state) {
  /external/chromium_org/ash/wm/
window_cycle_list.cc 40 void WindowCycleList::Step(Direction direction) {
55 // We're in a valid cycle, so step forward or backward.
window_cycle_controller.cc 83 Step(direction);
86 // We're in the middle of an alt-tab cycle, just step forward.
87 Step(direction);
90 // This is a simple, single-step window cycle.
92 Step(direction);
104 cycle_list.Step(WindowCycleList::FORWARD);
119 void WindowCycleController::Step(Direction direction) {
121 windows_->Step(direction == FORWARD ? WindowCycleList::FORWARD :
window_selector.cc 345 void WindowSelector::Step(WindowSelector::Direction direction) {
  /external/chromium/third_party/libjingle/source/talk/base/
task.cc 86 void Task::Step() {
  /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:WebCore::DateTimeNumericFieldElement::Step
65 DateTimeNumericFieldElement(Document*, FieldOwner&, const Range&, const Range& hardLimits, const String& placeholder, const Step& = Step());
99 const Step m_step;
  /external/chromium_org/third_party/angle_dx11/src/compiler/
ForLoopUnroll.cpp 81 void ForLoopUnroll::Step()
  /external/chromium_org/third_party/libjingle/source/talk/base/
task.cc 86 void Task::Step() {
  /external/chromium/app/sql/
statement.cc 48 bool Statement::Step() {
57 // the last error that Step() caused thereby generating a second
  /external/chromium_org/sql/
statement.cc 60 bool Statement::Step() {
72 // the last error that Step() caused thereby generating a second
  /external/chromium_org/third_party/re2/re2/
nfa.cc 98 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) {
314 LOG(DFATAL) << "Unhandled " << ip->opcode() << " in step";
517 int id = Step(runq, nextq, c, flag, p-1);
602 // Will run step(runq, nextq, c, ...) on next iteration. See above.
  /external/llvm/utils/TableGen/
SetTheory.cpp 169 int Step = 1;
175 Step = II->getValue();
205 Step *= From <= To ? 1 : -1;
207 if (Step > 0 && From > To)
209 else if (Step < 0 && From < To)
224 From += Step;
  /external/regex-re2/re2/
nfa.cc 98 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) {
314 LOG(DFATAL) << "Unhandled " << ip->opcode() << " in step";
517 int id = Step(runq, nextq, c, flag, p-1);
602 // Will run step(runq, nextq, c, ...) on next iteration. See above.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_InterpolateLuma_HalfDiagVerHor4x4_unsafe_s.s 39 ;// r0,r1,r2,r3, r8 where r0,r2 input pointer and r1,r3 step size, r8 intermediate-buf pointer
99 Step RN 6
armVCM4P10_InterpolateLuma_HalfVer4x4_unsafe_s.s 33 ;// r0,r1,r2,r3 where r0,r2 input pointer and r1,r3 corresponding step size
93 Step RN 6
omxVCM4P10_FilterDeblockingChroma_HorEdge_I_s.s 67 Step RN 1
omxVCM4P10_FilterDeblockingChroma_VerEdge_I_s.s 91 Step RN 1
  /external/chromium_org/ui/compositor/
layer_animator.cc 379 void LayerAnimator::Step(base::TimeTicks now) {
380 TRACE_EVENT0("ui", "LayerAnimator::Step");
787 Step(start_time);

Completed in 570 milliseconds

1 2 3