Home
last modified time | relevance | path

Searched refs:maybe_func (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/builtins/
Dbuiltins-function.cc149 Handle<Object> maybe_func; in BUILTIN() local
151 isolate, maybe_func, in BUILTIN()
153 if (!maybe_func->IsJSFunction()) return *maybe_func; in BUILTIN()
157 Handle<JSFunction> func = Handle<JSFunction>::cast(maybe_func); in BUILTIN()
168 Handle<Object> maybe_func; in BUILTIN() local
170 isolate, maybe_func, in BUILTIN()
172 if (!maybe_func->IsJSFunction()) return *maybe_func; in BUILTIN()
176 Handle<JSFunction> func = Handle<JSFunction>::cast(maybe_func); in BUILTIN()
Dbuiltins-string-gen.cc930 const TNode<Object> maybe_func = GetProperty(context, object, symbol); in MaybeCallFunctionAtSymbol() local
931 GotoIf(IsUndefined(maybe_func), &out); in MaybeCallFunctionAtSymbol()
932 GotoIf(IsNull(maybe_func), &out); in MaybeCallFunctionAtSymbol()
935 generic_call(maybe_func); in MaybeCallFunctionAtSymbol()
/third_party/node/deps/v8/tools/system-analyzer/
Dprocessor.mjs318 processCodeCreation(type, kind, timestamp, start, size, name, maybe_func) { argument
322 if (maybe_func.length) {
323 const funcAddr = parseInt(maybe_func[0]);
324 stateName = maybe_func[1] ?? '';
325 const state = Profile.parseState(maybe_func[1]);
/third_party/node/deps/v8/tools/
Dtickprocessor.mjs728 processCodeCreation(type, kind, timestamp, start, size, name, maybe_func) { argument
729 if (type != 'RegExp' && maybe_func.length) {
730 const funcAddr = parseInt(maybe_func[0]);
731 const state = Profile.parseState(maybe_func[1]);