Home
last modified time | relevance | path

Searched refs:old_value_ (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/
Dturbo-assembler.h103 : assembler_(assembler), old_value_(assembler->should_abort_hard()) { in HardAbortScope()
106 ~HardAbortScope() { assembler_->set_abort_hard(old_value_); } in ~HardAbortScope()
110 bool old_value_; variable
Dmacro-assembler.h197 : masm_(masm), old_value_(masm->root_array_available()) { in NoRootArrayScope()
201 ~NoRootArrayScope() { masm_->set_root_array_available(old_value_); } in ~NoRootArrayScope()
205 bool old_value_; variable
Dassembler.h307 : assembler_(assembler), old_value_(assembler->emit_debug_code()) { in DontEmitDebugCodeScope()
311 assembler_->set_emit_debug_code(old_value_); in ~DontEmitDebugCodeScope()
315 bool old_value_; variable
330 bool const old_value_; variable
Dassembler.cc119 old_value_(assembler->predictable_code_size()) { in PredictableCodeSizeScope()
125 assembler_->set_predictable_code_size(old_value_); in ~PredictableCodeSizeScope()
/external/libchrome/base/test/
Dscoped_environment_variable_override.cc19 was_set_ = environment_->GetVar(variable_name, &old_value_); in ScopedEnvironmentVariableOverride()
26 environment_->SetVar(variable_name_, old_value_); in ~ScopedEnvironmentVariableOverride()
Dscoped_environment_variable_override.h34 std::string old_value_; variable