Lines Matching refs:name
174 void SharedFunctionInfo::SetName(String name) {
177 ScopeInfo::cast(maybe_scope_info).SetFunctionName(name);
181 set_name_or_scope_info(name, kReleaseStore);
428 // Move the existing name onto the ScopeInfo.
429 Object name = name_or_scope_info(kAcquireLoad);
430 if (name.IsScopeInfo()) {
431 name = ScopeInfo::cast(name).FunctionName();
433 DCHECK(name.IsString() || name == kNoSharedNameSentinel);
434 // Only set the function name for function scopes.
435 scope_info.SetFunctionName(name);
909 Object name = scope_info.InferredFunctionName();
910 if (name.IsString()) return String::cast(name);