HomeSort by relevance Sort by last modified time
    Searched full:forward (Results 201 - 225 of 4710) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/quake/quake/src/WinQuake/kit/
JOYSTICK.TXT 23 The default joystick setting is for joystick left/right movement to control turning and for joystick forward/backward movement to control moving forward/backward. For optional strafing, add the 'sidestep' feature to one of your buttons (via the Customize menu). For optional looking, add the 'mouse look' feature to one of your buttons (also via the Customize menu).
25 Additionally, there are several features that you can set from the Options menu. 'Always Run' allows you change your maximum speed from walking to running. 'Invert Mouse' allows you to change the direction the joystick has to move to when looking up and down. 'Lookspring' enables automatic look-forward-when-moving. And, 'Lookstrafe' automatically enables strafing when the 'mouse look' button is pressed.
28 joyforwardsensitivity - controls the ramp-up speed for moving forward and backward
35 joyforwardthreshold - controls the dead-zone for moving forward and backward
49 2. mapping of any axis to any control (Forward, Look, Side, Turn)
63 joyadvaxisy - controls mapping of DirectInput axis Y (typically joystick forward and backward)
67 joyadvaxisv - controls mapping of DirectInput axis V (custom axis - Assassin 3D trackball forward and backward and SpaceOrb yaw)
70 1 = Axis is for forward and backward movement
150 Here is a config file for making your joystick operate looking around and strafing, your rudder pedals control turning left and right and throttle control moving forward and backward:
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_pair.h 60 #include <bits/move.h> // for std::move / std::forward, and std::swap
77 // Forward declarations.
121 : first(std::forward<_U1>(__x)), second(__y) { }
126 : first(__x), second(std::forward<_U2>(__y)) { }
132 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }
136 : first(std::forward<_U1>(__p.first)),
137 second(std::forward<_U2>(__p.second)) { }
267 return __pair_type(std::forward<_T1>(__x), std::forward<_T2>(__y))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stl_pair.h 60 #include <bits/move.h> // for std::move / std::forward, and std::swap
77 // Forward declarations.
121 : first(std::forward<_U1>(__x)), second(__y) { }
126 : first(__x), second(std::forward<_U2>(__y)) { }
132 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }
136 : first(std::forward<_U1>(__p.first)),
137 second(std::forward<_U2>(__p.second)) { }
267 return __pair_type(std::forward<_T1>(__x), std::forward<_T2>(__y))
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
stl_pair.h 60 #include <bits/move.h> // for std::move / std::forward, std::decay, and
90 : first(std::forward<_U1>(__x)), second(__y) { }
95 : first(__x), second(std::forward<_U2>(__y)) { }
101 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }
130 : first(std::forward<_U1>(__x)),
131 second(std::forward<_Arg0>(__arg0),
132 std::forward<_Args>(__args)...) { }
274 (std::forward<_T1>(__x), std::forward<_T2>(__y))
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_pair.h 60 #include <bits/move.h> // for std::move / std::forward, and std::swap
77 // Forward declarations.
121 : first(std::forward<_U1>(__x)), second(__y) { }
126 : first(__x), second(std::forward<_U2>(__y)) { }
132 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }
136 : first(std::forward<_U1>(__p.first)),
137 second(std::forward<_U2>(__p.second)) { }
267 return __pair_type(std::forward<_T1>(__x), std::forward<_T2>(__y))
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/
tuple 89 : _Head(std::forward<_UHead>(__h)) { }
104 : _Head(std::forward<_UHead>(__uhead)) { }
108 : _Head(allocator_arg, *__a._M_a, std::forward<_UHead>(__uhead)) { }
112 : _Head(std::forward<_UHead>(__uhead), *__a._M_a) { }
134 : _M_head_impl(std::forward<_UHead>(__h)) { }
149 : _M_head_impl(std::forward<_UHead>(__uhead)) { }
153 : _M_head_impl(allocator_arg, *__a._M_a, std::forward<_UHead>(__uhead))
158 : _M_head_impl(std::forward<_UHead>(__uhead), *__a._M_a) { }
247 : _Inherited(std::forward<_UTail>(__tail)...),
248 _Base(std::forward<_UHead>(__head)) {
    [all...]
  /system/core/adb/
SERVICES.TXT 39 emulator will forward automatically to the adbd daemon running
99 <host-prefix>:forward:<local>;<remote>
100 Asks the ADB server to forward local connections from <local>
120 <host-prefix>:forward:norebind:<local>;<remote>
121 Same as <host-prefix>:forward:<local>;<remote> except that it will
122 fail it there is already a forward connection from <local>.
124 Used to implement 'adb forward --no-rebind <local> <remote>'
127 Remove any existing forward local connection from <local>.
128 This is used to implement 'adb forward --remove <local>'
131 Remove all forward network connections
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestRagdollCharacter.java 66 boolean leftStrafe = false, rightStrafe = false, forward = false, backward = false, field in class:TestRagdollCharacter
128 inputManager.addMapping("Walk Forward",
137 inputManager.addListener(this, "Walk Forward", "Walk Backward");
196 } else if (binding.equals("Walk Forward")) {
198 forward = true;
200 forward = false;
218 if(forward){
  /external/llvm/test/CodeGen/Mips/
brdelayslot.ll 5 ; RUN: llc -march=mipsel -disable-mips-df-forward-search=false \
6 ; RUN: -relocation-model=static < %s | FileCheck %s -check-prefix=FORWARD
112 ; FORWARD: foo10:
113 ; FORWARD: jal foo11
114 ; FORWARD: jal foo11
115 ; FORWARD-NOT: nop
116 ; FORWARD: end foo10
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
FwdLockConv.h 132 /// The input file is not a syntactically correct OMA DRM v1 Forward Lock file.
159 * Opens a session for converting an OMA DRM v1 Forward Lock file to the internal Forward Lock file
198 * Closes a session for converting an OMA DRM v1 Forward Lock file to the internal Forward Lock
214 * Converts an open OMA DRM v1 Forward Lock file to the internal Forward Lock file format in pull
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/
functional 229 return __f(std::forward<_Args>(__args)...);
242 return mem_fn(__f)(std::forward<_Args>(__args)...);
255 return __f(std::forward<_Args>(__args)...);
462 return __invoke(get(), std::forward<_Args>(__args)...);
531 { return (__object.*__pmf)(std::forward<_ArgTypes>(__args)...); }
536 { return ((*__ptr).*__pmf)(std::forward<_ArgTypes>(__args)...); }
546 { return (__object.*__pmf)(std::forward<_ArgTypes>(__args)...); }
551 { return (__object->*__pmf)(std::forward<_ArgTypes>(__args)...); }
559 std::forward<_ArgTypes>(__args)...);
578 { return (__object.*__pmf)(std::forward<_ArgTypes>(__args)...);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/
functional 229 return __f(std::forward<_Args>(__args)...);
242 return mem_fn(__f)(std::forward<_Args>(__args)...);
255 return __f(std::forward<_Args>(__args)...);
462 return __invoke(get(), std::forward<_Args>(__args)...);
531 { return (__object.*__pmf)(std::forward<_ArgTypes>(__args)...); }
536 { return ((*__ptr).*__pmf)(std::forward<_ArgTypes>(__args)...); }
546 { return (__object.*__pmf)(std::forward<_ArgTypes>(__args)...); }
551 { return (__object->*__pmf)(std::forward<_ArgTypes>(__args)...); }
559 std::forward<_ArgTypes>(__args)...);
578 { return (__object.*__pmf)(std::forward<_ArgTypes>(__args)...);
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/
functional 229 return __f(std::forward<_Args>(__args)...);
242 return mem_fn(__f)(std::forward<_Args>(__args)...);
255 return __f(std::forward<_Args>(__args)...);
462 return __invoke(get(), std::forward<_Args>(__args)...);
531 { return (__object.*__pmf)(std::forward<_ArgTypes>(__args)...); }
536 { return ((*__ptr).*__pmf)(std::forward<_ArgTypes>(__args)...); }
546 { return (__object.*__pmf)(std::forward<_ArgTypes>(__args)...); }
551 { return (__object->*__pmf)(std::forward<_ArgTypes>(__args)...); }
559 std::forward<_ArgTypes>(__args)...);
578 { return (__object.*__pmf)(std::forward<_ArgTypes>(__args)...);
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractBiMapTest.java 495 final BiMap<Integer, String> forward; field in class:AbstractBiMapTest.BiMapPair
499 this.forward = original;
515 assertEquals(pair.forward, copy.forward);
518 copy.forward.put(4, "four");
520 assertEquals(copy.backward, copy.forward.inverse());
521 assertEquals(copy.forward, copy.backward.inverse());
523 assertTrue(copy.forward.containsKey(4));
524 assertTrue(copy.forward.containsKey(5));
527 assertTrue(copy.forward.containsValue("four"))
    [all...]
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
StripInfo.java 144 // Builds a strip forward as far as we can go, then builds backwards, and joins the two lists
148 // used in building the strips forward and backward
151 // build forward... start with the initial face
169 // build the forward list
293 // Combine the forward and backwards stripification lists and put into our own face vector
303 void combine(FaceInfoVec forward, FaceInfoVec backward){
310 // add forward faces
311 numFaces = forward.size();
313 m_faces.add(forward.at(i));
  /external/chromium/chrome/browser/
browser_commands_unittest.cc 104 // Tests back/forward in new tab (Control + Back/Forward button in the UI).
130 // Select the second tab and make it go forward in a new background tab.
146 // There should be a new tab navigated forward.
162 // Same thing again for forward.
  /external/icu4c/common/unicode/
unimatch.h 82 * Matching in the forward direction is indicated by limit >
94 * the matched substring. In the forward direction, this will be
110 * than offset for a forward direction match, less than offset for
113 * forward direction or text.charAt(limit+1) in the backward
145 * & 0xFF == v, at offset, in the forward direction (with limit >
  /ndk/sources/cxx-stl/llvm-libc++/include/
tuple 264 : value(_VSTD::forward<_Tp>(__t))
280 : value(_VSTD::forward<_Tp>(__t))
294 : value(allocator_arg_t(), __a, _VSTD::forward<_Tp>(__t))
308 : value(_VSTD::forward<_Tp>(__t), __a)
334 value = _VSTD::forward<_Tp>(__t);
377 : _Hp(_VSTD::forward<_Tp>(__t)) {}
382 : _Hp(_VSTD::forward<_Tp>(__t)) {}
387 : _Hp(allocator_arg_t(), __a, _VSTD::forward<_Tp>(__t)) {}
392 : _Hp(_VSTD::forward<_Tp>(__t), __a) {}
405 _Hp::operator=(_VSTD::forward<_Tp>(__t))
    [all...]
  /external/clang/include/clang/Basic/
LLVM.h 11 /// \brief Forward declares and imports various common LLVM datatypes that
21 // Casting.h has complex templates that cannot be easily forward declared.
23 // None.h includes an enumerator that is desired & cannot be forward declared
  /external/clang/test/SemaCXX/
discrim-union.cpp 7 template<typename T> constexpr T &&forward(typename remove_reference<T>::type &t) noexcept { return static_cast<T&&>(t); }
8 template<typename T> constexpr T &&forward(typename remove_reference<T>::type &&t) noexcept { return static_cast<T&&>(t); }
60 constexpr a(U &&...u) : value{forward<U>(u)...} {}
  /external/guava/guava/src/com/google/common/collect/
ForwardingSet.java 32 * <p><b>Warning:</b> The methods of {@code ForwardingSet} forward
67 * to override {@link #equals} to forward to this implementation.
78 * to forward to this implementation.
  /external/icu4c/samples/break/
break.cpp 102 //print each sentence in forward and reverse order
114 puts("----- forward: -----------");
125 puts("----- forward: -----------");
ubreak.c 93 /*print each sentence in forward and reverse order*/
101 printf("\n----- Sentence Boundaries, forward: -----------\n");
110 printf("\n----- Word Boundaries, forward: -----------\n");
  /external/webkit/Source/WebKit/mac/WebView/
WebDocumentPrivate.h 77 @param forward YES to search forward, NO to seach backwards.
83 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag startInSelection:(BOOL)startInSelection;
  /development/ndk/platforms/android-3/include/linux/
qic117.h 77 #define QIC117_COMMANDS { {NULL, 0x00, 0x00, mode, 0, discretional}, {"soft reset", 0x00, 0x00, motion, 1, required}, {"report next bit", 0x00, 0x00, report, 0, required}, {"pause", 0x36, 0x24, motion, 1, required}, {"micro step pause", 0x36, 0x24, motion, 1, required}, {"alternate command timeout", 0x00, 0x00, mode, 0, required}, {"report drive status", 0x00, 0x00, report, 0, required}, {"report error code", 0x01, 0x01, report, 0, required}, {"report drive configuration",0x00, 0x00, report, 0, required}, {"report rom version", 0x00, 0x00, report, 0, required}, {"logical forward", 0x37, 0x25, motion, 0, required}, {"physical reverse", 0x17, 0x05, motion, 0, required}, {"physical forward", 0x17, 0x05, motion, 0, required}, {"seek head to track", 0x37, 0x25, motion, 0, required}, {"seek load point", 0x17, 0x05, motion, 1, required}, {"enter format mode", 0x1f, 0x05, mode, 0, required}, {"write reference burst", 0x1f, 0x05, motion, 1, required}, {"enter verify mode", 0x37, 0x25, mode, 0, required}, {"stop tape", 0x00, 0x00, motion, 1, required}, {"reserved (19)", 0x00, 0x00, unused, 0, discretional}, {"reserved (20)", 0x00, 0x00, unused, 0, discretional}, {"micro step head up", 0x02, 0x00, motion, 0, required}, {"micro step head down", 0x02, 0x00, motion, 0, required}, {"soft select", 0x00, 0x00, mode, 0, discretional}, {"soft deselect", 0x00, 0x00, mode, 0, discretional}, {"skip segments reverse", 0x36, 0x24, motion, 1, required}, {"skip segments forward", 0x36, 0x24, motion, 1, required}, {"select rate or format", 0x03, 0x01, mode, 0, required }, {"enter diag mode 1", 0x00, 0x00, mode, 0, discretional}, {"enter diag mode 2", 0x00, 0x00, mode, 0, discretional}, {"enter primary mode", 0x00, 0x00, mode, 0, required}, {"vendor unique (31)", 0x00, 0x00, unused, 0, discretional}, {"report vendor id", 0x00, 0x00, report, 0, required}, {"report tape status", 0x04, 0x04, report, 0, ccs1}, {"skip extended reverse", 0x36, 0x24, motion, 1, ccs1}, {"skip extended forward", 0x36, 0x24, motion, 1, ccs1}, {"calibrate tape length", 0x17, 0x05, motion, 1, ccs2}, {"report format segments", 0x17, 0x05, report, 0, ccs2}, {"set format segments", 0x17, 0x05, mode, 0, ccs2}, {"reserved (39)", 0x00, 0x00, unused, 0, discretional}, {"vendor unique (40)", 0x00, 0x00, unused, 0, discretional}, {"vendor unique (41)", 0x00, 0x00, unused, 0, discretional}, {"vendor unique (42)", 0x00, 0x00, unused, 0, discretional}, {"vendor unique (43)", 0x00, 0x00, unused, 0, discretional}, {"vendor unique (44)", 0x00, 0x00, unused, 0, discretional}, {"vendor unique (45)", 0x00, 0x00, unused, 0, discretional}, {"phantom select", 0x00, 0x00, mode, 0, discretional}, {"phantom deselect", 0x00, 0x00, mode, 0, discretional}, }
121 #define QIC117_ERRORS { { "No error", 0, }, { "Command Received while Drive Not Ready", 0, }, { "Cartridge Not Present or Removed", 1, }, { "Motor Speed Error (not within 1%)", 1, }, { "Motor Speed Fault (jammed, or gross speed error", 1, }, { "Cartridge Write Protected", 1, }, { "Undefined or Reserved Command Code", 1, }, { "Illegal Track Address Specified for Seek", 1, }, { "Illegal Command in Report Subcontext", 0, }, { "Illegal Entry into a Diagnostic Mode", 1, }, { "Broken Tape Detected (based on hole sensor)", 1, }, { "Warning--Read Gain Setting Error", 1, }, { "Command Received While Error Status Pending (obs)", 1, }, { "Command Received While New Cartridge Pending", 1, }, { "Command Illegal or Undefined in Primary Mode", 1, }, { "Command Illegal or Undefined in Format Mode", 1, }, { "Command Illegal or Undefined in Verify Mode", 1, }, { "Logical Forward Not at Logical BOT or no Format Segments in Format Mode", 1, }, { "Logical EOT Before All Segments generated", 1, }, { "Command Illegal When Cartridge Not Referenced", 1, }, { "Self-Diagnostic Failed (cannot be cleared)", 1, }, { "Warning EEPROM Not Initialized, Defaults Set", 1, }, { "EEPROM Corrupted or Hardware Failure", 1, }, { "Motion Time-out Error", 1, }, { "Data Segment Too Long -- Logical Forward or Pause", 1, }, { "Transmit Overrun (obs)", 1, }, { "Power On Reset Occurred", 0, }, { "Software Reset Occurred", 0, }, { "Diagnostic Mode 1 Error", 1, }, { "Diagnostic Mode 2 Error", 1, }, { "Command Received During Non-Interruptible Process", 1, }, { "Rate or Format Selection Error", 1, }, { "Illegal Command While in High Speed Mode", 1, }, { "Illegal Seek Segment Value", 1, }, { "Invalid Media", 1, }, { "Head Positioning Failure", 1, }, { "Write Reference Burst Failure", 1, }, { "Prom Code Missing", 1, }, { "Invalid Format", 1, }, { "EOT/BOT System Failure", 1, }, { "Prom A Checksum Error", 1, }, { "Drive Wakeup Reset Occurred", 1, }, { "Prom B Checksum Error", 1, }, { "Illegal Entry into Format Mode", 1, }, }

Completed in 1150 milliseconds

1 2 3 4 5 6 7 891011>>