/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)
|
/prebuilts/ndk/9/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/chromium_org/chrome/browser/ui/toolbar/ |
back_forward_menu_model.h | 38 // Interface for the showing of the dropdown menu for the Back/Forward buttons. 116 // true (we are the forward button delegate), then this function will return 131 // specified (|forward|) until either a chapter-stop is found or we reach the 139 int GetIndexOfNextChapterStop(int start_from, bool forward) const; 142 // NavigationEntryList vector advancing first forward or backward by |offset| 143 // (depending on the direction specified in parameter |forward|). It also 155 int FindChapterStop(int offset, bool forward, int skip) const; 157 // How many items (max) to show in the back/forward history menu dropdown. 160 // How many chapter-stops (max) to show in the back/forward dropdown list. 197 // Represents whether this is the delegate for the forward button or th [all...] |
/external/guava/guava/src/com/google/common/collect/ |
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/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...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
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)
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
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)
|
/external/chromium_org/base/ |
cancelable_callback.h | 105 void Forward() { 112 forwarder_ = base::Bind(&CancelableCallback<void(void)>::Forward, 116 // Used to ensure Forward() is not run when this object is destroyed. 175 void Forward(A1 a1) const { 182 forwarder_ = base::Bind(&CancelableCallback<void(A1)>::Forward, 186 // Used to ensure Forward() is not run when this object is destroyed. 245 void Forward(A1 a1, A2 a2) const { 252 forwarder_ = base::Bind(&CancelableCallback<void(A1, A2)>::Forward, 256 // Used to ensure Forward() is not run when this object is destroyed.
|
/external/llvm/include/llvm/CodeGen/ |
RegisterScavenging.h | 70 // These BitVectors are only used internally to forward(). They are members 86 /// forward - Move the internal MBB iterator and update register states. 87 void forward(); 89 /// forward - Move the internal MBB iterator and update register states until 91 void forward(MachineBasicBlock::iterator I) { function in class:llvm::RegScavenger 92 if (!Tracking && MBB->begin() != I) forward(); 93 while (MBBI != I) forward(); 96 /// Invert the behavior of forward() on the current instruction (undo the 97 /// changes to the available registers made by forward()).
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
History.h | 33 #include "wtf/Forward.h" 51 void forward(); 55 void forward(ScriptExecutionContext*);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
print-layout-test-times | 11 parser.add_option('-f', '--forward', action='store', type='int', 40 if options.forward is not None: 41 return os.sep.join(path.split(os.sep)[:-1][:options.forward])
|
/external/chromium_org/third_party/freetype/src/cff/ |
cffpic.c | 26 /* forward declaration of PIC init functions from cffdrivr.c */ 35 /* forward declaration of PIC init functions from cffparse.c */ 39 /* forward declaration of PIC init functions from cffcmap.c */
|
/external/chromium_org/third_party/libjingle/overrides/ |
initialize_module.cc | 30 // Forward declare of the libjingle internal factory and destroy methods for the 42 // Initialize logging, set the forward allocator functions (not on mac), and 74 // Override the log message handler to forward logs to chrome's handler.
|
/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.
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
move.h | 1 // Move, forward and identity for C++0x + swap -*- C++ -*- 42 // 20.2.2, forward/move 51 forward(typename std::identity<_Tp>::type&& __t) function
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
move.h | 1 // Move, forward and identity for C++0x + swap -*- C++ -*- 42 // 20.2.2, forward/move 51 forward(typename std::identity<_Tp>::type&& __t) function
|