HomeSort by relevance Sort by last modified time
    Searched full:forward (Results 401 - 425 of 10576) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-4639204/include/c++/v1/
variant 377 return _VSTD::forward<_Vp>(__v).__head;
383 return __get_alt(_VSTD::forward<_Vp>(__v).__tail, in_place_index<_Ip - 1>);
391 return __union::__get_alt(_VSTD::forward<_Vp>(__v).__data,
400 return __base::__get_alt<_Ip>(_VSTD::forward<_Vp>(__v).__impl);
415 decltype(_VSTD::forward<_Vs>(__vs).__as_base())...>();
416 return __fdiagonal[__index](_VSTD::forward<_Visitor>(__visitor),
417 _VSTD::forward<_Vs>(__vs).__as_base()...);
426 decltype(_VSTD::forward<_Vs>(__vs).__as_base())...>();
428 _VSTD::forward<_Visitor>(__visitor),
429 _VSTD::forward<_Vs>(__vs).__as_base()...)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/c++/v1/
variant 377 return _VSTD::forward<_Vp>(__v).__head;
383 return __get_alt(_VSTD::forward<_Vp>(__v).__tail, in_place_index<_Ip - 1>);
391 return __union::__get_alt(_VSTD::forward<_Vp>(__v).__data,
400 return __base::__get_alt<_Ip>(_VSTD::forward<_Vp>(__v).__impl);
415 decltype(_VSTD::forward<_Vs>(__vs).__as_base())...>();
416 return __fdiagonal[__index](_VSTD::forward<_Visitor>(__visitor),
417 _VSTD::forward<_Vs>(__vs).__as_base()...);
426 decltype(_VSTD::forward<_Vs>(__vs).__as_base())...>();
428 _VSTD::forward<_Visitor>(__visitor),
429 _VSTD::forward<_Vs>(__vs).__as_base()...)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/include/
variant 377 return _VSTD::forward<_Vp>(__v).__head;
383 return __get_alt(_VSTD::forward<_Vp>(__v).__tail, in_place_index<_Ip - 1>);
391 return __union::__get_alt(_VSTD::forward<_Vp>(__v).__data,
400 return __base::__get_alt<_Ip>(_VSTD::forward<_Vp>(__v).__impl);
415 decltype(_VSTD::forward<_Vs>(__vs).__as_base())...>();
416 return __fdiagonal[__index](_VSTD::forward<_Visitor>(__visitor),
417 _VSTD::forward<_Vs>(__vs).__as_base()...);
426 decltype(_VSTD::forward<_Vs>(__vs).__as_base())...>();
428 _VSTD::forward<_Visitor>(__visitor),
429 _VSTD::forward<_Vs>(__vs).__as_base()...)
    [all...]
  /external/libchrome/base/
