/external/dnsmasq/src/ |
forward.c | 185 /* don't forward simple names, make exception for NS queries and empty name. */ 206 HEADER *header, size_t plen, time_t now, struct frec *forward) 218 forward = NULL; 219 else if (forward || (forward = lookup_frec_by_sender(ntohs(header->id), udpaddr, crc))) 222 domain = forward->sentto->domain; 223 forward->sentto->failed_queries++; 226 forward->forwardall = 1; 229 type = forward->sentto->flags & SERV_TYPE; 230 if (!(start = forward->sentto->next) 477 struct frec *forward; local [all...] |
/external/guava/guava/src/com/google/common/collect/ |
ForwardingNavigableMap.java | 35 * <p><i>Warning:</i> The methods of {@code ForwardingNavigableMap} forward <i>indiscriminately</i> 69 * {@code lowerEntry} to forward to this implementation. 82 * {@link #lowerEntry}, you may wish to override {@code lowerKey} to forward to this 97 * {@code floorEntry} to forward to this implementation. 110 * {@code floorEntry}, you may wish to override {@code floorKey} to forward to this 125 * {@code ceilingEntry} to forward to this implementation. 138 * {@code ceilingEntry}, you may wish to override {@code ceilingKey} to forward to this 153 * {@code higherEntry} to forward to this implementation. 166 * {@code higherEntry}, you may wish to override {@code higherKey} to forward to this 181 * {@code firstEntry} to forward to this implementation 279 NavigableMap<K, V> forward() { method in class:ForwardingNavigableMap.StandardDescendingMap [all...] |
ForwardingMultiset.java | 35 * <p><b>Warning:</b> The methods of {@code ForwardingMultiset} forward 106 * forward to this implementation. 117 * wish to override {@link #clear} to forward to this implementation. 128 * override {@link #count} to forward to this implementation. 144 * wish to override {@link #add(Object)} to forward to this implementation. 157 * forward to this implementation. 169 * may wish to override {@link #remove(Object)} to forward to this 181 * #elementSet}, you may wish to override {@link #removeAll} to forward to 194 * #elementSet}, you may wish to override {@link #retainAll} to forward to 208 * wish to override {@link #setCount(Object, int)} to forward to thi [all...] |
ForwardingCollection.java | 33 * <p><b>Warning:</b> The methods of {@code ForwardingCollection} forward 125 * #contains} to forward to this implementation. 136 * #containsAll} to forward to this implementation. 146 * override {@link #add}, you may wish to override {@link #addAll} to forward 158 * #iterator}, you may wish to override {@link #remove} to forward to this 177 * #iterator}, you may wish to override {@link #removeAll} to forward to this 189 * #iterator}, you may wish to override {@link #retainAll} to forward to this 201 * #iterator}, you may wish to override {@link #clear} to forward to this 213 * to forward to this implementation. Alternately, it may be more efficient to 225 * #toString} to forward to this implementation [all...] |
ForwardingNavigableSet.java | 30 * <p><i>Warning:</i> The methods of {@code ForwardingNavigableSet} forward <i>indiscriminately</i> 64 * wish to override {@link #lower} to forward to this implementation. 78 * wish to override {@link #floor} to forward to this implementation. 92 * wish to override {@link #ceiling} to forward to this implementation. 106 * wish to override {@link #higher} to forward to this implementation. 119 * override {@link #iterator} you may wish to override {@link #pollFirst} to forward to this 134 * forward to this implementation. 158 * forward to this implementation or a subclass thereof. 187 * {@link #subSet(Object, boolean, Object, boolean)} to forward to this implementation. 202 * {@link #subSet(Object, Object)} to forward to this implementation [all...] |
/external/tcpdump/tests/ |
spb_bpduv4-v.out | 1 STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 8 MSTI 10, Flags [Learn, Forward], port-role Designated 17 STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 24 MSTI 10, Flags [Learn, Forward], port-role Designated 33 STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 40 MSTI 10, Flags [Learn, Forward], port-role Designated 49 STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 56 MSTI 10, Flags [Learn, Forward], port-role Designated 65 STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 72 MSTI 10, Flags [Learn, Forward], port-role Designate [all...] |
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/ |
variant.h | 141 : first_(std::forward<T>(value)) { 146 : first_(std::forward<T>(value)) { 169 new (&first_) Type(std::forward<Args>(args)...); 174 new (&first_) Type(std::forward<Args>(args)...); 187 first_ = std::forward<T>(value); 197 first_ = std::forward<T>(value); 212 return std::forward<Op>(op)(get(TypeTag<Type>{})); 214 return std::forward<Op>(op)(get(TypeTag<EmptyVariant>{})); 219 return std::forward<Op>(op)(get(TypeTag<Type>{})); 221 return std::forward<Op>(op)(get(TypeTag<EmptyVariant>{})) [all...] |
/external/eigen/unsupported/Eigen/src/NumericalDiff/ |
NumericalDiff.h | 19 Forward, 33 * Currently only "Forward" and "Central" scheme are implemented. 35 template<typename _Functor, NumericalDiffMode mode=Forward> 48 // forward constructors 81 case Forward: 99 case Forward:
|
/external/mesa3d/src/gallium/state_trackers/clover/util/ |
tuple.hpp | 66 return f(std::get<Is>(std::forward<T>(t))...); 78 return detail::_apply<F, T>::eval(std::forward<F>(f), 79 std::forward<T>(t)); 99 return value_type(f(std::get<Is>(std::forward<T>(t)))...); 111 return detail::_map<F, T>::eval(std::forward<F>(f), 112 std::forward<T>(t));
|
/device/linaro/bootloader/edk2/AppPkg/Applications/OrderedCollectionTest/ |
gentest.sh | 51 echo '# populate the tree in random order and empty it iterating forward' 53 echo forward-empty 64 echo forward-list
|
/external/autotest/client/deps/glbench/src/ |
glinterface.h | 15 typedef struct waffle_context *GLContext; // Forward declaration from waffle.h. 23 struct __GLXcontextRec; // Forward declaration from GLX.h. 29 typedef void *EGLContext; // Forward declaration from EGL.h.
|
/external/clang/test/CXX/dcl.decl/dcl.meaning/ |
p1.cpp | 33 // Under DR482, these are all valid, except for forward-declaring a struct 37 struct NS::X; // expected-error {{forward declaration of struct cannot have a nested name specifier}} expected-warning {{extra qualification}} 38 template<typename T> struct NS::Y; // expected-error {{forward declaration of struct cannot have a nested name specifier}} expected-warning {{extra qualification}}
|
/external/clang/test/CodeGenObjC/ |
protocols-lazy.m | 17 // Forward definition triggered by protocol reference. 30 // Definition following forward reference. 34 void f2() { id x = @protocol(P5); } // This generates a forward
|
/external/clang/test/SemaTemplate/ |
undefined-template.cpp | 4 static char s_var_1; // expected-note{{forward declaration of template entity is here}} 5 static char s_var_2; // expected-note{{forward declaration of template entity is here}} 6 static void s_func_1(); // expected-note{{forward declaration of template entity is here}} 7 static void s_func_2(); // expected-note{{forward declaration of template entity is here}} 8 void meth_1(); // expected-note2{{forward declaration of template entity is here}} 10 template <class T1> static char s_tvar_2; // expected-note{{forward declaration of template entity is here}} 11 template <class T1> static void s_tfunc_2(); // expected-note{{forward declaration of template entity is here}} 13 static char s_var_2; // expected-note{{forward declaration of template entity is here}} 14 static void s_func_2(); // expected-note{{forward declaration of template entity is here}} 15 void meth_2(); // expected-note{{forward declaration of template entity is here} [all...] |
/external/freetype/src/base/ |
basepic.c | 27 /* forward declaration of PIC init functions from ftglyph.c */ 35 /* forward declaration of PIC init function from ftrfork.c */ 41 /* forward declaration of PIC init functions from ftinit.c */
|
/external/iptables/extensions/ |
libxt_physdev.man | 10 .B FORWARD 20 .BR FORWARD 34 This is only useful in the FORWARD and POSTROUTING chains.
|
/external/skia/src/core/ |
SkArenaAllocList.h | 15 * the elements. This supports forward iteration and range based for loops. 52 Node(Args... args) : fT(std::forward<Args>(args)...) {} 64 auto* n = arena->make<Node>(std::forward<Args>(args)...);
|
/external/skqp/src/core/ |
SkArenaAllocList.h | 15 * the elements. This supports forward iteration and range based for loops. 52 Node(Args... args) : fT(std::forward<Args>(args)...) {} 64 auto* n = arena->make<Node>(std::forward<Args>(args)...);
|
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/bijectors/ |
sinh_arcsinh_bijector_test.py | 47 self.assertAllClose(y, bijector.forward(x).eval()) 66 y = bijector.forward(x).eval() 71 # forward(1) should increase as tailweight increases, since higher 83 y = bijector.forward(x).eval() 85 # For skew < 0, |forward(-1)| > |forward(1)| 88 # For skew = 0, |forward(-1)| = |forward(1)| 91 # For skew > 0, |forward(-1)| < |forward(1) [all...] |
/system/core/base/include/android-base/ |
scopeguard.h | 20 #include <utility> // for std::move, std::forward 30 ScopeGuard(F&& f) : f_(std::forward<F>(f)), active_(true) {} 64 return ScopeGuard<F>(std::forward<F>(f));
|
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-powerpc/ |
tocopt6-inc.s | 25 .macro forward, from, to 67 forward local, in123 72 forward in23, local
|
/external/autotest/client/site_tests/security_Firewall/ |
baseline.iptables | 2 -P FORWARD DROP
|
/external/autotest/client/tests/iosched_bugs/ |
control | 12 bugfix it should see the writer making forward progress.
|
/external/clang/test/CodeGenCXX/ |
debug-info-scoped-class.cpp | 4 // This forward-declared scoped enum will be created while building its own
|
/external/clang/test/Modules/Inputs/System/usr/include/ |
module.map | 12 // In both directories (compiler support version wins, does not forward)
|