Home
last modified time | relevance | path

Searched refs:fun_ (Results 1 – 3 of 3) sorted by relevance

/third_party/libabigail/tests/data/test-abidiff-exit/
Dtest-net-change.abignore2 name_regexp = ^fun_
/third_party/googletest/googlemock/include/gmock/
Dgmock-actions.h771 : fun_(ActionAdapter{::std::shared_ptr<ActionInterface<F>>(impl)}) {}
778 : fun_(action.fun_) {}
781 bool IsDoDefault() const { return fun_ == nullptr; }
793 return internal::Apply(fun_, ::std::move(args));
820 fun_ = ::std::forward<G>(g);
825 fun_ = IgnoreArgs<typename ::std::decay<G>::type>{::std::forward<G>(g)};
839 ::std::function<F> fun_;
/third_party/node/deps/v8/src/ast/
Dast.h416 FunctionLiteral* fun() const { return fun_; } in fun()
423 : Declaration(pos, kFunctionDeclaration), fun_(fun) {} in FunctionDeclaration()
425 FunctionLiteral* fun_; variable