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

  /external/chromium_org/v8/src/
typing.cc 154 SwitchStatement::SwitchType switch_type = stmt->switch_type(); local
168 if (switch_type == SwitchStatement::UNKNOWN_SWITCH)
169 switch_type = label_switch_type;
170 else if (switch_type != label_switch_type)
171 switch_type = SwitchStatement::GENERIC_SWITCH;
193 if (switch_type == SwitchStatement::UNKNOWN_SWITCH)
194 switch_type = SwitchStatement::GENERIC_SWITCH;
195 stmt->set_switch_type(switch_type);
199 if (switch_type == SwitchStatement::SMI_SWITCH)
    [all...]
ast.h 1154 SwitchType switch_type() const { return switch_type_; } function in class:v8::internal::SwitchStatement
1155 void set_switch_type(SwitchType switch_type) { switch_type_ = switch_type; }
    [all...]
  /external/v8/src/
hydrogen.cc 2935 SwitchType switch_type = UNKNOWN_SWITCH; local
    [all...]

Completed in 1035 milliseconds