Home
last modified time | relevance | path

Searched full:wheel (Results 1 – 25 of 613) sorted by relevance

12345678910>>...25

/external/angle/
D.vpython33 # It describes patterns for python wheel dependencies of the python scripts in
29 wheel: <
36 wheel: <
46 wheel: <
53 wheel: <
60 wheel: <
67 wheel: <
74 wheel: <
81 wheel: <
88 wheel: <
[all …]
D.vpython3 # It describes patterns for python wheel dependencies of the python scripts in
32 wheel: <
36 wheel: <
56 wheel: <
63 wheel: <
77 wheel: <
104 wheel: <
111 wheel: <
124 wheel: <
131 wheel: <
[all …]
/external/libyuv/files/
D.vpython33 # It describes patterns for python wheel dependencies of the python scripts in
44 wheel: <
51 wheel: <
59 wheel: <
67 wheel: <
74 wheel: <
78 wheel: <
84 wheel: <
88 wheel: <
92 wheel: <
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
DImplicitTagsTest.java37 Wheel wheel = new Wheel(); in testDefaultRepresenter() local
38 wheel.setId(2); in testDefaultRepresenter()
39 car1.setWheel(wheel); in testDefaultRepresenter()
43 car1.setPart(new Wheel(4)); in testDefaultRepresenter()
55 Wheel wheel = new Wheel(); in testNoRootTag() local
56 wheel.setId(2); in testNoRootTag()
57 car1.setWheel(wheel); in testNoRootTag()
74 Wheel wheel = new Wheel(); in testRootMap() local
75 wheel.setId(2); in testRootMap()
79 car1.put("wheel", wheel); in testRootMap()
[all …]
DArrayTagsTest.java33 Wheel[] wheels = new Wheel[5]; in testDefaultRepresenter()
35 Wheel wheel = new Wheel(); in testDefaultRepresenter() local
36 wheel.setId(i); in testDefaultRepresenter()
37 wheels[i - 1] = wheel; in testDefaultRepresenter()
47 Wheel[] wheels = new Wheel[5]; in testFlowBlock()
49 Wheel wheel = new Wheel(); in testFlowBlock() local
50 wheel.setId(i); in testFlowBlock()
51 wheels[i - 1] = wheel; in testFlowBlock()
66 List<Wheel> wheels = car.getWheels(); in testLoadClassTag()
87 Wheel[] wheels = car.getWheels(); in testLoadClassNoRoot()
[all …]
DClassTagsTest.java35 List<Wheel> wheels = new ArrayList<Wheel>(); in testDefaultRepresenter()
37 Wheel wheel = new Wheel(); in testDefaultRepresenter() local
38 wheel.setId(i); in testDefaultRepresenter()
39 wheels.add(wheel); in testDefaultRepresenter()
48 List<Wheel> wheels = new ArrayList<Wheel>(); in testDumpClassTag()
50 Wheel wheel = new Wheel(); in testDumpClassTag() local
51 wheel.setId(i); in testDumpClassTag()
52 wheels.add(wheel); in testDumpClassTag()
57 representer.addClassTag(Wheel.class, Tag.MAP); in testDumpClassTag()
81 List<Wheel> wheels = car.getWheels(); in testLoadClassTag()
[all …]
DWheel.java18 public class Wheel { class
21 public Wheel(int id) { in Wheel() method in Wheel
25 public Wheel() { in Wheel() method in Wheel
39 return "Wheel id=" + id; in toString()
44 if (obj instanceof Wheel) { in equals()
45 Wheel wheel = (Wheel) obj; in equals() local
46 return id == wheel.getId(); in equals()
DTypeSafeCollectionsTest.java36 carDescription.putListPropertyType("wheels", Wheel.class); in testTypeSafeList()
41 List<Wheel> wheels = car.getWheels(); in testTypeSafeList()
44 for (Wheel wheel : wheels) { in testTypeSafeList()
45 assertTrue(wheel.getId() > 0); in testTypeSafeList()
61 for (MyWheel wheel : wheels.keySet()) { in testTypeSafeMap()
62 assertTrue(wheel.getId() > 0); in testTypeSafeMap()
63 Date date = wheels.get(wheel); in testTypeSafeMap()
97 Object wheel = car.getWheels().keySet().iterator().next(); in testWithGlobalTag() local
98 assertTrue(wheel instanceof MyWheel); in testWithGlobalTag()
99 MyWheel w = (MyWheel) wheel; in testWithGlobalTag()
/external/perfetto/test/stress_test/
DREADME.md89 drwxr-xr-x 16 primiano wheel 512B 5 Aug 09:16 bursts
90 drwxr-xr-x 9 primiano wheel 288B 5 Aug 09:16 simple
91 drwxr-xr-x 38 primiano wheel 1.2K 5 Aug 09:16 the_storm
95 -rw-r--r-- 1 primiano wheel 0B 5 Aug 09:16 errors.log
96 -rw-r--r-- 1 primiano wheel 180B 5 Aug 09:16 perfetto.log
97 -rw-r--r-- 1 primiano wheel 441B 5 Aug 09:16 producer.0.log
99 -rw-r--r-- 1 primiano wheel 441B 5 Aug 09:16 producer.9.log
100 -rw------- 1 primiano wheel 11M 5 Aug 09:16 trace
101 -rw-r--r-- 1 primiano wheel 407B 5 Aug 09:16 traced.log
105 srwxr-xr-x 1 primiano wheel 0B 5 Aug 09:16 consumer.sock
[all …]
/external/python/cpython3/Doc/library/
Dimportlib.metadata.rst46 (example) $ pip install wheel
48 You can get the version string for ``wheel`` by running the following:
54 >>> version('wheel') # doctest: +SKIP
63 >>> list(metadata('wheel')) # doctest: +SKIP
111 Pick out a specific script named "wheel" (found in the wheel project)::
113 >>> 'wheel' in scripts.names # doctest: +SKIP
115 >>> wheel = scripts['wheel'] # doctest: +SKIP
119 >>> (wheel,) = entry_points(group='console_scripts', name='wheel') # doctest: +SKIP
120 >>> (wheel,) = entry_points().select(group='console_scripts', name='wheel') # doctest: +SKIP
124 >>> wheel # doctest: +SKIP
[all …]
/external/webrtc/
D.vpython33 # It describes patterns for python wheel dependencies of the python scripts in
29 wheel: <
35 wheel: <
40 wheel: <
48 wheel: <
60 wheel: <
65 wheel: <
69 wheel: <
73 wheel: <
77 wheel: <
[all …]
D.vpython3 # It describes patterns for python wheel dependencies of the python scripts in
29 wheel: <
35 wheel: <
42 wheel: <
53 wheel: <
57 wheel: <
61 wheel: <
65 wheel: <
69 wheel: <
73 wheel: <
/external/pigweed/pw_build/py/pw_build/
Dcollect_wheels.py60 for wheel in path.glob('**/*.whl'):
61 if wheel.name in copied_files:
64 copied_files[wheel.name],
65 wheel,
68 f'{wheel.name} conflict: '
69 f'{copied_files[wheel.name]} and {wheel}'
71 copied_files[wheel.name] = wheel
72 _LOG.debug('Copying %s to %s', wheel, out_dir)
73 shutil.copy(wheel, out_dir)
/external/python/setuptools/setuptools/
Dinstaller.py11 from setuptools.wheel import Wheel
26 Use pip/wheel to fetch/build a wheel."""
32 # Warn if wheel is not available
34 pkg_resources.get_distribution('wheel')
36 dist.announce('WARNING: The wheel package is not available.', log.WARN)
68 'wheel', '--no-deps',
85 wheel = Wheel(glob.glob(os.path.join(tmpdir, '*.whl'))[0])
86 dist_location = os.path.join(eggs_dir, wheel.egg_name())
87 wheel.install_as_egg(dist_location)
/external/cronet/base/task/sequence_manager/
Dhierarchical_timing_wheel.h23 // wheel as the object moves around within it. It can be used to subsequently
62 // The handle of the timing wheel in the hierarchical timing wheel where the
66 // The handle of the heap in the hierarchical timing wheel where the element
138 // This class is an implementation of timing wheel technique. It contains a
146 // hierarchy. |WheelSize| is the number of buckets in each of the timing wheel.
148 // bucket for the smallest timing wheel in the hierarchy. The time delta per
150 // |time_delta_per_bucket| of previous timing wheel.
166 // Wheel{1} - each bucket of 500microseconds = 0.5ms.
171 // Wheel{2} - each bucket of 50ms.
176 // Wheel{3} - each bucket of 5s.
[all …]
/external/libchrome-gestures/src/
Dmouse_interpreter_unittest.cc72 EXPECT_LT(-1, gs->details.wheel.dx); in TEST()
73 EXPECT_GT(1, gs->details.wheel.dy); in TEST()
101 EXPECT_EQ(0, gs->details.wheel.dx); in TEST()
102 float offset_of_8th_notch_scroll = gs->details.wheel.dy; in TEST()
108 EXPECT_EQ(0, gs->details.wheel.dx); in TEST()
111 EXPECT_NEAR(offset_of_8th_notch_scroll, gs->details.wheel.dy, 0.1); in TEST()
116 EXPECT_EQ(0, gs->details.wheel.dx); in TEST()
117 float offset_of_high_res_scroll = gs->details.wheel.dy; in TEST()
124 EXPECT_EQ(0, gs->details.wheel.dx); in TEST()
127 EXPECT_NEAR(offset_of_high_res_scroll, gs->details.wheel.dy, 0.1); in TEST()
[all …]
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DNestedBuildersTest.java37 import protobuf_unittest.Wheel;
63 Wheel wheel = vehicle.getWheel(i); in testMessagesAndBuilders() local
64 assertThat(wheel.getRadius()).isEqualTo(4); in testMessagesAndBuilders()
65 assertThat(wheel.getWidth()).isEqualTo(i + 1); in testMessagesAndBuilders()
76 Wheel wheel = vehicle.getWheel(i); in testMessagesAndBuilders() local
77 assertThat(wheel.getRadius()).isEqualTo(5); in testMessagesAndBuilders()
78 assertThat(wheel.getWidth()).isEqualTo(i + 10); in testMessagesAndBuilders()
96 List<Wheel> wheels = new ArrayList<Wheel>(vehicleBuilder.getWheelList()); in testMessagesAreCached()
136 vehicleBuilder.addWheel(Wheel.newBuilder().setRadius(1).setWidth(1)); in testRemove_WithNestedMessages()
137 vehicleBuilder.addWheel(Wheel.newBuilder().setRadius(2).setWidth(2)); in testRemove_WithNestedMessages()
[all …]
/external/cronet/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DNestedBuildersTest.java37 import protobuf_unittest.Wheel;
63 Wheel wheel = vehicle.getWheel(i); in testMessagesAndBuilders() local
64 assertThat(wheel.getRadius()).isEqualTo(4); in testMessagesAndBuilders()
65 assertThat(wheel.getWidth()).isEqualTo(i + 1); in testMessagesAndBuilders()
76 Wheel wheel = vehicle.getWheel(i); in testMessagesAndBuilders() local
77 assertThat(wheel.getRadius()).isEqualTo(5); in testMessagesAndBuilders()
78 assertThat(wheel.getWidth()).isEqualTo(i + 10); in testMessagesAndBuilders()
96 List<Wheel> wheels = new ArrayList<Wheel>(vehicleBuilder.getWheelList()); in testMessagesAreCached()
136 vehicleBuilder.addWheel(Wheel.newBuilder().setRadius(1).setWidth(1)); in testRemove_WithNestedMessages()
137 vehicleBuilder.addWheel(Wheel.newBuilder().setRadius(2).setWidth(2)); in testRemove_WithNestedMessages()
[all …]
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/artifacts/
Dbuild_artifact_python.sh27 # Install Cython to avoid source wheel build failure.
49 # to end up with correctly named wheel file
54 …# override the value of EXT_SUFFIX to make sure the crosscompiled .so files in the wheel have the …
66 # to end up with correctly named wheel file
70 …# override the value of EXT_SUFFIX to make sure the crosscompiled .so files in the wheel have the …
83 # Wheel has a bug where directories don't get excluded.
84 # https://bitbucket.org/pypa/wheel/issues/99/cannot-exclude-directory
129 for wheel in dist/*.whl; do
130 "${AUDITWHEEL}" show "$wheel" | tee /dev/stderr | grep -E -w "$AUDITWHEEL_PLAT"
131 "${AUDITWHEEL}" repair "$wheel" -w "$ARTIFACT_DIR"
[all …]
/external/libchrome-gestures/include/
Dmouse_interpreter.h31 // mouse events are presented, result object is not modified. Scroll wheel
40 // Check for scroll wheel events and produce scroll gestures.
53 // the mouse wheel faster.
61 // Records last scroll wheel event.
64 // Accumulators to measure scroll distance while doing scroll wheel emulation
68 // True while wheel emulation is locked in.
74 // Reverse wheel scrolling.
80 // We use normal CDF to simulate scroll wheel acceleration curve. Use the
84 // Note: x for wheel value, v for velocity, y for scroll pixels (offset),
110 // Force scroll wheel emulation for any devices
[all …]
/external/rust/crates/tokio/src/runtime/time/
Dmod.rs19 mod wheel; module
54 /// A hashed timing wheel is a vector of slots, where each slot handles a time
57 /// end of the wheel, it starts again at the beginning.
60 /// levels go up, the slots of the associated wheel represent larger intervals
61 /// of time. At each level, the wheel has 64 slots. Each slot covers a range of
62 /// time equal to the wheel at the lower level. At level zero, each slot
76 /// levels, all entries will be redistributed across the wheel at the next level
117 /// Timer wheel.
118 wheel: wheel::Wheel, field
137 wheel: wheel::Wheel::new(), in new()
[all …]
/external/python/setuptools/setuptools/tests/
Dtest_wheel.py3 """wheel tests
23 from setuptools.wheel import Wheel
73 Wheel(filename)
75 w = Wheel(filename)
136 w = Wheel(filename)
182 'WHEEL',
214 'WHEEL',
284 'WHEEL',
308 'WHEEL',
339 'WHEEL',
[all …]
/external/rust/crates/tokio-util/src/time/wheel/
Dmod.rs12 /// Timing wheel implementation.
14 /// This type provides the hashed timing wheel implementation that backs `Timer`
24 pub(crate) struct Wheel<T> { struct
25 /// The number of milliseconds elapsed since the wheel started.
28 /// Timer wheel.
55 impl<T> Wheel<T> impl
59 /// Create a new timing wheel
60 pub(crate) fn new() -> Wheel<T> { in new()
63 Wheel { elapsed: 0, levels } in new()
67 /// wheel's creation.
[all …]
/external/pigweed/pw_env_setup/
DBUILD.gn147 # standalone wheel.
149 # To create this wheel run:
150 # ninja -C out pw_env_setup:generate_pw_env_setup_distribution.wheel
151 # The resulting wheel is available in
165 # To create this wheel run:
166 # ninja -C out pw_env_setup:generate_pw_system_distribution.wheel
167 # The resulting wheel is available in
190 # To create this wheel run:
191 # ninja -C out pw_env_setup:generate_hdlc_proto_rpc_tokenizer_distribution.wheel
192 # The resulting wheel is available in
/external/pdfium/
D.vpython33 # It describes patterns for python wheel dependencies of the python scripts in
29 wheel: <
35 wheel: <
39 wheel: <
43 wheel: <
47 wheel: <
51 wheel: <

12345678910>>...25