OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
1157
SwitchType
switch_type
() const { return switch_type_; }
function in class:v8::internal::V8_FINAL
1158
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 59 milliseconds