Home
last modified time | relevance | path

Searched refs:Callable (Results 1 – 25 of 6195) sorted by relevance

12345678910>>...248

/dports/www/node10/node-v10.24.1/deps/v8/src/
H A Dcode-factory.h35 static Callable StoreOwnIC(Isolate* isolate);
45 static Callable ApiGetter(Isolate* isolate);
51 static Callable NonPrimitiveToPrimitive(
56 static Callable StringAdd(Isolate* isolate,
64 static Callable Call(Isolate* isolate,
68 static Callable CallFunction(
70 static Callable CallVarargs(Isolate* isolate);
73 static Callable Construct(Isolate* isolate);
89 static Callable ArrayPop(Isolate* isolate);
90 static Callable ArrayPush(Isolate* isolate);
[all …]
H A Dcode-factory.cc19 Callable make_callable(Stub& stub) { in make_callable()
72 Callable CodeFactory::ApiGetter(Isolate* isolate) { in ApiGetter()
85 return Callable( in LoadGlobalIC()
95 return Callable(typeof_mode == NOT_INSIDE_TYPEOF in LoadGlobalICInOptimizedCode()
101 Callable CodeFactory::StoreOwnIC(Isolate* isolate) { in StoreOwnIC()
111 return Callable(BUILTIN_CODE(isolate, StoreIC), in StoreOwnICInOptimizedCode()
218 return Callable(isolate->builtins()->Call(mode), in Call()
259 Callable CodeFactory::Construct(Isolate* isolate) { in Construct()
295 Callable CodeFactory::InterpreterPushArgsThenCall( in InterpreterPushArgsThenCall()
298 return Callable( in InterpreterPushArgsThenCall()
[all …]
/dports/devel/py-rx/Rx-3.2.0/rx/core/
H A Dpipe.py39 def pipe(op1: Callable[[A], B]) -> Callable[[A], B]: # pylint: disable=function-redefined
44 def pipe(op1: Callable[[A], B], op2: Callable[[B], C]) -> Callable[[A], C]: # pylint: disable=func…
50 op2: Callable[[B], C],
51 op3: Callable[[C], D]
52 ) -> Callable[[A], D]:
58 op2: Callable[[B], C],
59 op3: Callable[[C], D],
60 op4: Callable[[D], E]
70 op5: Callable[[E], F]
81 op6: Callable[[F], G]
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/codegen/
H A Dcode-factory.h40 static Callable StoreOwnIC(Isolate* isolate);
50 static Callable ResumeGenerator(Isolate* isolate);
57 static Callable ApiGetter(Isolate* isolate);
60 static Callable NonPrimitiveToPrimitive(
65 static Callable StringAdd(Isolate* isolate,
72 static Callable Call(Isolate* isolate,
76 static Callable CallFunction(
78 static Callable CallVarargs(Isolate* isolate);
81 static Callable Construct(Isolate* isolate);
96 static Callable ArrayNoArgumentConstructor(
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/codegen/
H A Dcode-factory.h40 static Callable StoreOwnIC(Isolate* isolate);
50 static Callable ResumeGenerator(Isolate* isolate);
57 static Callable ApiGetter(Isolate* isolate);
60 static Callable NonPrimitiveToPrimitive(
65 static Callable StringAdd(Isolate* isolate,
72 static Callable Call(Isolate* isolate,
77 static Callable CallFunction(
79 static Callable CallVarargs(Isolate* isolate);
82 static Callable Construct(Isolate* isolate);
97 static Callable ArrayNoArgumentConstructor(
[all …]
/dports/lang/v8/v8-9.6.180.12/src/codegen/
H A Dcode-factory.h40 static Callable StoreOwnIC(Isolate* isolate);
43 static Callable ResumeGenerator(Isolate* isolate);
45 static Callable ApiGetter(Isolate* isolate);
48 static Callable NonPrimitiveToPrimitive(
53 static Callable StringAdd(Isolate* isolate,
59 static Callable Call(Isolate* isolate,
64 static Callable CallFunction(
66 static Callable CallVarargs(Isolate* isolate);
69 static Callable Construct(Isolate* isolate);
85 static Callable ArrayNoArgumentConstructor(
[all …]
/dports/devel/py-rx/Rx-3.2.0/rx/operators/
H A D__init__.py133 def buffer_when(closing_mapper: Callable[[], Observable]) -> Callable[[Observable], Observable]: argument
299 ) -> Callable[[Observable], Observable]:
582 ) -> Callable[[Observable], Observable]:
926 def finally_action(action: Callable) -> Callable[[Observable], Observable]: argument
1371 ) -> Callable[[Observable], Observable]:
1604 ) -> Callable[[Observable], Observable]:
2218 def share() -> Callable[[Observable], Observable]:
2560 ) -> Callable[[Observable], Observable]:
3102 def throttle_with_mapper(throttle_duration_mapper: Callable[[Any], Observable]) -> Callable[[Observ…
3255 def to_future(future_ctor: Optional[Callable[[], Future]] = None) -> Callable[[Observable], Future]: argument
[all …]
/dports/devel/py-grpcio/grpcio-1.43.0/src/core/lib/promise/
H A Darena_promise.h67 template <typename T, typename Callable>
80 Callable callable_;
90 template <typename T, typename Callable>
109 : Callable(std::forward<Callable>(callable)) {} in SharedImpl()
118 template <typename T, typename Callable>
120 T, Callable, absl::enable_if_t<!std::is_empty<Callable>::value>> {
127 template <typename T, typename Callable>
129 T, Callable, absl::enable_if_t<std::is_empty<Callable>::value>> {
131 return SharedImpl<T, Callable>::Get(std::forward<Callable>(callable));
136 template <typename T, typename Callable>
[all …]
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stdlib/
H A Dfunctools.pyi5 Callable,
26 _AnyCallable = Callable[..., Any]
43 __wrapped__: Callable[..., _T]
63 def cmp_to_key(mycmp: Callable[[_T, _T], int]) -> Callable[[_T], SupportsLessThan]: ...
66 func: Callable[..., _T]
97 …def register(self, cls: Type[Any], func: None = ...) -> Callable[[Callable[..., _T]], Callable[...…
101 def register(self, cls: Callable[..., _T], func: None = ...) -> Callable[..., _T]: ...
104 def register(self, cls: Type[Any], func: Callable[..., _T]) -> Callable[..., _T]: ...
113 func: Callable[..., _T]
116 …ef register(self, cls: Type[Any], method: None = ...) -> Callable[[Callable[..., _T]], Callable[..…
[all …]
/dports/devel/py-mypy/mypy-0.910/mypy/typeshed/stdlib/
H A Dfunctools.pyi5 Callable,
26 _AnyCallable = Callable[..., Any]
43 __wrapped__: Callable[..., _T]
63 def cmp_to_key(mycmp: Callable[[_T, _T], int]) -> Callable[[_T], SupportsLessThan]: ...
66 func: Callable[..., _T]
97 …def register(self, cls: Type[Any], func: None = ...) -> Callable[[Callable[..., _T]], Callable[...…
101 def register(self, cls: Callable[..., _T], func: None = ...) -> Callable[..., _T]: ...
104 def register(self, cls: Type[Any], func: Callable[..., _T]) -> Callable[..., _T]: ...
113 func: Callable[..., _T]
116 …ef register(self, cls: Type[Any], method: None = ...) -> Callable[[Callable[..., _T]], Callable[..…
[all …]
/dports/devel/rapidcheck/rapidcheck-7bc7d30/include/rapidcheck/gen/detail/
H A DExecRaw.hpp11 template <typename Callable>
12 rc::detail::ReturnType<Callable> execWithArguments(const Callable &callable, in execWithArguments()
17 template <typename Callable, typename... Args>
18 rc::detail::ReturnType<Callable>
24 template <typename Callable>
26 execWithRecipe(Callable callable, Recipe recipe) { in execWithRecipe()
36 template <typename Callable>
45 template <typename Callable>
48 using T = rc::detail::ReturnType<Callable>; in shrinkableWithRecipe()
56 template <typename Callable>
[all …]
/dports/science/jdftx/jdftx-1.6.0/fluid1D/core/
H A DThread.h68 template<typename Callable,typename ... Args>
75 template<typename Callable,typename ... Args>
90 template<typename Callable,typename ... Args>
104 template<typename Callable,typename ... Args>
125 template<typename Callable,typename ... Args>
135 template<typename Callable,typename ... Args>
146 template<typename Callable,typename ... Args>
163 template<typename Callable,typename ... Args>
169 template<typename Callable,typename ... Args>
183 template<typename Callable,typename ... Args>
[all …]
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/typeshed/stdlib/3/
H A Dfunctools.pyi4 _AnyCallable = Callable[..., Any]
10 def reduce(function: Callable[[_T, _S], _T],
23 __wrapped__: Callable[..., _T]
43 def cmp_to_key(mycmp: Callable[[_T, _T], int]) -> Callable[[_T], Any]: ...
46 func: Callable[..., _T]
72 def register(self, cls: Any) -> Callable[[Callable[..., _T]], Callable[..., _T]]: ...
74 def register(self, cls: Any, func: Callable[..., _T]) -> Callable[..., _T]: ...
83 func: Callable[..., _T]
86 …def register(self, cls: Any, method: None = ...) -> Callable[[Callable[..., _T]], Callable[..., _T…
88 def register(self, cls: Any, method: Callable[..., _T]) -> Callable[..., _T]: ...
[all …]
/dports/devel/py-rx/Rx-3.2.0/rx/core/observable/
H A Dobservable.py202 op2: Callable[[A], B],
209 op2: Callable[[A], B],
210 op3: Callable[[B], C],
217 op2: Callable[[A], B],
218 op3: Callable[[B], C],
219 op4: Callable[[C], D],
226 op2: Callable[[A], B],
227 op3: Callable[[B], C],
228 op4: Callable[[C], D],
229 op5: Callable[[D], E],
[all …]
/dports/science/jdftx/jdftx-1.6.0/jdftx/core/
H A DThread.h68 template<typename Callable,typename ... Args>
75 template<typename Callable,typename ... Args>
76 void threadLaunch(Callable* func, size_t nJobs, Args... args);
96 template<typename Callable,typename ... Args>
106 template<typename Callable,typename ... Args>
117 template<typename Callable,typename ... Args>
136 template<typename Callable,typename ... Args>
142 template<typename Callable,typename ... Args>
146 template<typename Callable,typename ... Args>
151 template<typename Callable,typename ... Args>
[all …]
/dports/devel/rapidcheck/rapidcheck-7bc7d30/include/rapidcheck/detail/
H A DApplyTuple.h9 typename Callable,
14 template <typename... Ts, std::size_t... Indexes, typename Callable>
16 using ReturnType = typename std::result_of<Callable(Ts &&...)>::type;
23 template <typename... Ts, std::size_t... Indexes, typename Callable>
25 Callable,
34 template <typename... Ts, std::size_t... Indexes, typename Callable>
36 Callable,
46 template <typename TupleT, typename Callable>
47 typename ApplyTupleImpl<TupleT, Callable>::ReturnType
48 applyTuple(TupleT &&tuple, Callable &&callable) {
[all …]
/dports/devel/py-jedi/jedi-0.18.0/jedi/third_party/typeshed/stdlib/3/
H A Dfunctools.pyi4 _AnyCallable = Callable[..., Any]
10 def reduce(function: Callable[[_T, _S], _T],
13 def reduce(function: Callable[[_T, _T], _T],
23 __wrapped__: Callable[..., _T]
30 …def lru_cache(maxsize: Optional[int] = ..., typed: bool = ...) -> Callable[[Callable[..., _T]], _l…
43 def cmp_to_key(mycmp: Callable[[_T, _T], int]) -> Callable[[_T], Any]: ...
46 func: Callable[..., _T]
69 registry: Mapping[Any, Callable[..., _T]]
72 def register(self, cls: Any) -> Callable[[Callable[..., _T]], Callable[..., _T]]: ...
74 def register(self, cls: Any, func: Callable[..., _T]) -> Callable[..., _T]: ...
[all …]
/dports/devel/pytype/pytype-2021.9.9/pytype/stubs/builtins/attr/
H A D__init__.pytd30 dataclass: Callable
60 def partial(__func: Callable[[_T], _S], __arg: _T) -> Callable[[], _S]: ...
62 def partial(__func: Callable[[_T, _T2], _S], __arg: _T) -> Callable[[_T2], _S]: ...
64 def partial(__func: Callable[[_T, _T2], _S], __arg1: _T, __arg2: _T2) -> Callable[[], _S]: ...
66 def partial(__func: Callable[[_T, _T2, _T3], _S], __arg: _T) -> Callable[[_T2, _T3], _S]: ...
68 def partial(__func: Callable[[_T, _T2, _T3], _S], __arg1: _T, __arg2: _T2) -> Callable[[_T3], _S]: …
70 def partial(__func: Callable[[_T, _T2, _T3], _S], __arg1: _T, __arg2: _T2, __arg3: _T3) -> Callable
72 def partial(__func: Callable[[_T, _T2, _T3, _T4], _S], __arg: _T) -> Callable[[_T2, _T3, _T4], _S]:…
74 def partial(__func: Callable[[_T, _T2, _T3, _T4], _S], __arg1: _T, __arg2: _T2) -> Callable[[_T3, _…
80 def partial(__func: Callable[[_T, _T2, _T3, _T4, _T5], _S], __arg: _T) -> Callable[[_T2, _T3, _T4, …
[all …]
/dports/devel/py-orange-canvas-core/orange-canvas-core-0.1.20/orangecanvas/utils/
H A Dqinvoke.py1 from typing import TypeVar, Callable, overload, Optional
26 func: Callable[[], A], context: QObject, argument
28 ) -> Callable[[], None]: ...
35 ) -> Callable[[T1], None]: ...
42 ) -> Callable[[T1, T2], None]: ...
49 ) -> Callable[[T1, T2, T3], None]: ...
56 ) -> Callable[[T1, T2, T3, T4], None]: ...
63 ) -> Callable[[T1, T2, T3, T4, T5], None]: ...
76 ) -> Callable[[Callable[..., A]], Callable[..., None]]: ...
102 def decorator(func: Callable[..., A]) -> Callable[..., None]: argument
[all …]
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/lib_base/base/
H A Dunique_function.h19 template <typename Callable>
23 std::is_move_constructible_v<Callable>,
63 Callable _value;
90 typename Callable,
96 unique_function(Callable &&other) in unique_function()
98 std::forward<Callable>(other), in unique_function()
103 typename Callable,
115 std::forward<Callable>(other));
156 template <typename Callable>
161 template <typename Callable>
[all …]
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/typeshed/stdlib/2and3/pyexpat/
H A D__init__.pyi49 EndDoctypeDeclHandler: Optional[Callable[[], Any]]
53 Callable[[str, Dict[str, str]], Any],
54 Callable[[str, List[str]], Any],
56 EndElementHandler: Optional[Callable[[str], Any]]
58 CharacterDataHandler: Optional[Callable[[str], Any]]
64 CommentHandler: Optional[Callable[[str], Any]]
65 StartCdataSectionHandler: Optional[Callable[[], Any]]
66 EndCdataSectionHandler: Optional[Callable[[], Any]]
67 DefaultHandler: Optional[Callable[[str], Any]]
68 DefaultHandlerExpand: Optional[Callable[[str], Any]]
[all …]
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stdlib/@python2/pyexpat/
H A D__init__.pyi48 EndDoctypeDeclHandler: Optional[Callable[[], Any]]
53 Callable[[str, Dict[str, str]], Any],
54 Callable[[str, List[str]], Any],
58 EndElementHandler: Optional[Callable[[str], Any]]
60 CharacterDataHandler: Optional[Callable[[str], Any]]
66 CommentHandler: Optional[Callable[[str], Any]]
67 StartCdataSectionHandler: Optional[Callable[[], Any]]
68 EndCdataSectionHandler: Optional[Callable[[], Any]]
69 DefaultHandler: Optional[Callable[[str], Any]]
70 DefaultHandlerExpand: Optional[Callable[[str], Any]]
[all …]
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stdlib/pyexpat/
H A D__init__.pyi48 EndDoctypeDeclHandler: Optional[Callable[[], Any]]
53 Callable[[str, Dict[str, str]], Any],
54 Callable[[str, List[str]], Any],
58 EndElementHandler: Optional[Callable[[str], Any]]
60 CharacterDataHandler: Optional[Callable[[str], Any]]
66 CommentHandler: Optional[Callable[[str], Any]]
67 StartCdataSectionHandler: Optional[Callable[[], Any]]
68 EndCdataSectionHandler: Optional[Callable[[], Any]]
69 DefaultHandler: Optional[Callable[[str], Any]]
70 DefaultHandlerExpand: Optional[Callable[[str], Any]]
[all …]
/dports/devel/py-jedi/jedi-0.18.0/jedi/third_party/typeshed/stdlib/2and3/pyexpat/
H A D__init__.pyi51 EndDoctypeDeclHandler: Optional[Callable[[], Any]]
55 Callable[[str, Dict[str, str]], Any],
56 Callable[[str, List[str]], Any],
58 EndElementHandler: Optional[Callable[[str], Any]]
60 CharacterDataHandler: Optional[Callable[[str], Any]]
66 CommentHandler: Optional[Callable[[str], Any]]
67 StartCdataSectionHandler: Optional[Callable[[], Any]]
68 EndCdataSectionHandler: Optional[Callable[[], Any]]
69 DefaultHandler: Optional[Callable[[str], Any]]
70 DefaultHandlerExpand: Optional[Callable[[str], Any]]
[all …]
/dports/devel/py-mypy/mypy-0.910/mypy/typeshed/stdlib/pyexpat/
H A D__init__.pyi48 EndDoctypeDeclHandler: Optional[Callable[[], Any]]
53 Callable[[str, Dict[str, str]], Any],
54 Callable[[str, List[str]], Any],
58 EndElementHandler: Optional[Callable[[str], Any]]
60 CharacterDataHandler: Optional[Callable[[str], Any]]
66 CommentHandler: Optional[Callable[[str], Any]]
67 StartCdataSectionHandler: Optional[Callable[[], Any]]
68 EndCdataSectionHandler: Optional[Callable[[], Any]]
69 DefaultHandler: Optional[Callable[[str], Any]]
70 DefaultHandlerExpand: Optional[Callable[[str], Any]]
[all …]

12345678910>>...248