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

12

/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/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/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/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/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.h1571 void setStep(Expr *Step) { *(getFinals().end()) = Step; } argument
1612 /// Step; CalcStep; }
1643 /// \a Step.
1652 /// \param Step Linear step.
1658 Expr *Step, Expr *CalcStep);
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp175 ExprAST *Start, *End, *Step, *Body; member in class:__anon10097::ForExprAST
180 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
363 ExprAST *Step = 0;
366 Step = ParseExpression();
367 if (Step == 0)
379 return new ForExprAST(IdName, Start, End, Step, Body);
677 if (Step) {
678 StepVal = Step->Codegen();
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp194 ExprAST *Start, *End, *Step, *Body; member in class:__anon10098::ForExprAST
199 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
394 ExprAST *Step = 0;
397 Step = ParseExpression();
398 if (Step == 0)
410 return new ForExprAST(IdName, Start, End, Step, Body);
785 if (Step) {
786 StepVal = Step->Codegen();
/external/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp547 const SCEV *Step = AR->getStepRecurrence(*SE); local
550 const SCEVConstant *C = dyn_cast<SCEVConstant>(Step);
/external/llvm/lib/Transforms/Scalar/
H A DLoopUnrollPass.cpp267 APInt Step; member in struct:__anon11045::FindConstantPointers
297 Step = StepSE->getValue()->getValue();
416 unsigned Step = StepC.getLimitedValue(); local
418 unsigned Index = (Start + Step * Iteration) / ElemSize;
/external/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/clang/include/clang/Sema/
H A DInitialization.h718 class Step { class in class:clang::InitializationSequence
762 SmallVector<Step, 4> Steps;
929 typedef SmallVectorImpl<Step>::const_iterator step_iterator;
/external/clang/lib/AST/
H A DStmt.cpp1345 ArrayRef<Expr *> IL, Expr *Step, Expr *CalcStep) {
1347 // (Step and CalcStep).
1361 Clause->setStep(Step);
1369 // (Step and CalcStep).
1342 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> IL, Expr *Step, Expr *CalcStep) argument
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp200 ExprAST *Start, *End, *Step, *Body; member in class:__anon10099::ForExprAST
205 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
414 ExprAST *Step = 0;
417 Step = ParseExpression();
418 if (Step == 0)
430 return new ForExprAST(IdName, Start, End, Step, Body);
895 if (Step) {
896 StepVal = Step->Codegen();
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp315 ExprAST *Start, *End, *Step, *Body; member in class:__anon10101::ForExprAST
320 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
325 Step->dump(indent(out, ind) << "Step:", ind + 1);
560 ExprAST *Step = 0;
563 Step = ParseExpression();
564 if (Step == 0)
576 return new ForExprAST(IdName, Start, End, Step, Body);
1096 if (Step) {
1097 StepVal = Step
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp192 ExprAST *Start, *End, *Step, *Body; member in class:ForExprAST
196 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
388 ExprAST *Step = 0;
391 Step = ParseExpression();
392 if (Step == 0) return 0;
402 return new ForExprAST(IdName, Start, End, Step, Body);
845 if (Step) {
846 StepVal = Step->Codegen();
H A Dtoy.cpp199 ExprAST *Start, *End, *Step, *Body; member in class:ForExprAST
203 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
395 ExprAST *Step = 0;
398 Step = ParseExpression();
399 if (Step == 0) return 0;
409 return new ForExprAST(IdName, Start, End, Step, Body);
1209 if (Step) {
1210 StepVal = Step->Codegen();
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp218 ExprAST *Start, *End, *Step, *Body; member in class:ForExprAST
222 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
414 ExprAST *Step = 0;
417 Step = ParseExpression();
418 if (Step == 0) return 0;
428 return new ForExprAST(IdName, Start, End, Step, Body);
1287 if (Step) {
1288 StepVal = Step->Codegen();
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp176 ExprAST *Start, *End, *Step, *Body; member in class:ForExprAST
180 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
372 ExprAST *Step = 0;
375 Step = ParseExpression();
376 if (Step == 0) return 0;
386 return new ForExprAST(IdName, Start, End, Step, Body);
1067 if (Step) {
1068 StepVal = Step->Codegen();
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp177 ExprAST *Start, *End, *Step, *Body; member in class:ForExprAST
181 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
373 ExprAST *Step = 0;
376 Step = ParseExpression();
377 if (Step == 0) return 0;
387 return new ForExprAST(IdName, Start, End, Step, Body);
827 if (Step) {
828 StepVal = Step->Codegen();
H A Dtoy.cpp178 ExprAST *Start, *End, *Step, *Body; member in class:ForExprAST
182 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
374 ExprAST *Step = 0;
377 Step = ParseExpression();
378 if (Step == 0) return 0;
388 return new ForExprAST(IdName, Start, End, Step, Body);
1107 if (Step) {
1108 StepVal = Step->Codegen();
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
H A Dtoy.cpp189 std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step,
192 Step(std::move(Step)), Body(std::move(Body)) {}
197 std::unique_ptr<ExprAST> Start, End, Step, Body; member in struct:ForExprAST
403 std::unique_ptr<ExprAST> Step;
406 Step = ParseExpression();
407 if (!Step)
420 std::move(Step), std::move(Body));
953 if (Step) {
954 StepVal = Step
188 ForExprAST(std::string VarName, std::unique_ptr<ExprAST> Start, std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step, std::unique_ptr<ExprAST> Body) argument
[all...]
/external/llvm/examples/Kaleidoscope/Orc/initial/
H A Dtoy.cpp188 std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step,
191 Step(std::move(Step)), Body(std::move(Body)) {}
196 std::unique_ptr<ExprAST> Start, End, Step, Body; member in struct:ForExprAST
402 std::unique_ptr<ExprAST> Step;
405 Step = ParseExpression();
406 if (!Step)
419 std::move(Step), std::move(Body));
952 if (Step) {
953 StepVal = Step
187 ForExprAST(std::string VarName, std::unique_ptr<ExprAST> Start, std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step, std::unique_ptr<ExprAST> Body) argument
[all...]
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
H A Dtoy.cpp188 std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step,
191 Step(std::move(Step)), Body(std::move(Body)) {}
196 std::unique_ptr<ExprAST> Start, End, Step, Body; member in struct:ForExprAST
402 std::unique_ptr<ExprAST> Step;
405 Step = ParseExpression();
406 if (!Step)
419 std::move(Step), std::move(Body));
952 if (Step) {
953 StepVal = Step
187 ForExprAST(std::string VarName, std::unique_ptr<ExprAST> Start, std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step, std::unique_ptr<ExprAST> Body) argument
[all...]
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
H A Dtoy.cpp188 std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step,
191 Step(std::move(Step)), Body(std::move(Body)) {}
196 std::unique_ptr<ExprAST> Start, End, Step, Body; member in struct:ForExprAST
402 std::unique_ptr<ExprAST> Step;
405 Step = ParseExpression();
406 if (!Step)
419 std::move(Step), std::move(Body));
952 if (Step) {
953 StepVal = Step
187 ForExprAST(std::string VarName, std::unique_ptr<ExprAST> Start, std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step, std::unique_ptr<ExprAST> Body) argument
[all...]

Completed in 586 milliseconds

12