Home
last modified time | relevance | path

Searched +full:style +full:- +full:mod (Results 1 – 25 of 1050) sorted by relevance

12345678910>>...42

/external/rust/crates/rustversion/src/
Dlib.rs1 …//github.com/dtolnay/rustversion) [![crates-io]](https://crates.io/crates/rustversion) […
3 //! [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo…
4 //! [crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=55555…
5 //! [docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&lo…
13 //! [cfg]: https://doc.rust-lang.org/reference/conditional-compilation.html#the-cfg-attribute
14 //! [cfg_attr]: https://doc.rust-lang.org/reference/conditional-compilation.html#the-cfg_attr-attri…
20 //! - <p style="margin-left:50px;text-indent:-50px">
26 //! - <p style="margin-left:50px;text-indent:-50px">
32 //! - <p style="margin-left:50px;text-indent:-50px">
38 //! - <p style="margin-left:50px;text-indent:-50px">
[all …]
/external/python/cpython2/Doc/library/
Ddbhash.rst1 :mod:`dbhash` --- DBM-style interface to the BSD database library
5 :synopsis: DBM-style interface to the BSD database library.
9 The :mod:`dbhash` module has been removed in Python 3.
13 The :mod:`dbhash` module provides a function to open databases using the BSD
15 modules that provide access to DBM-style databases. The :mod:`bsddb` module is
16 required to use :mod:`dbhash`.
34 +---------+-------------------------------------------+
39 +---------+-------------------------------------------+
42 +---------+-------------------------------------------+
45 +---------+-------------------------------------------+
[all …]
Daetypes.rst2 :mod:`aetypes` --- AppleEvent objects
12 The :mod:`aetypes` defines classes used to represent Apple Event data
20 automatically by :mod:`aepack`.
24 Apple Event or as the argument of an optional parameter. The :mod:`aetypes`
26 by the packages generated by :mod:`gensuitemodule` to populate the classes and
40 The :mod:`AEObjects` module defines the following classes to represent Apple
46 The representation of OSA descriptor data for which the :mod:`aepack` and
47 :mod:`aetypes` modules have no support, i.e. anything that is not represented by
53 An enumeration value with the given 4-character string value.
66 .. class:: StyledText(style, text)
[all …]
Danydbm.rst1 :mod:`anydbm` --- Generic access to DBM-style databases
5 :synopsis: Generic interface to DBM-style database modules.
9 The :mod:`anydbm` module has been renamed to :mod:`dbm` in Python 3. The
20 :mod:`anydbm` is a generic interface to variants of the DBM database ---
21 :mod:`dbhash` (requires :mod:`bsddb`), :mod:`gdbm`, or :mod:`dbm`. If none of
22 these modules is installed, the slow-but-simple implementation in module
23 :mod:`dumbdbm` will be used.
30 If the database file already exists, the :mod:`whichdb` module is used to
36 +---------+-------------------------------------------+
41 +---------+-------------------------------------------+
[all …]
Dfnmatch.rst1 :mod:`fnmatch` --- Unix filename pattern matching
5 :synopsis: Unix shell style filename pattern matching.
14 --------------
16 This module provides support for Unix shell-style wildcards, which are *not* the
17 same as regular expressions (which are documented in the :mod:`re` module). The
18 special characters used in shell-style wildcards are:
20 +------------+------------------------------------+
24 +------------+------------------------------------+
26 +------------+------------------------------------+
28 +------------+------------------------------------+
[all …]
Dpickle.rst1 :mod:`pickle` --- Python object serialization
17 The :mod:`pickle` module implements a fundamental, but powerful algorithm for
18 serializing and de-serializing a Python object structure. "Pickling" is the
25 This documentation describes both the :mod:`pickle` module and the
26 :mod:`cPickle` module.
30 The :mod:`pickle` module is not secure against erroneous or maliciously
36 ------------------------------------
38 The :mod:`pickle` module has an optimized cousin called the :mod:`cPickle`
39 module. As its name implies, :mod:`cPickle` is written in C, so it can be up to
40 1000 times faster than :mod:`pickle`. However it does not support subclassing
[all …]
Dglob.rst1 :mod:`glob` --- Unix style pathname pattern expansion
5 :synopsis: Unix shell style pathname pattern expansion.
12 --------------
14 The :mod:`glob` module finds all the pathnames matching a specified pattern
20 :mod:`glob` treats filenames beginning with a dot (``.``) as special cases.
24 For a literal match, wrap the meta-characters in brackets.
30 Return a possibly-empty list of path names that match *pathname*, which must be
32 (like :file:`/usr/src/Python-1.5/Makefile`) or relative (like
33 :file:`../../Tools/\*/\*.gif`), and can contain shell-style wildcards. Broken
50 >>> glob.glob('./[0-9].*')
[all …]
/external/rust/crates/ryu/src/
Dlib.rs1 …hub]](https://github.com/dtolnay/ryu)&ensp;[![crates-io]](https://crates.io/crates/ryu)&ensp;[![do…
3 //! [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo…
4 //! [crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=55555…
5 //! [docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&lo…
12 //! The PLDI'18 paper [*Ryū: fast float-to-string conversion*][paper] by Ulf
14 //! available under the creative commons CC-BY-SA license.
16 //! This Rust implementation is a line-by-line port of Ulf Adams' implementation
39 //! $ git clone https://github.com/ulfjack/ryu c-ryu
40 //! $ cd c-ryu
41 //! $ bazel run -c opt //ryu/benchmark
[all …]
/external/python/cpython3/Doc/library/
Dfnmatch.rst1 :mod:`fnmatch` --- Unix filename pattern matching
5 :synopsis: Unix shell style filename pattern matching.
13 --------------
15 This module provides support for Unix shell-style wildcards, which are *not* the
16 same as regular expressions (which are documented in the :mod:`re` module). The
17 special characters used in shell-style wildcards are:
20 single: * (asterisk); in glob-style wildcards
21 single: ? (question mark); in glob-style wildcards
22 single: [] (square brackets); in glob-style wildcards
23 single: ! (exclamation); in glob-style wildcards
[all …]
Dglob.rst1 :mod:`glob` --- Unix style pathname pattern expansion
5 :synopsis: Unix shell style pathname pattern expansion.
11 --------------
14 single: * (asterisk); in glob-style wildcards
15 single: ? (question mark); in glob-style wildcards
16 single: [] (square brackets); in glob-style wildcards
17 single: ! (exclamation); in glob-style wildcards
18 single: - (minus); in glob-style wildcards
19 single: . (dot); in glob-style wildcards
21 The :mod:`glob` module finds all the pathnames matching a specified pattern
[all …]
/external/rust/crates/serde_yaml/src/
Dlib.rs1 …github.com/dtolnay/serde-yaml)&ensp;[![crates-io]](https://crates.io/crates/serde-yaml)&ensp;[![do…
3 //! [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo…
4 //! [crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=55555…
5 //! [docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&lo…
12 //! [Serde]: https://github.com/serde-rs/serde
20 //! fn main() -> Result<(), serde_yaml::Error> {
54 //! fn main() -> Result<(), serde_yaml::Error> {
80 //! fn main() -> Result<(), serde_yaml::Error> {
82 //! - !Newtype 1
83 //! - !Tuple [0, 0, 0]
[all …]
/external/python/setuptools/docs/userguide/
Dpackage_discovery.rst25 .. code-block:: ini
35 .. code-block:: python
44 .. code-block:: toml
57 .. code-block:: ini
67 # mypkg1.mod corresponds to lib1/mod.py
68 # mypkg1.subpkg.mod corresponds to lib1/subpkg/mod.py
70 # mypkg2.mod corresponds to lib2/mod.py
72 # mypkg2.subpkg.mod corresponds to lib3/mod.py
76 .. code-block:: python
89 "mypkg1": "lib1", # mypkg1.mod corresponds to lib1/mod.py
[all …]
/external/crosvm/devices/src/usb/backend/fido_backend/
Dmod.rs2 // Use of this source code is governed by a BSD-style license that can be
5 mod constants;
6 pub mod error;
7 pub mod fido_device;
8 pub mod fido_guest;
9 pub mod fido_passthrough;
10 pub mod fido_provider;
11 pub mod fido_transaction;
12 pub mod hid_utils;
13 pub mod poll_thread;
[all …]
/external/rust/crates/prettyplease/src/
Dlib.rs1 …github.com/dtolnay/prettyplease)&ensp;[![crates-io]](https://crates.io/crates/prettyplease)&ensp;[…
3 //! [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo…
4 //! [crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=55555…
5 //! [docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&lo…
9 //! **prettyplease::unparse** &mdash; a minimal `syn` syntax tree pretty-printer
15 //! This is a pretty-printer to turn a `syn` syntax tree into a `String` of
16 //! well-formatted source code. In contrast to rustfmt, this library is intended
19 //! Rustfmt prioritizes high-quality output that is impeccable enough that you'd
23 //! more issues like it). That's not necessarily a big deal for human-generated
28 //! [rustfmt#3697]: https://github.com/rust-lang/rustfmt/issues/3697
[all …]
/external/crosvm/base/src/sys/windows/
Dmod.rs2 // Use of this source code is governed by a BSD-style license that can be
10 pub mod ioctl;
12 pub mod syslog;
13 mod console;
14 mod descriptor;
15 mod event;
16 mod events;
17 pub mod file_traits;
18 mod file_util;
19 mod foreground_window;
[all …]
/external/rust/crates/remain/src/
Dlib.rs1 …(https://github.com/dtolnay/remain)&ensp;[![crates-io]](https://crates.io/crates/remain)&ensp;[![d…
3 //! [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo…
4 //! [crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=55555…
5 //! [docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&lo…
15 //! Place a `#[remain::sorted]` attribute on enums, structs, match-expressions,
16 //! or let-statements whose value is a match-expression.
42 //! fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
60 //! # mod signal {
64 //! # mod libcras {
68 //! # mod sys_util {
[all …]
/external/crosvm/devices/src/usb/backend/
Dmod.rs2 // Use of this source code is governed by a BSD-style license that can be
5 pub mod device;
6 pub mod device_provider;
7 pub mod endpoint;
8 pub mod error;
9 pub mod fido_backend;
10 pub mod host_backend;
11 pub mod transfer;
12 pub mod utils;
/external/crosvm/devices/src/virtio/snd/
Dmod.rs2 // Use of this source code is governed by a BSD-style license that can be
5 pub mod common;
6 pub mod constants;
7 pub mod layout;
8 pub mod parameters;
9 pub mod sys;
11 pub mod common_backend;
12 pub mod file_backend;
13 pub mod null_backend;
17 pub mod vios_backend;
/external/crosvm/base/src/sys/unix/
Dmod.rs2 // Use of this source code is governed by a BSD-style license that can be
5 pub mod descriptor;
6 pub mod file_traits;
8 pub mod handle_eintr;
9 mod fcntl;
10 mod file_flags;
11 mod iobuf;
12 pub mod net;
13 mod sock_ctrl_msg;
14 mod stream_channel;
[all …]
/external/crosvm/rutabaga_gfx/src/
Dlib.rs2 // Use of this source code is governed by a BSD-style license that can be
5 //! A crate for handling 2D and 3D virtio-gpu hypercalls, along with graphics
8 mod cross_domain;
9 mod generated;
10 mod gfxstream;
11 mod gfxstream_stub;
13 mod macros;
15 mod renderer_utils;
16 mod rutabaga_2d;
17 mod rutabaga_core;
[all …]
/external/crosvm/cros_async/src/sys/
Dwindows.rs2 // Use of this source code is governed by a BSD-style license that can be
5 pub mod async_types;
6 mod error;
7 pub mod event;
8 pub mod executor;
9 pub mod handle_executor;
10 pub mod handle_source;
11 mod io_completion_port;
12 pub mod overlapped_source;
13 mod timer;
[all …]
Dlinux.rs2 // Use of this source code is governed by a BSD-style license that can be
5 pub mod async_types;
6 mod error;
7 pub mod event;
8 pub mod executor;
9 pub mod fd_executor;
10 pub mod poll_source;
11 mod timer;
13 pub mod tokio_source;
14 pub mod uring_executor;
[all …]
/external/crosvm/virtio_sys/src/
Dlib.rs2 // Use of this source code is governed by a BSD-style license that can be
12 pub mod vhost;
14 pub mod vhost_ioctl;
15 pub mod virtio_config;
16 pub mod virtio_fs;
17 pub mod virtio_ids;
18 pub mod virtio_mmio;
19 pub mod virtio_net;
20 pub mod virtio_ring;
21 pub mod virtio_scsi;
[all …]
/external/crosvm/src/
Dcrosvm.rs2 // Use of this source code is governed by a BSD-style license that can be
8 pub mod cmdline;
9 pub mod config;
11 pub mod gdb;
13 mod gpu_config;
15 pub mod plugin;
17 pub mod ratelimit;
18 pub mod sys;
/external/rust/crates/unsafe-libyaml/src/
Dlib.rs1 …b.com/dtolnay/unsafe-libyaml)&ensp;[![crates-io]](https://crates.io/crates/unsafe-libyaml)&ensp;[!…
3 //! [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo…
4 //! [crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=55555…
5 //! [docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&lo…
8 #![doc(html_root_url = "https://docs.rs/unsafe-libyaml/0.2.10")]
40 clippy::while_immutable_condition, // https://github.com/rust-lang/rust-clippy/issues/3548
47 mod libc {
55 mod externs {
66 (need_len + MALLOC_ALIGN - 1) & !(MALLOC_ALIGN - 1)
81 pub unsafe fn malloc(size: libc::c_ulong) -> *mut libc::c_void { in malloc()
[all …]

12345678910>>...42