HomeSort by relevance Sort by last modified time
    Searched refs:forward (Results 1 - 25 of 329) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit/chromium/public/
WebFindOptions.h 40 // Whether to search forward or backward within the page.
41 bool forward; member in struct:WebKit::WebFindOptions
50 : forward(true)
  /external/quake/quake/src/WinQuake/
chase.cpp 64 vec3_t forward, up, right; local
69 AngleVectors (cl.viewangles, forward, right, up);
74 - forward[i]*chase_back.value
79 VectorMA (r_refdef.vieworg, 4096, forward, dest);
84 dist = DotProduct (stop, forward);
  /external/javassist/src/main/javassist/tools/rmi/
Sample.java 27 public Object forward(Object[] args, int identifier) { method in class:Sample
  /external/clang/test/SemaCXX/
rval-references-examples.cpp 47 template <class T> T&& forward(typename remove_reference<T>::type& t) { function
51 template <class T> T&& forward(typename remove_reference<T>::type&& t) { function
57 return unique_ptr<T>(new T(forward<Args>(args)...));
100 void forward(F f, Args &&...args) { function in namespace:perfect_forwarding
107 forward(F0(), get<A&>(), get<A const&>(), get<A>(), get<const A>(),
109 forward(F0(), get<A&>(), get<A const&>(), get<A>(), get<const A>(), // expected-note{{in instantiation of function template specialization 'perfect_forwarding::forward<perfect_forwarding::F0, perfect_forwarding::A &, const perfect_forwarding::A &, perfect_forwarding::A, const perfect_forwarding::A, const perfect_forwarding::A, const perfect_forwarding::A>' requested here}}
  /external/webkit/Source/WebCore/platform/text/mac/
TextBoundaries.mm 45 int findNextWordFromIndex(const UChar* chars, int len, int position, bool forward)
50 int result = [attr nextWordFromIndex:position forward:forward];
  /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)
465 struct frec *forward; local
    [all...]
Android.mk 6 LOCAL_SRC_FILES := bpf.c cache.c dbus.c dhcp.c dnsmasq.c forward.c helper.c lease.c log.c \
  /external/clang/test/Parser/
recovery.c 68 struct forward; // expected-note{{forward declaration of 'struct forward'}}
69 void x(struct forward* x) {switch(x->a) {}} // expected-error {{incomplete definition of type}}
  /external/webkit/Source/WebCore/page/
History.h 30 #include <wtf/Forward.h>
50 void forward();
54 void forward(ScriptExecutionContext*);
History.idl 41 [DoNotCheckDomainSecurity, CallWith=ScriptExecutionContext] void forward();
  /external/llvm/include/llvm/CodeGen/
RegisterScavenging.h 84 /// forward - Move the internal MBB iterator and update register states.
85 void forward();
87 /// forward - Move the internal MBB iterator and update register states until
89 void forward(MachineBasicBlock::iterator I) { function in class:llvm::RegScavenger
90 if (!Tracking && MBB->begin() != I) forward();
91 while (MBBI != I) forward();
  /external/webkit/Source/WebCore/platform/text/
TextBoundaries.h 42 int findNextWordFromIndex(const UChar*, int len, int position, bool forward);
TextBoundaries.cpp 65 int findNextWordFromIndex(const UChar* chars, int len, int position, bool forward)
69 if (forward) {
  /frameworks/base/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
Android.mk 24 frameworks/base/drm/libdrmframework/plugins/forward-lock/internal-format/common \
  /frameworks/base/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
Android.mk 24 frameworks/base/drm/libdrmframework/plugins/forward-lock/internal-format/common \
  /libcore/luni/src/main/java/java/security/cert/
PKIXCertPathChecker.java 38 * checking (from trusted CA to target) and <u>may</u> support forward checking
40 * isForwardCheckingSupported} indicates whether forward checking is supported.
66 * @param forward
68 * true} if the certificates are processed in forward direction
76 public abstract void init(boolean forward)
81 * <i>forward checking</i>.
84 * supports forward checking, otherwise {@code false}.
  /frameworks/base/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/
Android.mk 60 $(base)/drm/libdrmframework/plugins/forward-lock/internal-format/common \
61 $(base)/drm/libdrmframework/plugins/forward-lock/internal-format/converter \
62 $(base)/drm/libdrmframework/plugins/forward-lock/internal-format/decoder \
  /external/clang/test/Sema/
incomplete-decl.c 3 struct foo; // expected-note 5 {{forward declaration of 'struct foo'}}
28 expected-note {{forward declaration of 'struct bar'}}
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
complex_rep.S 10 cld # we want these to happen forward
  /external/valgrind/main/exp-bbv/tests/x86/
complex_rep.S 10 cld # we want these to happen forward
  /external/chromium/android/
generateAndroidForwardingHeader.pl 28 my $forward = $ARGV[0];
60 $forward =~ m/(.*)\//s;
62 $guard = $forward;
64 open(my $handle, ">", $forward) or die $!;
  /external/webkit/Source/WebCore/platform/text/qt/
TextBoundariesQt.cpp 43 int findNextWordFromIndex(UChar const* buffer, int len, int position, bool forward)
48 if (forward) {
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_pair.h 60 #include <bits/move.h> // for std::move / std::forward, std::decay, and
89 : first(std::forward<_U1>(__x)),
90 second(std::forward<_U2>(__y)) { }
112 : first(std::forward<_U1>(__x)),
113 second(std::forward<_Arg0>(__arg0),
114 std::forward<_Args>(__args)...) { }
255 (std::forward<_T1>(__x), std::forward<_T2>(__y));
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_pair.h 60 #include <bits/move.h> // for std::move / std::forward, std::decay, and
89 : first(std::forward<_U1>(__x)),
90 second(std::forward<_U2>(__y)) { }
112 : first(std::forward<_U1>(__x)),
113 second(std::forward<_Arg0>(__arg0),
114 std::forward<_Args>(__args)...) { }
255 (std::forward<_T1>(__x), std::forward<_T2>(__y));
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_pair.h 60 #include <bits/move.h> // for std::move / std::forward, std::decay, and
89 : first(std::forward<_U1>(__x)),
90 second(std::forward<_U2>(__y)) { }
112 : first(std::forward<_U1>(__x)),
113 second(std::forward<_Arg0>(__arg0),
114 std::forward<_Args>(__args)...) { }
255 (std::forward<_T1>(__x), std::forward<_T2>(__y));

Completed in 446 milliseconds

1 2 3 4 5 6 7 8 91011>>