tuple.h 60 return std::forward<ElemType>(std::get<I>(t));
91 (obj->*method)(base::get<Ns>(std::forward<Tuple>(args))...);
98 DispatchToMethodImpl(obj, method, std::forward<Tuple>(args),
108 (*function)(base::get<Ns>(std::forward<Tuple>(args))...);
113 DispatchToFunctionImpl(function, std::forward<Tuple>(args),
131 (obj->*method)(base::get<InNs>(std::forward<InTuple>(in))...,
140 DispatchToMethodImpl(obj, method, std::forward<InTuple>(in), out,
bind_internal.h 151 return functor(std::forward<RunArgs>(args)...);
164 return function(std::forward<RunArgs>(args)...);
179 return function(std::forward<RunArgs>(args)...);
192 return function(std::forward<RunArgs>(args)...);
214 return (receiver.*method)(std::forward<RunArgs>(args)...);
234 return (receiver.*method)(std::forward<RunArgs>(args)...);
248 std::forward<IgnoreResultType>(ignore_result_helper).functor_,
249 std::forward<RunArgs>(args)...);
264 return std::forward<CallbackType>(callback).Run(
265 std::forward<RunArgs>(args)...)
    [all...]
  /external/parameter-framework/upstream/test/functional-tests/include/
FailureWrapper.hpp 58 /** Forward construction to base. */
60 FailureWrapper(Args &&... args) : Base(std::forward<Args>(args)...)
72 wrapCall<bool>(*this, method, std::forward<Args>(args)...);
83 wrapCall<bool>(*this, method, std::forward<Args>(args)...);
94 return wrapCall<ReturnType *>(*this, method, std::forward<Args>(args)...);
105 return wrapCall<ReturnType *>(*this, method, std::forward<Args>(args)...);
129 auto res = (instance.*method)(std::forward<Args>(args)..., error);
  /device/google/wahoo/wifi_offload/
hidl_return_util.h 32 hidl_cb((obj->*work)(std::forward<Args>(args)...));
42 const auto& ret_pair = (obj->*work)(std::forward<Args>(args)...);
56 const auto& ret_tuple = (obj->*work)(std::forward<Args>(args)...);
  /external/clang/test/SemaCXX/
underlying_type.cpp 46 void PR19966(enum Invalid) { // expected-note 2{{forward declaration of}}
47 // expected-error@-1 {{ISO C++ forbids forward references to 'enum'}}
52 enum E { // expected-note {{forward declaration of 'E'}}
  /external/skia/src/core/
SkSinglyLinkedList.h 54 Node* n = new Node(std::forward<Args>(args)...);
64 Node* n = new Node(std::forward<Args>(args)...);
90 Node(Args&&... args) : fData(std::forward<Args>(args)...), fNext(nullptr) {}
  /external/skqp/src/core/
SkSinglyLinkedList.h 54 Node* n = new Node(std::forward<Args>(args)...);
64 Node* n = new Node(std::forward<Args>(args)...);
90 Node(Args&&... args) : fData(std::forward<Args>(args)...), fNext(nullptr) {}
  /external/tensorflow/tensorflow/contrib/quantize/
README.md 10 quantization operation during training in both the forward and backward passes.
14 accumulating tiny adjustments to the parameters. However, for the forward pass,
19 ###Forward pass
  /hardware/interfaces/audio/common/all-versions/test/utility/include/utility/
ReturnIn.h 40 set(std::forward<Results>(results)...);
47 std::get<sizeof...(ResultStore) - sizeof...(Tail) - 1>(results) = std::forward<Head>(head);
48 set(std::forward<Tail>(tail)...);
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/proxy/
proxy.go 70 func FromURL(u *url.URL, forward Dialer) (Dialer, error) {
82 return SOCKS5("tcp", u.Host, auth, forward)
89 return f(u, forward)
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/proxy/
proxy.go 70 func FromURL(u *url.URL, forward Dialer) (Dialer, error) {
82 return SOCKS5("tcp", u.Host, auth, forward)
89 return f(u, forward)
  /system/security/keystore/
keystore_aidl_hidl_marshalling_utils.h 31 -> NullOr<decltype(fn(in, std::forward<Args>(args)...))> {
36 return fn(in, std::forward<Args>(args)...);
53 return fn(std::forward<Arg>(arg), out);
  /frameworks/rs/tests/java_api/RSUnitTests/
RSUnitTests.py 19 to ensure that forward/backward compatibility tests run properly.
24 This is necessary since forward compatibility unit tests are chosen at compile
28 Generates an Android.mk file for forward compatibility testing.
131 # Only affects forward compatibility tests.
167 # For use with forward compatibility testing
429 """Returns the target name for a forward compatibility build tool name."""
436 """Returns location of directory for forward compatibility testing."""
442 """Returns location of src directory for forward compatibility testing."""
447 """Returns the location of the Makefile for forward compatibility testing."""
453 """Returns AndroidManifest.xml location for forward compatibility testing.""
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
cudnn_convolution_rewriter.cc 66 // Backward filter convolution is implemented in XLA as the forward
69 // of the forward convolution.
78 // Step 2: match paddings and dimension numbers of the forward convolution.
93 VLOG(1) << "Forward convolution's window "
99 VLOG(1) << "Forward convolution's window "
117 << " is a regular forward convolution. No need "
129 // forward convolution.
132 // The window stride equals the window dilation of the forward convolution.
186 // Restore the dimension numbers of the backward convolution from the forward
200 // The dimension numbering of the output of the forward convolution (befor
    [all...]
  /external/tensorflow/tensorflow/contrib/rnn/python/kernel_tests/
rnn_test.py 112 # Since the forward and backward LSTM cells were initialized with the
113 # same parameters, the forward and backward states of the first layer
115 # For the next layers, since the input is a concat of forward and backward
119 # check that the forward and backward states of the first layer match.
123 # If outputs are not concat between layers the output of the forward
127 # - forward output: out[][][depth] for 0 <= depth < 3
130 # Check that the time=0 forward output is not equal to time=1 backward.
134 # Check that the time=1 forward output is not equal to time=0 backward.
140 # Check that the time=0 forward output is not equal to time=2 backward.
144 # Check that the time=1 forward output is not equal to time=1 backward
    [all...]
  /art/libartbase/base/
aborting.h 26 // makes forward progress.
  /device/google/cuttlefish_common/host/libs/vadb/
README.md 4 USB device. VirtualADB uses USB/IP protocol to forward USB gadget from
  /external/autotest/client/site_tests/security_Firewall/
baseline.ip6tables 2 -P FORWARD DROP
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.aggr/
p4.cpp 20 struct Incomplete; // expected-note {{forward declaration of 'Incomplete'}}
  /external/clang/test/CXX/expr/expr.post/expr.dynamic.cast/
p3-0x.cpp 5 struct Z; // expected-note{{forward declaration of 'Z'}}
  /external/clang/test/CodeGenCXX/
debug-info-fwd-ref.cpp 19 // Make sure we have two DW_TAG_structure_types for baz and bar and no forward
  /external/clang/test/Index/
index-refs.m 32 // CHECK-NEXT: <ObjCContainerInfo>: kind: forward-ref

Completed in 589 milliseconds

<<11121314151617181920>>