Home
last modified time | relevance | path

Searched defs:Document (Results 1 – 25 of 579) sorted by relevance

12345678910>>...24

/aosp_15_r20/external/spdx-tools/spdx/v2_3/
H A Ddocument.go25 type Document struct { struct
28 SPDXVersion string `json:"spdxVersion"`
32 DataLicense string `json:"dataLicense"`
37 SPDXIdentifier common.ElementID `json:"SPDXID"`
41 DocumentName string `json:"name"`
45 DocumentNamespace string `json:"documentNamespace"`
49 ExternalDocumentReferences []ExternalDocumentRef `json:"externalDocumentRefs,omitempty"`
53 DocumentComment string `json:"comment,omitempty"`
55 CreationInfo *CreationInfo `json:"creationInfo"`
56 Packages []*Package `json:"packages,omitempty"`
[all …]
/aosp_15_r20/external/spdx-tools/spdx/v2_2/
H A Ddocument.go25 type Document struct { struct
28 SPDXVersion string `json:"spdxVersion"`
32 DataLicense string `json:"dataLicense"`
37 SPDXIdentifier common.ElementID `json:"SPDXID"`
41 DocumentName string `json:"name"`
45 DocumentNamespace string `json:"documentNamespace"`
49 ExternalDocumentReferences []ExternalDocumentRef `json:"externalDocumentRefs,omitempty"`
53 DocumentComment string `json:"comment,omitempty"`
55 CreationInfo *CreationInfo `json:"creationInfo"`
56 Packages []*Package `json:"packages,omitempty"`
[all …]
/aosp_15_r20/external/spdx-tools/spdx/v2_1/
H A Ddocument.go25 type Document struct { struct
28 SPDXVersion string `json:"spdxVersion"`
32 DataLicense string `json:"dataLicense"`
37 SPDXIdentifier common.ElementID `json:"SPDXID"`
41 DocumentName string `json:"name"`
45 DocumentNamespace string `json:"documentNamespace"`
49 ExternalDocumentReferences []ExternalDocumentRef `json:"externalDocumentRefs,omitempty"`
53 DocumentComment string `json:"comment,omitempty"`
55 CreationInfo *CreationInfo `json:"creationInfo"`
56 Packages []*Package `json:"packages,omitempty"`
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/toml_edit/src/
Ddocument.rs8 pub struct Document { struct
16 impl Document { argument
69 impl Default for Document { implementation
81 impl FromStr for Document { implementation
92 impl std::ops::Deref for Document { implementation
100 impl std::ops::DerefMut for Document { implementation
106 impl From<Table> for Document { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/der/src/
Ddocument.rs31 pub struct Document { struct
39 impl Document { argument
125 impl AsRef<[u8]> for Document { implementation
131 impl Debug for Document { implementation
143 impl<'a> Decode<'a> for Document { implementation
144 fn decode<R: Reader<'a>>(reader: &mut R) -> Result<Document> { in decode()
156 impl Encode for Document { implementation
166 impl FixedTag for Document { implementation
170 impl TryFrom<&[u8]> for Document { implementation
178 impl TryFrom<Vec<u8>> for Document { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/ring/src/
Dpkcs8.rs178 pub struct Document { struct
183 impl AsRef<[u8]> for Document { argument
190 pub(crate) fn wrap_key(template: &Template, private_key: &[u8], public_key: &[u8]) -> Document { in wrap_key()
/aosp_15_r20/external/rust/android-crates-io/crates/serde_yaml/src/
Dloader.rs14 pub(crate) struct Document<'input> { struct
33 Progress::Iterable(_) | Progress::Document(_) => unreachable!(), in new() argument
/aosp_15_r20/external/rust/android-crates-io/crates/toml/tests/testsuite/
Dserde.rs389 struct Document { in parse_tuple_variant() struct
390 inner: Vec<Enum>, in parse_tuple_variant()
433 struct Document { in parse_struct_variant() struct
434 inner: Vec<Enum>, in parse_struct_variant()
1227 struct Document { in serialize_array_with_none_value() struct
1228 values: Vec<Option<usize>>, in serialize_array_with_none_value()
1248 struct Document { in serialize_array_with_optional_struct_field() struct
1249 values: Vec<OptionalField>, in serialize_array_with_optional_struct_field()
1307 struct Document { in serialize_array_with_enum_of_optional_struct_field() struct
1308 values: Vec<Choice>, in serialize_array_with_enum_of_optional_struct_field()
/aosp_15_r20/external/rust/android-crates-io/crates/pkcs1/src/
Dpublic_key.rs70 impl TryFrom<RsaPublicKey<'_>> for Document { implementation
73 fn try_from(spki: RsaPublicKey<'_>) -> Result<Document> { in try_from()
79 impl TryFrom<&RsaPublicKey<'_>> for Document { implementation
82 fn try_from(spki: &RsaPublicKey<'_>) -> Result<Document> { in try_from()
/aosp_15_r20/external/python/absl-py/absl/flags/
D_flag.py260 self, doc: minidom.Document, module_name: str, is_key: bool = False
318 self, doc: minidom.Document
385 self, doc: minidom.Document
418 self, doc: minidom.Document
495 self, doc: minidom.Document
538 self, doc: minidom.Document
D_argument_parser.py125 self, doc: minidom.Document
166 self, doc: minidom.Document
583 self, doc: minidom.Document
627 self, doc: minidom.Document
/aosp_15_r20/external/spdx-tools/spdxlib/
H A Ddescribed_elements.go20 func GetDescribedPackageIDs2_1(doc *v2_1.Document) ([]common.ElementID, error) {
71 func GetDescribedPackageIDs2_2(doc *v2_2.Document) ([]common.ElementID, error) {
122 func GetDescribedPackageIDs2_3(doc *v2_3.Document) ([]common.ElementID, error) {
H A Ddocuments.go16 func ValidateDocument2_1(doc *v2_1.Document) error {
46 func ValidateDocument2_2(doc *v2_2.Document) error {
76 func ValidateDocument2_3(doc *v2_3.Document) error {
H A Drelationships.go14 func FilterRelationships2_1(doc *v2_1.Document, filter func(*v2_1.Relationship) *common.ElementID) …
28 func FilterRelationships2_2(doc *v2_2.Document, filter func(*v2_2.Relationship) *common.ElementID) …
42 func FilterRelationships2_3(doc *v2_3.Document, filter func(*v2_3.Relationship) *common.ElementID) …
/aosp_15_r20/external/rust/android-crates-io/crates/spki/src/
Dspki.rs149 impl<'a: 'k, 'k, Params, Key: 'k> TryFrom<SubjectPublicKeyInfo<Params, Key>> for Document implementation
157 fn try_from(spki: SubjectPublicKeyInfo<Params, Key>) -> Result<Document> { in try_from()
163 impl<'a: 'k, 'k, Params, Key: 'k> TryFrom<&SubjectPublicKeyInfo<Params, Key>> for Document implementation
171 fn try_from(spki: &SubjectPublicKeyInfo<Params, Key>) -> Result<Document> { in try_from()
/aosp_15_r20/external/spdx-tools/tvsaver/
H A Dtvsaver.go20 func Save2_1(doc *v2_1.Document, w io.Writer) error {
27 func Save2_2(doc *v2_2.Document, w io.Writer) error {
34 func Save2_3(doc *v2_3.Document, w io.Writer) error {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/rsc.io/markdown/
Dparse.go143 type Document struct { struct
144 Position
145 Blocks []Block
146 Links map[string]*Link
585 func (b *Document) PrintHTML(buf *bytes.Buffer) {
591 func (b *Document) printMarkdown(buf *bytes.Buffer, s mdState) {
/aosp_15_r20/external/pigweed/pw_docgen/py/pw_docgen/sphinx/
H A Dmodule_metadata.py60 from sphinx.addnodes import document as Document unknown
492 doctree: Document, # pylint: disable=unused-argument
545 def find_first_toctree(doctree: Document) -> Element | None:
582 def on_doctree_read(app: Sphinx, doctree: Document) -> None:
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
H A DMsgPackDocument.h27 class Document; variable
39 friend Document; variable
256 Document() { in Document() function
/aosp_15_r20/external/spdx-tools/yaml/
H A Dwriter.go14 func Save2_2(doc *v2_2.Document, w io.Writer) error {
29 func Save2_3(doc *v2_3.Document, w io.Writer) error {
/aosp_15_r20/external/spdx-tools/json/
H A Dwriter.go14 func Save2_2(doc *v2_2.Document, w io.Writer) error {
29 func Save2_3(doc *v2_3.Document, w io.Writer) error {
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/BinaryFormat/
H A DMsgPackDocument.h27 class Document; variable
39 friend Document; variable
289 Document() { in Document() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/BinaryFormat/
DMsgPackDocument.h27 class Document; variable
39 friend Document; variable
295 Document() { in Document() function
/aosp_15_r20/external/jsoup/src/main/java/org/jsoup/nodes/
H A DDocument.java26 public class Document extends Element { class
41 public Document(String namespace, String baseUri) { in Document() method in Document
53 public Document(String baseUri) { in Document() method in Document
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/BinaryFormat/
DMsgPackDocument.h27 class Document; variable
39 friend Document; variable
295 Document() { in Document() function

12345678910>>...24