Home
last modified time | relevance | path

Searched refs:IsEval (Results 1 – 10 of 10) sorted by relevance

/third_party/node/deps/v8/tools/gcmole/
Dsuspects.allowlist2 IsEval
/third_party/node/deps/v8/include/
Dv8-debug.h87 bool IsEval() const;
/third_party/node/deps/v8/src/objects/
Dcall-site-info.h37 bool IsEval() const;
Dcall-site-info.cc44 bool CallSiteInfo::IsEval() const { in IsEval() function in v8::internal::CallSiteInfo
287 if (info->IsEval()) return isolate->factory()->eval_string(); in GetFunctionName()
303 if (name->length() == 0 && info->IsEval()) { in GetFunctionDebugName()
610 if (!script_name_or_source_url->IsString() && frame->IsEval()) { in AppendFileLocation()
/third_party/node/deps/v8/src/builtins/
Dbuiltins-callsite.cc154 return isolate->heap()->ToBoolean(frame->IsEval()); in BUILTIN()
/third_party/node/deps/v8/src/parsing/
Dpreparser.h60 bool IsEval() const { return type_ == kEvalIdentifier; } in IsEval() function
651 DCHECK(expression.IsIdentifier() && expression.AsIdentifier().IsEval());
1278 V8_INLINE bool IsEval(const PreParserIdentifier& identifier) const {
1279 return identifier.IsEval();
Dparser.h542 V8_INLINE bool IsEval(const AstRawString* identifier) const {
555 return IsEval(identifier) || IsArguments(identifier);
Dparser-base.h1462 impl()->IsEval(impl()->AsIdentifier(expression)) && !is_optional_call) { in CheckPossibleEvalCall()
/third_party/node/src/
Dnode_errors.cc197 if (stack_frame->IsEval()) { in FormatStackTrace()
/third_party/node/deps/v8/src/api/
Dapi.cc3248 bool StackFrame::IsEval() const { in IsEval() function in v8::StackFrame