Home
last modified time | relevance | path

Searched refs:down (Results 1 - 25 of 133) sorted by relevance

123456

/third_party/typescript/tests/baselines/reference/
H A Des6ClassTest8.js34 var down = new Vector(0.0, -1.0, 0.0);
36 this.right = Vector.times(down, Vector.norm(Vector.cross(this.forward, down)));
37 this.up = Vector.times(down, Vector.norm(Vector.cross(this.forward, this.right)));
70 var down = new Vector(0.0, -1.0, 0.0);
72 this.right = Vector.times(down, Vector.norm(Vector.cross(this.forward, down)));
73 this.up = Vector.times(down, Vector.norm(Vector.cross(this.forward, this.right)));
/third_party/libinput/tools/
H A Dlibinput-measure-touchpad-tap.py62 def __init__(self, down):
63 self._down = down
64 self._up = down
72 assert up > self.down
76 def down(self): member in Touch
81 return self.up - self.down
203 # 1: touch down time in ms, offset by first event
206 # Group 2, sorted by touch down-up delta time (ascending)
207 # 4: touch down time in ms, offset by first event
217 offset = deltas[0].down
[all...]
H A Dlibinput-measure-touch-size.py128 elif touch.major > self.device.down or touch.minor > self.device.down:
159 s += " down"
171 "down" if self.is_down else " ",
201 self.down = 0
244 self.down, self.up = colon_tuple(q[1])
277 # If the finger was down during start
309 print("Touch sizes used: {}:{}".format(self.down, self.up))
346 metavar="down:up",
348 help="Thresholds when a touch is logically down o
[all...]
/third_party/python/Lib/turtledemo/
H A Dpeace.py27 down()
38 down()
47 down()
52 down()
H A Dbytedesign.py36 self.down()
46 self.down()
54 self.down()
60 self.down()
70 self.down()
76 self.down()
89 self.down()
98 self.down()
H A Dyinyang.py29 down()
37 down()
/third_party/lwip/src/netif/ppp/
H A Dfsm.c115 * fsm_lowerdown - The lower layer is down.
145 if( f->callbacks->down ) in fsm_lowerdown()
146 (*f->callbacks->down)(f); in fsm_lowerdown()
195 * terminate_layer - Start process of shutting down the FSM
205 else if( f->callbacks->down ) in terminate_layer()
206 (*f->callbacks->down)(f); /* Inform upper layers we're down */ in terminate_layer()
405 /* Go down and restart negotiation */ in fsm_rconfreq()
406 if( f->callbacks->down ) in fsm_rconfreq()
407 (*f->callbacks->down)( in fsm_rconfreq()
[all...]
/third_party/node/deps/npm/node_modules/@colors/colors/lib/custom/
H A Dzalgo.js20 'down': [
41 var all = [].concat(soul.up, soul.down, soul.mid);
66 options['down'] =
67 typeof options['down'] !== 'undefined' ? options['down'] : true;
76 counts = {'up': 0, 'down': 0, 'mid': 0};
81 counts.down = randomNumber(8);
86 counts.down = randomNumber(64) + 3;
91 counts.down = randomNumber(8) + 1;
95 var arr = ['up', 'mid', 'down'];
[all...]
/third_party/node/test/parallel/
H A Dtest-double-tls-client.js33 const down = tls.connect({
38 down.write(HEAD, common.mustSucceed());
54 socket: down,
/third_party/ffmpeg/tests/fate/
H A Dmpeg4.mak2 MPEG4_RESOLUTION_CHANGE = down-down down-up up-down up-up
/third_party/python/Tools/demo/
H A Dqueens.py25 self.down = [0] * (2*n-1) # Is downward diagonal[x+y] safe?
39 return not self.row[y] and not self.up[x-y] and not self.down[x+y]
45 self.down[x+y] = 1
51 self.down[x+y] = 0
/third_party/skia/experimental/sktext/tests/
H A DSelectableText.cpp286 auto down = selectableText->downPosition(position); in UNIX_ONLY_TEST() local
287 REPORTER_ASSERT(reporter, position.fLineIndex + 1 == down.fLineIndex); in UNIX_ONLY_TEST()
288 REPORTER_ASSERT(reporter, position.fBoundaries.centerX() >= down.fBoundaries.centerX()); in UNIX_ONLY_TEST()
289 position = down; in UNIX_ONLY_TEST()
295 auto down = selectableText->downPosition(position); in UNIX_ONLY_TEST() local
296 REPORTER_ASSERT(reporter, position.fLineIndex - 1 == down.fLineIndex); in UNIX_ONLY_TEST()
297 REPORTER_ASSERT(reporter, position.fBoundaries.centerX() >= down.fBoundaries.centerX()); in UNIX_ONLY_TEST()
298 position = down; in UNIX_ONLY_TEST()
/third_party/libinput/test/
H A Dlitest-device-wacom-cintiq-pro-16-pad.c29 static struct input_event down[] = { variable
38 .touch_down_events = down,
H A Dlitest-device-wacom-bamboo-2fg-pad.c29 static struct input_event down[] = { variable
38 .touch_down_events = down,
H A Dlitest-device-generic-singletouch.c29 static struct input_event down[] = { variable
46 .touch_down_events = down,
H A Dlitest-device-calibrated-touchscreen.c29 static struct input_event down[] = { variable
47 .touch_down_events = down,
H A Dlitest-device-dell-canvas-totem-touch.c29 static struct input_event down[] = { variable
51 .touch_down_events = down,
H A Dlitest-device-touch-screen.c29 static struct input_event down[] = { variable
55 .touch_down_events = down,
H A Dlitest-device-touchscreen-mt-tool.c30 static struct input_event down[] = { variable
52 .touch_down_events = down,
H A Dlitest-device-touchscreen-invalid-range.c30 static struct input_event down[] = { variable
50 .touch_down_events = down,
H A Dlitest-device-touchscreen-fuzz.c29 static struct input_event down[] = { variable
49 .touch_down_events = down,
/third_party/ltp/testcases/network/stress/interface/
H A Dif-updown.sh22 ifconfig) ifconfig $iface down ;;
23 ip) ip link set $iface down ;;
26 tst_res TFAIL "Failed to down $iface"
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
H A DCalendarCalc.java160 Button down; field in CalendarCalcFrame
250 down = new Button("v"); in buildGUI()
252 down.setBackground(DemoUtility.bgColor); in buildGUI()
254 upDown.add(down); in buildGUI()
256 down.addActionListener(this); in buildGUI()
465 if (evt.getSource() == down) { in actionPerformed()
514 else if (evt.id == Event.ACTION_EVENT && evt.target == down) {
/third_party/lame/misc/
H A Dath.c288 down = 1, enumerator
299 direction_t direction; // down, up, still_up, still_down, turn_down, turn_up
300 int multiplier; // -TURN_STEPS: down, +TURN_STEPS up
352 a->direction = down; in iterate_amplifier()
358 case down: in iterate_amplifier()
380 if (a->direction == down) { in change_direction()
383 fprintf ( stderr, "Direction not down, so ignored\n" ); in change_direction()
387 case down: in change_direction()
400 case down: in change_direction()
716 fprintf ( stderr, "\r--- down in experiment()
[all...]
/third_party/node/deps/npm/node_modules/console-control-strings/
H A Dindex.js11 exports.down = function down (num) { function

Completed in 10 milliseconds

123456