/third_party/skia/third_party/externals/angle2/ |
D | .vpython | 3 # 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 …]
|
D | .vpython3 | 3 # It describes patterns for python wheel dependencies of the python scripts in 29 wheel: < 34 wheel: <
|
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/ |
D | sctp_ss_functions.c | 67 TAILQ_INIT(&asoc->ss_data.out.wheel); in sctp_ss_default_init() 92 while (!TAILQ_EMPTY(&asoc->ss_data.out.wheel)) { in sctp_ss_default_clear() 95 strq = TAILQ_FIRST(&asoc->ss_data.out.wheel); in sctp_ss_default_clear() 96 TAILQ_REMOVE(&asoc->ss_data.out.wheel, strq, ss_params.rr.next_spoke); in sctp_ss_default_clear() 135 TAILQ_INSERT_TAIL(&asoc->ss_data.out.wheel, in sctp_ss_default_add() 147 if (TAILQ_EMPTY(&asoc->ss_data.out.wheel)) { in sctp_ss_default_is_empty() 171 asoc->ss_data.last_out_stream = TAILQ_LAST(&asoc->ss_data.out.wheel, in sctp_ss_default_remove() 178 TAILQ_REMOVE(&asoc->ss_data.out.wheel, strq, ss_params.rr.next_spoke); in sctp_ss_default_remove() 202 strq = TAILQ_FIRST(&asoc->ss_data.out.wheel); in sctp_ss_default_select() 206 strq = TAILQ_FIRST(&asoc->ss_data.out.wheel); in sctp_ss_default_select() [all …]
|
/third_party/python/Doc/library/ |
D | importlib.metadata.rst | 46 (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 …]
|
/third_party/grpc/tools/internal_ci/macos/ |
D | grpc_build_artifacts.sh | 27 python2.7 -m pip install -U cython setuptools wheel --user 28 python3.5 -m pip install -U cython setuptools wheel --user 29 python3.6 -m pip install -U cython setuptools wheel --user 30 python3.7 -m pip install -U cython setuptools wheel --user 31 python3.8 -m pip install -U cython setuptools wheel --user
|
/third_party/grpc/tools/run_tests/artifacts/ |
D | build_package_python.sh | 28 python -m pip install -U wheel 33 python -m wheel unpack "$WHEEL_PATH" -d "$TEMP_WHEEL_DIR" 40 python -m wheel pack "$TEMP_WHEEL_DIR/$DISTRIBUTION_NAME-$VERSION" -d "$TEMP_WHEEL_DIR" 44 for wheel in artifacts/*.whl; do 45 strip_binary_wheel "$wheel"
|
D | build_artifact_python.sh | 84 for wheel in dist/*.whl; do 85 "${AUDITWHEEL}" show "$wheel" | tee /dev/stderr | grep -E -w "$AUDITWHEEL_PLAT" 86 "${AUDITWHEEL}" repair "$wheel" -w "$ARTIFACT_DIR" 87 rm "$wheel" 89 for wheel in tools/distrib/python/grpcio_tools/dist/*.whl; do 90 "${AUDITWHEEL}" show "$wheel" | tee /dev/stderr | grep -E -w "$AUDITWHEEL_PLAT" 91 "${AUDITWHEEL}" repair "$wheel" -w "$ARTIFACT_DIR" 92 rm "$wheel"
|
/third_party/protobuf/python/release/wheel/ |
D | build_wheel_manylinux.sh | 24 docker rmi protobuf-python-wheel 25 docker build . -t protobuf-python-wheel 26 docker run --rm protobuf-python-wheel ./protobuf_optimized_pip.sh $PROTOBUF_VERSION $PYPI_USERNAME … 27 docker rmi protobuf-python-wheel
|
/third_party/libpng/scripts/ |
D | makefile.openbsd | 54 ${INSTALL} -d -o root -g wheel ${DESTDIR}${PREFIX}/include; \ 57 ${INSTALL} -d -o root -g wheel ${DESTDIR}${LIBDIR}; \ 60 ${INSTALL} -d -o root -g wheel ${DESTDIR}${LIBDIR}/debug; \ 63 ${INSTALL} -d -o root -g wheel ${DESTDIR}${MANDIR}3; \ 66 ${INSTALL} -d -o root -g wheel ${DESTDIR}${MANDIR}5; \ 69 ${INSTALL} -d -o root -g wheel ${DESTDIR}${PREFIX}/share/doc/png; \
|
/third_party/skia/third_party/externals/libpng/scripts/ |
D | makefile.openbsd | 54 ${INSTALL} -d -o root -g wheel ${DESTDIR}${PREFIX}/include; \ 57 ${INSTALL} -d -o root -g wheel ${DESTDIR}${LIBDIR}; \ 60 ${INSTALL} -d -o root -g wheel ${DESTDIR}${LIBDIR}/debug; \ 63 ${INSTALL} -d -o root -g wheel ${DESTDIR}${MANDIR}3; \ 66 ${INSTALL} -d -o root -g wheel ${DESTDIR}${MANDIR}5; \ 69 ${INSTALL} -d -o root -g wheel ${DESTDIR}${PREFIX}/share/doc/png; \
|
/third_party/flutter/skia/third_party/externals/libpng/scripts/ |
D | makefile.openbsd | 54 ${INSTALL} -d -o root -g wheel ${DESTDIR}${PREFIX}/include; \ 57 ${INSTALL} -d -o root -g wheel ${DESTDIR}${LIBDIR}; \ 60 ${INSTALL} -d -o root -g wheel ${DESTDIR}${LIBDIR}/debug; \ 63 ${INSTALL} -d -o root -g wheel ${DESTDIR}${MANDIR}3; \ 66 ${INSTALL} -d -o root -g wheel ${DESTDIR}${MANDIR}5; \ 69 ${INSTALL} -d -o root -g wheel ${DESTDIR}${PREFIX}/share/doc/png; \
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | NestedBuildersTest.java | 59 Wheel wheel = vehicle.getWheel(i); in testMessagesAndBuilders() local 60 assertEquals(4, wheel.getRadius()); in testMessagesAndBuilders() 61 assertEquals(i + 1, wheel.getWidth()); in testMessagesAndBuilders() 72 Wheel wheel = vehicle.getWheel(i); in testMessagesAndBuilders() local 73 assertEquals(5, wheel.getRadius()); in testMessagesAndBuilders() 74 assertEquals(i + 10, wheel.getWidth()); in testMessagesAndBuilders()
|
/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/ |
D | NestedBuildersTest.java | 70 Wheel wheel = vehicle.getWheel(i); in testMessagesAndBuilders() local 71 assertEquals(4, wheel.getRadius()); in testMessagesAndBuilders() 72 assertEquals(i + 1, wheel.getWidth()); in testMessagesAndBuilders() 85 Wheel wheel = vehicle.getWheel(i); in testMessagesAndBuilders() local 86 assertEquals(5, wheel.getRadius()); in testMessagesAndBuilders() 87 assertEquals(i + 10, wheel.getWidth()); in testMessagesAndBuilders()
|
/third_party/typescript/tests/baselines/reference/ |
D | objectLiteralContextualTyping.types | 34 var y = foo({ name: "Sprocket", description: "Bumpy wheel" }); 36 >foo({ name: "Sprocket", description: "Bumpy wheel" }) : string 38 >{ name: "Sprocket", description: "Bumpy wheel" } : { name: string; description: string; } 42 >"Bumpy wheel" : "Bumpy wheel"
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/doc/docbook/ |
D | wpa_supplicant.conf.sgml | 48 # allow frontend (e.g., wpa_cli) to be used by all users in 'wheel' group 49 ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel 82 ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel 104 ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel 126 ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel 151 ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel 181 ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/doc/docbook/ |
D | wpa_supplicant.conf.sgml | 52 # allow frontend (e.g., wpa_cli) to be used by all users in 'wheel' group 53 ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel 86 ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel 108 ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel 130 ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel 155 ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel 185 ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel
|
/third_party/grpc/test/distrib/python/ |
D | test_packages.sh | 40 "$PYTHON" -m pip install --upgrade six pip wheel 44 "$PYTHON" -m wheel unpack "$file" -d /tmp || return 1
|
/third_party/libinput/quirks/ |
D | 30-vendor-ibm.quirks | 3 # IBM/Lenovo Scrollpoint mouse. Instead of a scroll wheel these mice 5 # events that need to be handled differently than scroll wheel events
|
/third_party/flutter/skia/third_party/externals/imgui/examples/ |
D | imgui_impl_sdl.cpp | 89 if (event->wheel.x > 0) io.MouseWheelH += 1; in ImGui_ImplSDL2_ProcessEvent() 90 if (event->wheel.x < 0) io.MouseWheelH -= 1; in ImGui_ImplSDL2_ProcessEvent() 91 if (event->wheel.y > 0) io.MouseWheel += 1; in ImGui_ImplSDL2_ProcessEvent() 92 if (event->wheel.y < 0) io.MouseWheel -= 1; in ImGui_ImplSDL2_ProcessEvent()
|
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/ |
D | list_wheel_viewport.dart | 57 /// Render, onto a wheel, a bigger sequential set of objects inside this viewport. 110 /// The wheel's size and the maximum and minimum visible angles are both 132 /// Creates a [RenderListWheelViewport] which renders children on a wheel. 304 /// How much the wheel is horizontally off-center, as a fraction of its width. 306 /// This property creates the visual effect of looking at a vertical wheel from 308 /// of looking at the wheel head-on. 310 /// The value is horizontal distance between the wheel's center and the vertical 311 /// vanishing line at the edges of the wheel, represented as a fraction of the 312 /// wheel's width. 314 /// The value `0.0` means the wheel is looked at head-on and its vanishing [all …]
|
/third_party/libinput/src/ |
D | evdev-fallback.c | 218 dispatch->wheel.y *= -1; in fallback_flush_wheels() 219 normalize_delta(device, &dispatch->wheel, &unaccel); in fallback_flush_wheels() 224 dispatch->wheel.x = 0; in fallback_flush_wheels() 225 dispatch->wheel.y = 0; in fallback_flush_wheels() 230 if (dispatch->wheel.y != 0) { in fallback_flush_wheels() 231 wheel_degrees.y = -1 * dispatch->wheel.y * in fallback_flush_wheels() 233 discrete.y = -1 * dispatch->wheel.y; in fallback_flush_wheels() 242 dispatch->wheel.y = 0; in fallback_flush_wheels() 245 if (dispatch->wheel.x != 0) { in fallback_flush_wheels() 246 wheel_degrees.x = dispatch->wheel.x * in fallback_flush_wheels() [all …]
|
/third_party/protobuf/python/ |
D | release.sh | 88 twine upload --skip-existing -r testpypi -u protobuf-wheel-test dist/* 96 twine upload --skip-existing -r testpypi -u protobuf-wheel-test dist/*
|
/third_party/eudev/hwdb/ |
D | 70-mouse.hwdb | 107 # The angle in degrees per mouse wheel 'click', specified as 119 # Identical to MOUSE_WHEEL_CLICK_ANGLE but for the horizontal scroll wheel. 121 # scroll wheel differs from the vertical wheel. If so, *both* click angles 129 # The number of clicks the wheel sends per 360 degree rotation. This 144 # Indicates that the respective axis is not a mouse wheel rotation but a 146 # scroll wheel emulation on mice with only a single vertical wheel. 449 # Horiz wheel has 14 stops, angle is rounded up 459 # Horiz wheel has 14 stops, angle is rounded up 468 # Horiz wheel has 14 stops, angle is rounded up
|
/third_party/skia/third_party/externals/imgui/backends/ |
D | imgui_impl_sdl.cpp | 122 if (event->wheel.x > 0) io.MouseWheelH += 1; in ImGui_ImplSDL2_ProcessEvent() 123 if (event->wheel.x < 0) io.MouseWheelH -= 1; in ImGui_ImplSDL2_ProcessEvent() 124 if (event->wheel.y > 0) io.MouseWheel += 1; in ImGui_ImplSDL2_ProcessEvent() 125 if (event->wheel.y < 0) io.MouseWheel -= 1; in ImGui_ImplSDL2_ProcessEvent()
|
/third_party/PyYAML/ |
D | pyproject.toml | 2 requires = ["setuptools", "wheel", "Cython"]
|