/ndk/sources/cxx-stl/llvm-libc++/test/utilities/utility/forward/ |
forward4.fail.cpp | 10 // test forward 24 std::forward<A>(ca); // error
|
forward5.fail.cpp | 10 // test forward 24 std::forward<A>(csource()); // error
|
forward6.fail.cpp | 10 // test forward 21 std::forward(a); // error
|
/ndk/tests/device/issue35933-lambda/jni/ |
issue35933-lambda.cpp | 1 #include <utility> // for std::forward 21 return native_func(std::forward<ArgTypes>(args)...);
|
/external/guava/guava/src/com/google/common/collect/ |
AbstractBiMap.java | 55 AbstractBiMap(Map<K, V> forward, Map<V, K> backward) { 56 setDelegates(forward, backward); 60 private AbstractBiMap(Map<K, V> backward, AbstractBiMap<V, K> forward) { 62 inverse = forward; 73 void setDelegates(Map<K, V> forward, Map<V, K> backward) { 76 checkArgument(forward.isEmpty()); 78 checkArgument(forward != backward); 79 delegate = forward; 223 * iteration order so that it is consistent with the forward map. 373 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. 194 * ForwardingMap#keySet} to forward to this implementation or a subclass 212 * #entrySet}, you may wish to override {@link #containsKey} to forward to 226 * may wish to override {@link ForwardingMap#values} to forward to this 244 * you may wish to override {@link #containsValue} to forward to this 258 * may wish to override {@link #entrySet} to forward to this implementation 276 * wish to override {@link #isEmpty} to forward to this implementation [all...] |
/external/webkit/Source/WebKit/gtk/webkit/ |
webkitwebbackforwardlist.cpp | 100 * @web_view: the back forward list's #WebKitWebView 102 * Creates an instance of the back forward list with a controlling #WebKitWebView 128 * Steps forward in the back forward list 143 * Steps backward in the back forward list 159 * Checks if @web_history_item is in the back forward list 161 * Return value: %TRUE if @web_history_item is in the back forward list, %FALSE if it doesn't 182 * Go to the specified @web_history_item in the back forward list 283 * Returns a NULL value if the back forward list is empty 387 * Returns the maximum limit of the back forward list [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
stl_pair.h | 61 #include <bits/move.h> // for std::move / std::forward, and std::swap 78 // Forward declarations. 126 : first(std::forward<_U1>(__x)), second(__y) { } 131 : first(__x), second(std::forward<_U2>(__y)) { } 137 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { } 143 : first(std::forward<_U1>(__p.first)), 144 second(std::forward<_U2>(__p.second)) { } 162 first = std::forward<first_type>(__p.first); 163 second = std::forward<second_type>(__p.second) [all...] |
move.h | 1 // Move, forward and identity for C++0x + swap -*- C++ -*- 68 // forward (as per N3143) 70 * @brief Forward an lvalue. 77 forward(typename std::remove_reference<_Tp>::type& __t) noexcept 81 * @brief Forward an rvalue. 88 forward(typename std::remove_reference<_Tp>::type&& __t) noexcept 144 #define _GLIBCXX_FORWARD(_Tp, __val) std::forward<_Tp>(__val)
|
/dalvik/tests/011-array-copy/src/ |
Main.java | 119 /* copy forward, even alignment */ 125 /* copy forward, odd alignment */ 134 /* copy forward, odd length */ 137 /* copy forward, mixed alignment */ 143 /* copy forward, mixed alignment, trivial length */
|
/external/ceres-solver/internal/ceres/ |
runtime_numeric_diff_cost_function.h | 52 // to start and only after that works, trying forward difference. 66 FORWARD, 74 // Forward difference or central difference is selected with CENTRAL or FORWARD. 75 // The relative eps, which determines the step size for forward and central
|
/external/mksh/src/ |
emacsfn.h | 25 FN(del_char, "delete-char-forward", XF_ARG) 26 FN(del_fword, "delete-word-forward", XF_ARG) 60 FN(mv_forw, "forward-char", XF_ARG) 61 FN(mv_fword, "forward-word", XF_ARG) 69 FN(search_char_forw, "search-character-forward", XF_ARG)
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
p2p-action.sh | 68 iptables -P FORWARD DROP 70 iptables -A FORWARD -i $UPLINK -o $GIFNAME -m state --state RELATED,ESTABLISHED -j ACCEPT 71 iptables -A FORWARD -i $GIFNAME -o $UPLINK -j ACCEPT 81 iptables -D FORWARD -i $UPLINK -o $GIFNAME -m state --state RELATED,ESTABLISHED -j ACCEPT 82 iptables -D FORWARD -i $GIFNAME -o $UPLINK -j ACCEPT
|
/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
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/ |
move.h | 1 // Move, forward and identity for C++0x + swap -*- C++ -*- 59 /// forward (as per N3143) 62 forward(typename std::remove_reference<_Tp>::type& __t) function 67 forward(typename std::remove_reference<_Tp>::type&& __t) function 103 #define _GLIBCXX_FORWARD(_Tp, __val) std::forward<_Tp>(__val)
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/ |
move.h | 1 // Move, forward and identity for C++0x + swap -*- C++ -*- 59 /// forward (as per N3143) 62 forward(typename std::remove_reference<_Tp>::type& __t) function 67 forward(typename std::remove_reference<_Tp>::type&& __t) function 103 #define _GLIBCXX_FORWARD(_Tp, __val) std::forward<_Tp>(__val)
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/ |
move.h | 1 // Move, forward and identity for C++0x + swap -*- C++ -*- 42 // 20.2.2, forward/move 51 forward(typename std::remove_reference<_Tp>::type& __t) function 60 forward(typename std::remove_reference<_Tp>::type&& __t) function 64 "Can't instantiate this forward() with an"
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/ |
move.h | 1 // Move, forward and identity for C++0x + swap -*- C++ -*- 59 /// forward (as per N3143) 62 forward(typename std::remove_reference<_Tp>::type& __t) function 67 forward(typename std::remove_reference<_Tp>::type&& __t) function 103 #define _GLIBCXX_FORWARD(_Tp, __val) std::forward<_Tp>(__val)
|
/external/chromium/chrome/browser/ui/toolbar/ |
back_forward_menu_model.h | 28 // Interface for the showing of the dropdown menu for the Back/Forward buttons. 101 // true (we are the forward button delegate), then this function will return 116 // specified (|forward|) until either a chapter-stop is found or we reach the 124 int GetIndexOfNextChapterStop(int start_from, bool forward) const; 127 // NavigationEntryList vector advancing first forward or backward by |offset| 128 // (depending on the direction specified in parameter |forward|). It also 140 int FindChapterStop(int offset, bool forward, int skip) const; 142 // How many items (max) to show in the back/forward history menu dropdown. 145 // How many chapter-stops (max) to show in the back/forward dropdown list. 182 // Represents whether this is the delegate for the forward button or th [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
AbstractBiMap.java | 51 AbstractBiMap(Map<K, V> forward, Map<V, K> backward) { 52 setDelegates(forward, backward); 56 private AbstractBiMap(Map<K, V> backward, AbstractBiMap<V, K> forward) { 58 inverse = forward; 69 void setDelegates(Map<K, V> forward, Map<V, K> backward) { 72 checkArgument(forward.isEmpty()); 74 checkArgument(forward != backward); 75 delegate = forward; 219 * iteration order so that it is consistent with the forward map. 369 private Inverse(Map<K, V> backward, AbstractBiMap<V, K> forward) { [all...] |
/ndk/sources/cxx-stl/llvm-libc++/include/ |
utility | 41 template <class T> T&& forward(typename remove_reference<T>::type& t) noexcept; 42 template <class T> T&& forward(typename remove_reference<T>::type&& t) noexcept; 268 : first(_VSTD::forward<_U1>(__u1)), 269 second(_VSTD::forward<_U2>(__u2)) 277 : first(_VSTD::forward<_U1>(__p.first)), 278 second(_VSTD::forward<_U2>(__p.second)) {} 283 : first(_VSTD::forward<first_type>(__p.first)), 284 second(_VSTD::forward<second_type>(__p.second)) 293 first = _VSTD::forward<first_type>(__p.first); 294 second = _VSTD::forward<second_type>(__p.second) [all...] |
/external/llvm/include/llvm/CodeGen/ |
RegisterScavenging.h | 68 // These BitVectors are only used internally to forward(). They are members 85 /// forward - Move the internal MBB iterator and update register states. 86 void forward(); 88 /// forward - Move the internal MBB iterator and update register states until 90 void forward(MachineBasicBlock::iterator I) { function in class:llvm::RegScavenger 91 if (!Tracking && MBB->begin() != I) forward(); 92 while (MBBI != I) forward();
|
/external/webkit/Source/WebCore/platform/text/ |
TextBreakIteratorICU.cpp | 228 "!!forward;" 235 "$Hin0 $HinV $Hin1;" // Devanagari Virama (forward) 236 "$Ben0 $BenV $Ben1;" // Bengali Virama (forward) 237 "$Pan0 $PanV $Pan1;" // Gurmukhi Virama (forward) 238 "$Guj0 $GujV $Guj1;" // Gujarati Virama (forward) 239 "$Ori0 $OriV $Ori1;" // Oriya Virama (forward) 240 "$Tel0 $TelV $Tel1;" // Telugu Virama (forward) 241 "$Kan0 $KanV $Kan1;" // Kannada Virama (forward) 242 "$Mal0 $MalV $Mal1;" // Malayalam Virama (forward)
|
/external/clang/test/SemaCXX/ |
enum.cpp | 30 enum e1 (*bar)(void); // expected-error{{ISO C++ forbids forward references to 'enum' types}} 39 enum e2; // expected-error{{ISO C++ forbids forward references to 'enum' types}} 95 enum E; // expected-error{{ISO C++ forbids forward references to 'enum' types}}
|
/external/iptables/extensions/ |
libxt_physdev.man | 10 .B FORWARD 20 .BR FORWARD , 42 This is only useful in the FORWARD and POSTROUTING chains.
|