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

1 2 3 4

  /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/javassist/src/main/javassist/tools/rmi/
Sample.java 27 public Object forward(Object[] args, int identifier) { method in class:Sample
  /prebuilt/linux-x86/toolchain/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
  /prebuilt/ndk/android-ndk-r5/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
  /prebuilt/ndk/android-ndk-r6/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
  /prebuilt/ndk/android-ndk-r7/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
  /external/webkit/Source/WebCore/page/
History.cpp 74 void History::forward() function in class:WebCore::History
79 void History::forward(ScriptExecutionContext* context) function in class:WebCore::History
  /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/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);
cl_tent.cpp 333 float forward; local
366 forward = sqrt (dist[0]*dist[0] + dist[1]*dist[1]);
367 pitch = (int) (atan2(dist[2], forward) * 180 / M_PI);
sv_user.cpp 30 static vec3_t forward, right, up; variable
256 AngleVectors (sv_player->u.v.v_angle, forward, right, up);
259 wishvel[i] = forward[i]*cmd.forwardmove + right[i]*cmd.sidemove;
332 AngleVectors (sv_player->u.v.angles, forward, right, up);
342 wishvel[i] = forward[i]*fmove + right[i]*smove;
view.cpp 79 vec3_t forward, right, up; variable
87 AngleVectors (angles, forward, right, up);
321 vec3_t forward, right, up;
370 AngleVectors (ent->angles, forward, right, up);
375 side = DotProduct (from, forward);
868 vec3_t forward, right, up; local
912 AngleVectors (angles, forward, right, up);
915 r_refdef.vieworg[i] += scr_ofsx.value*forward[i]
932 view->origin[i] += forward[i]*bob*0.4;
  /external/guava/src/com/google/common/primitives/
Primitives.java 62 private static void add(Map<Class<?>, Class<?>> forward,
64 forward.put(key, value);
  /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/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/src/org/chromium/
IRCProxyWebSocket.java 29 getServletContext().getNamedDispatcher("default").forward(request,response); method
  /external/llvm/lib/CodeGen/
RegisterScavenging.cpp 123 void RegScavenger::forward() { function in class:RegScavenger
124 // Move ptr forward.
  /external/speex/libspeex/
fftwrap.c 248 kiss_fftr_cfg forward; member in struct:kiss_config
257 table->forward = kiss_fftr_alloc(size,0,NULL,NULL);
266 kiss_fftr_free(t->forward);
278 kiss_fftr2(t->forward, in, out);
291 kiss_fftr2(t->forward, in, out);
  /external/webkit/Source/WebKit/qt/tests/qwebhistory/
tst_qwebhistory.cpp 52 void forward();
133 * Check QWebHistory::forward() method
135 void tst_QWebHistory::forward() function in class:tst_QWebHistory
145 hist->forward();
149 hist->forward();
362 QTest::newRow("forward") << "history.forward();";
  /external/guava/src/com/google/common/collect/
AbstractBiMap.java 53 AbstractBiMap(Map<K, V> forward, Map<V, K> backward) {
54 setDelegates(forward, backward);
58 private AbstractBiMap(Map<K, V> backward, AbstractBiMap<V, K> forward) {
60 inverse = forward;
71 void setDelegates(Map<K, V> forward, Map<V, K> backward) {
74 checkArgument(forward.isEmpty());
76 checkArgument(forward != backward);
77 delegate = forward;
216 * iteration order so that it is consistent with the forward map.
358 private Inverse(Map<K, V> backward, AbstractBiMap<V, K> forward) {
    [all...]
  /external/icu4c/common/
uniset.cpp 640 // might separate forward and backward loops later
643 // TODO Improve efficiency of this, at least in the forward
644 // direction, if not in both. In the forward direction we
648 UBool forward = offset < limit; local
651 // forward direction or the rightmost char to match in
667 UChar c = trial.charAt(forward ? 0 : trial.length() - 1);
670 // forward direction.
671 if (forward && c > firstChar) break;
677 int32_t maxLen = forward ? limit-offset : offset-limit;
689 // In the forward direction we know string
    [all...]
  /external/qemu/slirp/
ip_input.c 507 /* int opt, optlen, cnt, off, code, type = ICMP_PARAMPROB, forward = 0; */
508 int opt, optlen, cnt, off, code, type, forward = 0; local
560 * yet; nothing to do except forward.
596 forward = !IN_MULTICAST(ntohl(ip->ip_dst.s_addr));
677 if (forward) {
  /external/qemu/slirp-android/
ip_input.c 507 /* int opt, optlen, cnt, off, code, type = ICMP_PARAMPROB, forward = 0; */
508 int opt, optlen, cnt, off, code, type, forward = 0; local
560 * yet; nothing to do except forward.
596 forward = !IN_MULTICAST(ntohl(ip->ip_dst.s_addr));
677 if (forward) {
  /external/quake/quake/src/QW/client/
cl_cam.c 59 float forward; local
76 forward = sqrt (vec[0]*vec[0] + vec[1]*vec[1]);
77 pitch = (int) (atan2(vec[2], forward) * 180 / M_PI);
205 vec3_t forward, right, up; local
209 AngleVectors (vec, forward, right, up);
211 // forward[i] *= 3;
214 VectorAdd(forward, up, vec2);
220 VectorAdd(forward, up, vec2);
226 VectorAdd(forward, right, vec2);
231 VectorSubtract(forward, right, vec2)
    [all...]
cl_tent.c 358 float forward; local
390 forward = sqrt (dist[0]*dist[0] + dist[1]*dist[1]);
391 pitch = (int) (atan2(dist[2], forward) * 180 / M_PI);
  /external/skia/src/core/
SkBitmapProcState_matrixProcs.cpp 427 // need to know our start, and our initial phase (forward or backward)
428 bool forward; local
433 forward = false;
436 forward = true;
442 if (forward) {
447 forward = !forward;
452 if (forward) {
457 forward = !forward;
    [all...]

Completed in 1208 milliseconds

1 2 3 4