HomeSort by relevance Sort by last modified time
    Searched full:_fn (Results 26 - 50 of 162) sorted by null

12 3 4 5 6 7

  /prebuilts/clang/host/linux-x86/clang-4393122/include/c++/v1/experimental/
tuple 58 template <class _Fn, class _Tuple, size_t ..._Id>
61 decltype(auto) __apply_tuple_impl(_Fn && __f, _Tuple && __t,
64 _VSTD::forward<_Fn>(__f),
69 template <class _Fn, class _Tuple>
71 decltype(auto) apply(_Fn && __f, _Tuple && __t) {
73 _VSTD::forward<_Fn>(__f), _VSTD::forward<_Tuple>(__t),
  /prebuilts/clang/host/linux-x86/clang-4479392/include/c++/v1/experimental/
tuple 58 template <class _Fn, class _Tuple, size_t ..._Id>
61 decltype(auto) __apply_tuple_impl(_Fn && __f, _Tuple && __t,
64 _VSTD::forward<_Fn>(__f),
69 template <class _Fn, class _Tuple>
71 decltype(auto) apply(_Fn && __f, _Tuple && __t) {
73 _VSTD::forward<_Fn>(__f), _VSTD::forward<_Tuple>(__t),
  /prebuilts/clang/host/linux-x86/clang-4579689/include/c++/v1/experimental/
tuple 58 template <class _Fn, class _Tuple, size_t ..._Id>
61 decltype(auto) __apply_tuple_impl(_Fn && __f, _Tuple && __t,
64 _VSTD::forward<_Fn>(__f),
69 template <class _Fn, class _Tuple>
71 decltype(auto) apply(_Fn && __f, _Tuple && __t) {
73 _VSTD::forward<_Fn>(__f), _VSTD::forward<_Tuple>(__t),
  /prebuilts/clang/host/linux-x86/clang-4630689/include/c++/v1/experimental/
tuple 58 template <class _Fn, class _Tuple, size_t ..._Id>
61 decltype(auto) __apply_tuple_impl(_Fn && __f, _Tuple && __t,
64 _VSTD::forward<_Fn>(__f),
69 template <class _Fn, class _Tuple>
71 decltype(auto) apply(_Fn && __f, _Tuple && __t) {
73 _VSTD::forward<_Fn>(__f), _VSTD::forward<_Tuple>(__t),
  /prebuilts/clang/host/linux-x86/clang-4639204/include/c++/v1/experimental/
tuple 58 template <class _Fn, class _Tuple, size_t ..._Id>
61 decltype(auto) __apply_tuple_impl(_Fn && __f, _Tuple && __t,
64 _VSTD::forward<_Fn>(__f),
69 template <class _Fn, class _Tuple>
71 decltype(auto) apply(_Fn && __f, _Tuple && __t) {
73 _VSTD::forward<_Fn>(__f), _VSTD::forward<_Tuple>(__t),
  /prebuilts/clang/host/linux-x86/clang-4691093/include/c++/v1/experimental/
tuple 58 template <class _Fn, class _Tuple, size_t ..._Id>
61 decltype(auto) __apply_tuple_impl(_Fn && __f, _Tuple && __t,
64 _VSTD::forward<_Fn>(__f),
69 template <class _Fn, class _Tuple>
71 decltype(auto) apply(_Fn && __f, _Tuple && __t) {
73 _VSTD::forward<_Fn>(__f), _VSTD::forward<_Tuple>(__t),
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/include/experimental/
tuple 58 template <class _Fn, class _Tuple, size_t ..._Id>
61 decltype(auto) __apply_tuple_impl(_Fn && __f, _Tuple && __t,
64 _VSTD::forward<_Fn>(__f),
69 template <class _Fn, class _Tuple>
71 decltype(auto) apply(_Fn && __f, _Tuple && __t) {
73 _VSTD::forward<_Fn>(__f), _VSTD::forward<_Tuple>(__t),
  /external/tensorflow/tensorflow/contrib/learn/python/learn/
metric_spec_test.py 67 def _fn(): function in function:MetricSpecTest.test_no_args
70 spec = MetricSpec(metric_fn=_fn)
80 def _fn(**kwargs): function in function:MetricSpecTest.test_kwargs
84 spec = MetricSpec(metric_fn=_fn)
93 def _fn(labels): function in function:MetricSpecTest.test_named_labels_no_predictions
97 spec = MetricSpec(metric_fn=_fn)
106 def _fn(labels, **kwargs): function in function:MetricSpecTest.test_named_labels_no_predictions_with_kwargs
111 spec = MetricSpec(metric_fn=_fn)
120 def _fn(labels, predictions_by_another_name): function in function:MetricSpecTest.test_no_named_predictions_named_labels_first_arg
125 spec = MetricSpec(metric_fn=_fn)
135 def _fn(predictions_by_another_name, labels): function in function:MetricSpecTest.test_no_named_predictions_named_labels_second_arg
150 def _fn(predictions): function in function:MetricSpecTest.test_no_named_labels
164 def _fn(a): function in function:MetricSpecTest.test_no_named_labels_or_predictions_1arg
178 def _fn(a, b): function in function:MetricSpecTest.test_no_named_labels_or_predictions_2args
222 def _fn(predictions, labels, weights=None): function in function:MetricSpecTest.test_predictions_dict_no_key
238 def _fn(labels, predictions, weights=None): function in function:MetricSpecTest.test_labels_dict_no_key
254 def _fn(predictions, labels, weights=None): function in function:MetricSpecTest.test_single_prediction
270 def _fn(predictions, labels, weights=None): function in function:MetricSpecTest.test_single_label
286 def _fn(predictions, labels, weights=None): function in function:MetricSpecTest.test_single_predictions_with_key
302 def _fn(predictions, labels, weights=None): function in function:MetricSpecTest.test_single_labels_with_key
417 def _fn(predictions, prediction, labels): function in function:MetricSpecTest.test_multiple_prediction_args
425 def _fn(predictions, labels, weights=None, weight=None): function in function:MetricSpecTest.test_multiple_weight_args
    [all...]
  /external/kmod/testsuite/
path.c 106 static rettype (*_fn)(const char*); \
110 _fn = get_libc_func(#name); \
114 return (*_fn)(p); \
123 static rettype (*_fn)(const char*, arg2t arg2); \
127 _fn = get_libc_func(#name); \
131 return (*_fn)(p, arg2); \
140 static int (*_fn)(const char *path, int flags, ...); \
144 _fn = get_libc_func("open" #suffix); \
156 return _fn(p, flags, mode); \
159 return _fn(p, flags);
    [all...]
  /external/tensorflow/tensorflow/contrib/framework/python/framework/
experimental_test.py 33 def _fn(arg0, arg1): function in function:ExperimentalTest.test_warning
46 self.assertEqual("_fn", _fn.__name__)
58 "\n Sum of args.", _fn.__doc__)
61 self.assertEqual(3, _fn(1, 2))
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmdefs.h 53 #define _fn _fn macro
55 #define BCMPREATTACHFN(_fn) _fn
57 #define _fn _fn macro
58 #define _fn _fn macro
59 #define BCMNMIATTACHFN(_fn) _fn
81 #define _fn macro
82 #define _fn macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
future 169 template<typename _Fn, typename... _Args>
170 future<typename result_of<_Fn(_Args...)>::type>
171 async(launch __policy, _Fn&& __fn, _Args&&... __args);
173 template<typename _Fn, typename... _Args>
174 future<typename result_of<_Fn(_Args...)>::type>
175 async(_Fn&& __fn, _Args&&... __args);
495 template<typename _Fn, typename _Alloc, typename _Signature>
643 template<typename _Fn, typename... _Args>
644 friend future<typename result_of<_Fn(_Args...)>::type>
645 async(launch, _Fn&&, _Args&&...)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
future 169 template<typename _Fn, typename... _Args>
170 future<typename result_of<_Fn(_Args...)>::type>
171 async(launch __policy, _Fn&& __fn, _Args&&... __args);
173 template<typename _Fn, typename... _Args>
174 future<typename result_of<_Fn(_Args...)>::type>
175 async(_Fn&& __fn, _Args&&... __args);
495 template<typename _Fn, typename _Alloc, typename _Signature>
643 template<typename _Fn, typename... _Args>
644 friend future<typename result_of<_Fn(_Args...)>::type>
645 async(launch, _Fn&&, _Args&&...)
    [all...]
  /external/libcxx/include/
__functional_base 321 template <class _Fn>
322 static _Ret __call(_Fn __f) {
326 template <class _Fn, class _A0>
327 static _Ret __call(_Fn __f, _A0& __a0) {
331 template <class _Fn, class _A0, class _A1>
332 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1) {
336 template <class _Fn, class _A0, class _A1, class _A2>
337 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2){
352 template <class _Fn>
353 static void __call(_Fn __f)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
__functional_base 325 template <class _Fn>
326 static _Ret __call(_Fn __f) {
330 template <class _Fn, class _A0>
331 static _Ret __call(_Fn __f, _A0& __a0) {
335 template <class _Fn, class _A0, class _A1>
336 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1) {
340 template <class _Fn, class _A0, class _A1, class _A2>
341 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2){
356 template <class _Fn>
357 static void __call(_Fn __f)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/c++/v1/
__functional_base 321 template <class _Fn>
322 static _Ret __call(_Fn __f) {
326 template <class _Fn, class _A0>
327 static _Ret __call(_Fn __f, _A0& __a0) {
331 template <class _Fn, class _A0, class _A1>
332 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1) {
336 template <class _Fn, class _A0, class _A1, class _A2>
337 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2){
352 template <class _Fn>
353 static void __call(_Fn __f)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/c++/v1/
__functional_base 321 template <class _Fn>
322 static _Ret __call(_Fn __f) {
326 template <class _Fn, class _A0>
327 static _Ret __call(_Fn __f, _A0& __a0) {
331 template <class _Fn, class _A0, class _A1>
332 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1) {
336 template <class _Fn, class _A0, class _A1, class _A2>
337 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2){
352 template <class _Fn>
353 static void __call(_Fn __f)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/c++/v1/
__functional_base 321 template <class _Fn>
322 static _Ret __call(_Fn __f) {
326 template <class _Fn, class _A0>
327 static _Ret __call(_Fn __f, _A0& __a0) {
331 template <class _Fn, class _A0, class _A1>
332 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1) {
336 template <class _Fn, class _A0, class _A1, class _A2>
337 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2){
352 template <class _Fn>
353 static void __call(_Fn __f)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/c++/v1/
__functional_base 321 template <class _Fn>
322 static _Ret __call(_Fn __f) {
326 template <class _Fn, class _A0>
327 static _Ret __call(_Fn __f, _A0& __a0) {
331 template <class _Fn, class _A0, class _A1>
332 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1) {
336 template <class _Fn, class _A0, class _A1, class _A2>
337 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2){
352 template <class _Fn>
353 static void __call(_Fn __f)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/c++/v1/
__functional_base 321 template <class _Fn>
322 static _Ret __call(_Fn __f) {
326 template <class _Fn, class _A0>
327 static _Ret __call(_Fn __f, _A0& __a0) {
331 template <class _Fn, class _A0, class _A1>
332 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1) {
336 template <class _Fn, class _A0, class _A1, class _A2>
337 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2){
352 template <class _Fn>
353 static void __call(_Fn __f)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/c++/v1/
__functional_base 321 template <class _Fn>
322 static _Ret __call(_Fn __f) {
326 template <class _Fn, class _A0>
327 static _Ret __call(_Fn __f, _A0& __a0) {
331 template <class _Fn, class _A0, class _A1>
332 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1) {
336 template <class _Fn, class _A0, class _A1, class _A2>
337 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2){
352 template <class _Fn>
353 static void __call(_Fn __f)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/
__functional_base 325 template <class _Fn>
326 static _Ret __call(_Fn __f) {
330 template <class _Fn, class _A0>
331 static _Ret __call(_Fn __f, _A0& __a0) {
335 template <class _Fn, class _A0, class _A1>
336 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1) {
340 template <class _Fn, class _A0, class _A1, class _A2>
341 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2){
356 template <class _Fn>
357 static void __call(_Fn __f)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/c++/v1/
__functional_base 321 template <class _Fn>
322 static _Ret __call(_Fn __f) {
326 template <class _Fn, class _A0>
327 static _Ret __call(_Fn __f, _A0& __a0) {
331 template <class _Fn, class _A0, class _A1>
332 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1) {
336 template <class _Fn, class _A0, class _A1, class _A2>
337 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2){
352 template <class _Fn>
353 static void __call(_Fn __f)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/c++/v1/
__functional_base 321 template <class _Fn>
322 static _Ret __call(_Fn __f) {
326 template <class _Fn, class _A0>
327 static _Ret __call(_Fn __f, _A0& __a0) {
331 template <class _Fn, class _A0, class _A1>
332 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1) {
336 template <class _Fn, class _A0, class _A1, class _A2>
337 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2){
352 template <class _Fn>
353 static void __call(_Fn __f)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/c++/v1/
__functional_base 321 template <class _Fn>
322 static _Ret __call(_Fn __f) {
326 template <class _Fn, class _A0>
327 static _Ret __call(_Fn __f, _A0& __a0) {
331 template <class _Fn, class _A0, class _A1>
332 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1) {
336 template <class _Fn, class _A0, class _A1, class _A2>
337 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2){
352 template <class _Fn>
353 static void __call(_Fn __f)
    [all...]

Completed in 622 milliseconds

12 3 4 5 6 7