HomeSort by relevance Sort by last modified time
    Searched full:forward (Results 226 - 250 of 9336) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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...]
class-template-id-2.cpp 7 template<> class A<float>; // expected-note{{forward declaration of 'N::A<float>'}}
  /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/guava/guava/src/com/google/common/collect/
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/iptables/extensions/
libxt_physdev.man 10 .B FORWARD
20 .BR FORWARD
34 This is only useful in the FORWARD and POSTROUTING chains.
libip6t_HL.t 1 :PREROUTING,INPUT,FORWARD,OUTPUT,POSTROUTING
  /external/pdfium/third_party/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/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)
  /external/clang/test/Parser/
recovery.c 69 struct forward; // expected-note{{forward declaration of 'struct forward'}}
70 void x(struct forward* x) {switch(x->a) {}} // expected-error {{incomplete definition of type}}
  /external/clang/test/SemaCXX/
PR10243.cpp 3 struct S; // expected-note 4{{forward declaration of 'S'}}
vla.cpp 12 struct incomplete; // expected-note {{forward declaration}}
  /external/clang/test/SemaObjC/
forward-class-redeclare.m 13 @class PLAlbum; // expected-warning {{redefinition of forward class 'PLAlbum' of a typedef name of an object type is ignore}}
ivar-sem-check-1.m 3 struct S; // expected-note{{forward declaration of 'struct S'}}
  /external/dnsmasq/src/
Android.mk 6 LOCAL_SRC_FILES := bpf.c cache.c dhcp.c dnsmasq.c forward.c helper.c lease.c log.c \
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingSortedMapTest.java 180 forward = new ForwardingSortedMap<String, Boolean>() {
188 forward().comparator();
193 forward().firstKey();
198 forward().headMap("asdf");
203 forward().lastKey();
208 forward().subMap("first", "last");
213 forward().tailMap("last");
217 @Override SortedMap<String, Boolean> forward() {
218 return (SortedMap<String, Boolean>) super.forward();
  /external/icu/icu4c/source/common/
wintz.h 27 /* Forward declarations for Windows types... */

Completed in 3443 milliseconds

1 2 3 4 5 6 7 8 91011>>