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

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-m68hc11/
adj-jump.s 58 beq L3 ; Forward branch, adjust -2
60 beq L3 ; Forward branch, adjust -1
  /external/guava/guava/src/com/google/common/collect/
AbstractBiMap.java 56 AbstractBiMap(Map<K, V> forward, Map<V, K> backward) {
57 setDelegates(forward, backward);
61 private AbstractBiMap(Map<K, V> backward, AbstractBiMap<V, K> forward) {
63 inverse = forward;
88 void setDelegates(Map<K, V> forward, Map<V, K> backward) {
91 checkArgument(forward.isEmpty());
93 checkArgument(forward != backward);
94 delegate = forward;
220 * iteration order so that it is consistent with the forward map.
354 private Inverse(Map<K, V> backward, AbstractBiMap<V, K> forward) {
    [all...]
ForwardingMap.java 36 * <p><i>Warning:</i> The methods of {@code ForwardingMap} forward
139 * may wish to override {@link #putAll(Map)} to forward to this
151 * #entrySet}, you may wish to override {@link #remove} to forward to this
176 * {@link #clear} to forward to this implementation.
190 * ForwardingMap#keySet} to forward to this implementation or a subclass
206 * #entrySet}, you may wish to override {@link #containsKey} to forward to
220 * may wish to override {@link ForwardingMap#values} to forward to this
236 * you may wish to override {@link #containsValue} to forward to this
250 * may wish to override {@link #entrySet} to forward to this implementation
269 * wish to override {@link #isEmpty} to forward to this implementation
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_pair.h 59 #include <bits/move.h> // for std::move / std::forward, and std::swap
81 // Forward declarations.
134 : first(std::forward<_U1>(__x)), second(__y) { }
139 : first(__x), second(std::forward<_U2>(__y)) { }
145 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }
151 : first(std::forward<_U1>(__p.first)),
152 second(std::forward<_U2>(__p.second)) { }
170 first = std::forward<first_type>(__p.first);
171 second = std::forward<second_type>(__p.second)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_pair.h 59 #include <bits/move.h> // for std::move / std::forward, and std::swap
81 // Forward declarations.
134 : first(std::forward<_U1>(__x)), second(__y) { }
139 : first(__x), second(std::forward<_U2>(__y)) { }
145 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }
151 : first(std::forward<_U1>(__p.first)),
152 second(std::forward<_U2>(__p.second)) { }
170 first = std::forward<first_type>(__p.first);
171 second = std::forward<second_type>(__p.second)
    [all...]
  /external/llvm/test/Analysis/LoopAccessAnalysis/
forward-loop-independent.ll 4 ; Check that loop-indepedent forward dependences are discovered properly.
7 ; now there is hack in LAA that tries to figure out loop-indepedent forward
12 ; (i.e. the same index is used), we don't discover the forward dependence.
27 ; CHECK-NEXT: Forward:
33 ; CHECK: Forward:
  /external/mksh/src/
emacsfn.h 45 FN(del_char, "delete-char-forward", XF_ARG)
46 FN(del_fword, "delete-word-forward", XF_ARG)
84 FN(mv_forw, "forward-char", XF_ARG)
85 FN(mv_fword, "forward-word", XF_ARG)
93 FN(search_char_forw, "search-character-forward", XF_ARG)
  /external/wpa_supplicant_8/wpa_supplicant/examples/
p2p-action.sh 81 iptables -P FORWARD DROP
83 iptables -A FORWARD -i $UPLINK -o $GIFNAME -m state --state RELATED,ESTABLISHED -j ACCEPT
84 iptables -A FORWARD -i $GIFNAME -o $UPLINK -j ACCEPT
94 iptables -D FORWARD -i $UPLINK -o $GIFNAME -m state --state RELATED,ESTABLISHED -j ACCEPT
95 iptables -D FORWARD -i $GIFNAME -o $UPLINK -j ACCEPT
  /frameworks/base/libs/hwui/thread/
WorkQueue.h 85 enqueue(WorkItem{time, std::function<void()>(std::forward<F>(func))});
90 enqueue(WorkItem{clock::now() + delay, std::function<void()>(std::forward<F>(func))});
95 postAt(0, std::forward<F>(func));
101 auto task = std::make_shared<task_t>(std::forward<F>(func));
108 std::packaged_task<decltype(func())()> task{std::forward<F>(func)};
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
FilterSurfaceView.java 77 // Forward surface created to listener
80 // Forward surface changed to listener
108 // Forward callback to listener
125 // Forward to renderer
135 // Forward to renderer
  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/bijectors/
affine_test.py 60 self.assertAllClose([1., 3, 5], run(bijector.forward, x))
82 self.assertAllClose([1., 3, 5], run(bijector.forward, x))
107 run(bijector.forward, x))
132 self.assertAllClose([2.], run(bijector.forward, x))
154 self.assertAllClose([2.], run(bijector.forward, x))
177 self.assertAllClose([2.], run(bijector.forward, x))
199 self.assertAllClose([2., 0], run(bijector.forward, x))
221 self.assertAllClose([2., 0], run(bijector.forward, x))
245 self.assertAllClose([2., 0], run(bijector.forward, x))
252 self.assertAllClose([[2., 0], [0., -2]], run(bijector.forward, x)
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
AbstractBiMap.java 52 AbstractBiMap(Map<K, V> forward, Map<V, K> backward) {
53 setDelegates(forward, backward);
57 private AbstractBiMap(Map<K, V> backward, AbstractBiMap<V, K> forward) {
59 inverse = forward;
84 void setDelegates(Map<K, V> forward, Map<V, K> backward) {
87 checkArgument(forward.isEmpty());
89 checkArgument(forward != backward);
90 delegate = forward;
216 * iteration order so that it is consistent with the forward map.
350 private Inverse(Map<K, V> backward, AbstractBiMap<V, K> forward) {
    [all...]
  /external/tensorflow/tensorflow/python/ops/
tensor_array_grad.py 53 different gradients from the same forward graph get their own accumulators.
85 op: Forward TensorArrayRead op.
92 # Note: the forward flow dependency in the call to grad() is necessary for
94 # TensorArray, the final size of the forward array must be known.
116 op: Forward TensorArrayWrite op.
142 op: Forward TensorArrayGather op.
149 # Note: the forward flow dependency in the call to grad() is necessary for
151 # TensorArray, the final size of the forward array must be known.
173 op: Forward TensorArrayScatter op.
197 op: Forward TensorArrayConcat op
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
variant 378 return _VSTD::forward<_Vp>(__v).__head;
384 return __get_alt(_VSTD::forward<_Vp>(__v).__tail, in_place_index<_Ip - 1>);
392 return __union::__get_alt(_VSTD::forward<_Vp>(__v).__data,
401 return __base::__get_alt<_Ip>(_VSTD::forward<_Vp>(__v).__impl);
416 decltype(_VSTD::forward<_Vs>(__vs).__as_base())...>();
417 return __fdiagonal[__index](_VSTD::forward<_Visitor>(__visitor),
418 _VSTD::forward<_Vs>(__vs).__as_base()...);
427 decltype(_VSTD::forward<_Vs>(__vs).__as_base())...>();
429 return __at(__fmatrix, __indices)(_VSTD::forward<_Visitor>(__visitor),
430 _VSTD::forward<_Vs>(__vs).__as_base()...)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/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/darwin-x86/clang-4479392/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/darwin-x86/clang-4579689/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/darwin-x86/clang-4630689/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/darwin-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/darwin-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/clang/host/linux-x86/clang-4053586/include/c++/v1/
variant 378 return _VSTD::forward<_Vp>(__v).__head;
384 return __get_alt(_VSTD::forward<_Vp>(__v).__tail, in_place_index<_Ip - 1>);
392 return __union::__get_alt(_VSTD::forward<_Vp>(__v).__data,
401 return __base::__get_alt<_Ip>(_VSTD::forward<_Vp>(__v).__impl);
416 decltype(_VSTD::forward<_Vs>(__vs).__as_base())...>();
417 return __fdiagonal[__index](_VSTD::forward<_Visitor>(__visitor),
418 _VSTD::forward<_Vs>(__vs).__as_base()...);
427 decltype(_VSTD::forward<_Vs>(__vs).__as_base())...>();
429 return __at(__fmatrix, __indices)(_VSTD::forward<_Visitor>(__visitor),
430 _VSTD::forward<_Vs>(__vs).__as_base()...)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/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-4479392/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-4579689/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-4630689/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...]

Completed in 2647 milliseconds

<<11121314151617181920>>