Lines Matching defs:mode
191 static PropertyAttributes GetAttributesForMode(VariableMode mode) {
192 DCHECK(IsSerializableVariableMode(mode));
193 return IsConstVariableMode(mode) ? READ_ONLY : NONE;
254 *variable_mode = r.mode;
256 *attributes = GetAttributesForMode(r.mode);
330 PrintF("=> found local in context slot %d (mode = %hhu)\n",
331 slot_index, static_cast<uint8_t>(lookup_result.mode));
334 *variable_mode = lookup_result.mode;
336 *attributes = GetAttributesForMode(lookup_result.mode);
364 VariableMode mode;
368 scope_info.ModuleIndex(*name, &mode, &flag, &maybe_assigned_flag);
374 *variable_mode = mode;
378 ? GetAttributesForMode(mode)
503 void Context::set_extension(HeapObject object, WriteBarrierMode mode) {
508 set(EXTENSION_INDEX, object, mode);