Home
last modified time | relevance | path

Searched refs:doc (Results 551 - 575 of 685) sorted by relevance

1...<<2122232425262728

/third_party/rust/crates/cxx/macro/src/syntax/
H A Dtokens.rs46 doc: _, in to_tokens()
/third_party/rust/crates/cxx/syntax/
H A Dtokens.rs46 doc: _, in to_tokens()
/third_party/rust/crates/regex/regex-syntax/src/
H A Dutf8.rs317 #[doc(hidden)]
/third_party/rust/crates/nix/src/sys/ioctl/
H A Dmod.rs206 //! For documentation, it is possible to use doc comments inside the `ioctl_*!` macros. Here is an
264 #[doc(hidden)]
/third_party/rust/crates/nix/src/
H A Dpty.rs207 #[cfg_attr(docsrs, doc(cfg(all())))]
/third_party/rust/crates/rust-openssl/openssl/src/
H A Daes.rs27 doc = r#"\
/third_party/rust/crates/minimal-lexical/src/
H A Dslow.rs7 #![doc(hidden)]
/third_party/rust/crates/os_str_bytes/src/
H A Draw_str.rs104 #[cfg_attr(os_str_bytes_docs_rs, doc(cfg(feature = "raw_os_str")))]
228 doc(cfg(feature = "checked_conversions"))
917 #[cfg_attr(os_str_bytes_docs_rs, doc(cfg(feature = "raw_os_str")))]
983 #[cfg_attr(os_str_bytes_docs_rs, doc(cfg(feature = "raw_os_str")))]
1095 doc(cfg(feature = "checked_conversions"))
1482 #[cfg_attr(os_str_bytes_docs_rs, doc(cfg(feature = "print_bytes")))]
1523 #[cfg_attr(os_str_bytes_docs_rs, doc(cfg(feature = "uniquote")))]
/third_party/rust/crates/syn/src/
H A Dbuffer.rs59 #[cfg_attr(doc_cfg, doc(cfg(feature = "proc-macro")))]
H A Derror.rs188 #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))]
/third_party/rust/crates/proc-macro-error/src/
H A Dmacros.rs195 #[doc(hidden)]
/third_party/rust/crates/bindgen/bindgen/codegen/
H A Dmod.rs660 attrs.push(attributes::doc(comment)); in codegen()
832 attributes::doc(comment) in codegen()
943 attributes::doc(comment) in codegen()
1418 field = attributes::doc(comment); in codegen()
2072 attributes.push(attributes::doc(comment)); in codegen()
2820 let mut doc = quote! {}; in with_variant() variables
2824 doc = attributes::doc(comment); in with_variant()
2841 #doc in with_variant()
2862 #doc in with_variant()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/charsetdet/
H A DTestCharsetDetector.java350 Document doc; in TestDetection()
352 doc = builder.parse(is, null); in TestDetection()
356 Element root = doc.getDocumentElement(); in TestDetection()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/
H A DTestCharsetDetector.java347 Document doc; in TestDetection()
349 doc = builder.parse(is, null); in TestDetection()
353 Element root = doc.getDocumentElement(); in TestDetection()
/third_party/json/tests/src/
H A Dunit-regression1.cpp588 json doc = R"( { "arr1": [1, 2, 3, 4] } )"_json; variable
592 CHECK(doc.patch(json::diff(doc, expected)) == expected);
/third_party/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-port.h2181 # define GTEST_DEFINE_bool_(name, default_val, doc) \
2183 # define GTEST_DEFINE_int32_(name, default_val, doc) \
2185 # define GTEST_DEFINE_string_(name, default_val, doc) \
/third_party/elfutils/src/
H A Delfcmp.c74 static const char doc[] = N_("\ variable
86 options, parse_opt, args_doc, doc, NULL, NULL, NULL
/third_party/rust/crates/libc/src/windows/
H A Dmod.rs578 #[doc(hidden)]
580 #[doc(hidden)]
/third_party/rust/crates/libc/src/unix/linux_like/linux/musl/
H A Dmod.rs28 if #[cfg(doc)] {
32 #[doc(hidden)]
/third_party/python/Doc/tools/extensions/
H A Dpyspecific.py6 Sphinx extension with Python doc-specific markup.
663 for i, (doc, label) in backlinks:
668 app.builder.get_relative_uri(fromdocname, doc),
731 app.connect('env-purge-doc', audit_events_purge)
/kernel/linux/linux-5.10/scripts/
H A Dkernel-doc52 Documentation/doc-guide/kernel-doc.rst for the documentation comment syntax.
63 If not specified, kernel-doc will auto-detect using
80 -no-doc-sections Do not output DOC: sections.
295 OUTPUT_ALL => 0, # output all symbols and doc sections
363 STATE_INLINE => 7, # gathering doc outside main block
377 # proper kernel-doc and ignore the rest.
461 } elsif ($cmd eq 'no-doc-sections') {
825 # starts by putting out the name of the doc section itself, but that tends
1811 # functions don't have a 'Return' doc sectio
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/config/chunkindex/
H A Dlunr.js28 * documents.forEach(function (doc) {
29 * this.add(doc)
2390 * @param {object} doc - The document being added to the index.
2393 * function (doc) { return doc.nested.field }
2464 * @param {object} doc - The document to add to the index.
2468 lunr.Builder.prototype.add = function (doc, attributes) {
2469 var docRef = doc[this._ref],
2478 field = extractor ? extractor(doc) : doc[fieldNam
[all...]
/third_party/python/Lib/test/
H A Dtest_builtin.py346 """doc"""
357 def f(): """doc"""
359 (0, True, 'doc', True, True),
360 (1, False, 'doc', False, False),
2429 for doc in 'x', '\xc4', '\U0001f40d', 'x\x00y', b'x', 42, None:
2430 A = type('A', (), {'__doc__': doc})
2431 self.assertEqual(A.__doc__, doc)
2437 for doc in 'x', '\xc4', '\U0001f40d', 'x\x00y', 'x\udcdcy', b'x', 42, None:
2438 A.__doc__ = doc
2439 self.assertEqual(A.__doc__, doc)
[all...]
/third_party/python/Modules/
H A D_testcapimodule.c1199 char *doc = NULL; in test_type_from_ephemeral_spec() local
1223 doc = PyMem_New(char, sizeof(DOC)); in test_type_from_ephemeral_spec()
1224 if (doc == NULL) { in test_type_from_ephemeral_spec()
1228 memcpy(doc, DOC, sizeof(DOC)); in test_type_from_ephemeral_spec()
1242 slots[1].pfunc = doc; in test_type_from_ephemeral_spec()
1264 memset(doc, 0xdd, sizeof(DOC)); in test_type_from_ephemeral_spec()
1265 PyMem_Del(doc); in test_type_from_ephemeral_spec()
1266 doc = NULL; in test_type_from_ephemeral_spec()
1296 PyMem_Del(doc); in test_type_from_ephemeral_spec()
3627 const char *doc in make_exception_with_doc() local
[all...]
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/
H A Dbench.c217 .doc = argp_program_doc, in parse_cmdline_args()

Completed in 40 milliseconds

1...<<2122232425262728