HomeSort by relevance Sort by last modified time
    Searched defs:IsJump (Results 1 - 5 of 5) sorted by null

  /external/v8/src/interpreter/
bytecodes.h     [all...]
  /external/v8/src/ast/
ast.cc 169 bool Statement::IsJump() const {
180 return static_cast<const Node*>(this)->IsJump();
    [all...]
ast.h 233 bool IsJump() const;
451 bool IsJump() const {
452 return !statements_.is_empty() && statements_.last()->IsJump()
849 bool IsJump() const { return expression_->IsThrow(); }
863 bool IsJump() const { return true; }
1030 bool IsJump() const {
1031 return HasThenStatement() && then_statement()->IsJump()
1032 && HasElseStatement() && else_statement()->IsJump();
    [all...]
  /external/v8/src/mips/
assembler-mips.cc 572 bool Assembler::IsJump(Instr instr) {
    [all...]
  /external/v8/src/mips64/
assembler-mips64.cc 549 bool Assembler::IsJump(Instr instr) {
    [all...]

Completed in 269 milliseconds