Home
last modified time | relevance | path

Searched refs:doc_str (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/ring/src/rsa/
Dpadding.rs136 $doc_str:expr ) => {
137 #[doc=$doc_str]
489 ( $PADDING_ALGORITHM:ident, $digest_alg:expr, $doc_str:expr ) => {
490 #[doc=$doc_str]
Dverification.rs110 $doc_str:expr ) => {
111 #[doc=$doc_str]
/external/llvm-project/libcxx/utils/
Dgenerate_feature_test_macro_components.py878 doc_str = """.. _FeatureTestMacroTable:
907 f.write(doc_str)
/external/python/cpython3/Objects/
Dtypeobject.c2688 const char *doc_str; in type_new() local
2691 doc_str = PyUnicode_AsUTF8(doc); in type_new()
2692 if (doc_str == NULL) in type_new()
2695 len = strlen(doc_str); in type_new()
2701 memcpy(tp_doc, doc_str, len + 1); in type_new()