HomeSort by relevance Sort by last modified time
    Searched refs:forward (Results 76 - 100 of 479) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/css/
mediaControlsGtk.css 79 audio::-webkit-media-controls-seek-forward-button, video::-webkit-media-controls-seek-forward-button {
mediaControlsAndroid.css 104 audio::-webkit-media-controls-seek-forward-button, video::-webkit-media-controls-seek-forward-button {
105 -webkit-appearance: media-seek-forward-button;
  /external/webkit/Source/WebKit/chromium/public/
WebPlugin.h 115 // Tells the plugin to jump forward or backward in the list of find results.
116 virtual void selectFindResult(bool forward) { }
  /external/webkit/Source/WebKit/qt/Api/
qwebhistory.h 84 void forward();
  /libcore/luni/src/test/java/tests/security/cert/
PKIXCertPathCheckerTest.java 100 public void init(boolean forward) throws CertPathValidatorException {
  /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/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
new_allocator.h 111 { ::new((void *)__p) _Tp(std::forward<_Args>(__args)...); }
malloc_allocator.h 115 { ::new((void *)__p) _Tp(std::forward<_Args>(__args)...); }
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_construct.h 76 { ::new(static_cast<void*>(__p)) _T1(std::forward<_Args>(__args)...); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stl_construct.h 76 { ::new(static_cast<void*>(__p)) _T1(std::forward<_Args>(__args)...); }
  /prebuilts/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
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/
new_allocator.h 111 { ::new((void *)__p) _Tp(std::forward<_Args>(__args)...); }
  /prebuilts/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
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/
new_allocator.h 111 { ::new((void *)__p) _Tp(std::forward<_Args>(__args)...); }
  /prebuilts/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
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/ext/
new_allocator.h 111 { ::new((void *)__p) _Tp(std::forward<_Args>(__args)...); }
  /external/guava/guava/src/com/google/common/collect/
ImmutableList.java 456 final UnmodifiableListIterator<E> forward = local
460 return forward.hasPrevious();
464 return forward.hasNext();
468 return forward.previous();
472 return reverseIndex(forward.previousIndex());
476 return forward.next();
480 return reverseIndex(forward.nextIndex());
  /external/quake/quake/src/QW/client/
pmove.c 34 vec3_t forward, right, up; variable
259 // try sliding forward both on ground and up 16 pixels
457 wishvel[i] = forward[i]*pmove.cmd.forwardmove + right[i]*pmove.cmd.sidemove;
515 forward[2] = 0;
517 VectorNormalize (forward);
521 wishvel[i] = forward[i]*fmove + right[i]*smove;
705 flatforward[0] = forward[0];
706 flatforward[1] = forward[1];
817 VectorNormalize (forward);
821 wishvel[i] = forward[i]*fmove + right[i]*smove
    [all...]
  /external/skia/src/core/
SkBitmapProcState_matrixProcs.cpp 431 // need to know our start, and our initial phase (forward or backward)
432 bool forward; local
437 forward = false;
440 forward = true;
446 if (forward) {
451 forward = !forward;
456 if (forward) {
461 forward = !forward;
    [all...]
  /external/icu4c/test/intltest/
dadrcal.cpp 289 const CalendarFieldsSet &toSet, Calendar *toCalendar, UBool forward) {
291 UnicodeString thisString = (UnicodeString)"#"+n+" "+(forward ? "forward"
365 const DataMap *settings, UBool forward) {
433 if (forward) {
436 testConvert(n, fromSet, fromCalendar, toSet, toCalendar, forward);
440 testConvert(n, toSet, toCalendar, fromSet, fromCalendar, forward);
  /external/mdnsresponder/mDNSShared/
dnsextd.conf 7 // on port 53, and forward them on as appropriate to BIND on localhost:5030.
  /external/webkit/Source/WebCore/html/
RadioInputType.cpp 81 bool forward = (key == "Down" || key == "Right");
86 while ((node = (forward ? node->traverseNextNode() : node->traversePreviousNode()))) {
  /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/webkit/Source/WebKit2/UIProcess/API/C/win/
WKView.h 74 WK_EXPORT void WKViewSetInitialFocus(WKViewRef view, bool forward);
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qgraphicswkview.h 68 void forward();

Completed in 317 milliseconds

1 2 34 5 6 7 8 91011>>