| /external/spdx-tools/spdx/v2_2/ |
| D | file.go | 8 type File struct { struct 11 FileName string `json:"fileName"` 15 FileSPDXIdentifier common.ElementID `json:"SPDXID"` 19 FileTypes []string `json:"fileTypes,omitempty"` 23 Checksums []common.Checksum `json:"checksums"` 27 LicenseConcluded string `json:"licenseConcluded"` 31 LicenseInfoInFiles []string `json:"licenseInfoInFiles"` 35 LicenseComments string `json:"licenseComments,omitempty"` 39 FileCopyrightText string `json:"copyrightText"` 44 ArtifactOfProjects []*ArtifactOfProject `json:"-"` [all …]
|
| /external/spdx-tools/spdx/v2_3/ |
| D | file.go | 8 type File struct { struct 11 FileName string `json:"fileName"` 15 FileSPDXIdentifier common.ElementID `json:"SPDXID"` 19 FileTypes []string `json:"fileTypes,omitempty"` 23 Checksums []common.Checksum `json:"checksums"` 27 LicenseConcluded string `json:"licenseConcluded,omitempty"` 31 LicenseInfoInFiles []string `json:"licenseInfoInFiles,omitempty"` 35 LicenseComments string `json:"licenseComments,omitempty"` 39 FileCopyrightText string `json:"copyrightText"` 44 ArtifactOfProjects []*ArtifactOfProject `json:"artifactOfs,omitempty"` [all …]
|
| /external/spdx-tools/spdx/v2_1/ |
| D | file.go | 8 type File struct { struct 11 FileName string `json:"fileName"` 15 FileSPDXIdentifier common.ElementID `json:"SPDXID"` 19 FileTypes []string `json:"fileTypes,omitempty"` 23 Checksums []common.Checksum `json:"checksums"` 27 LicenseConcluded string `json:"licenseConcluded"` 31 LicenseInfoInFiles []string `json:"licenseInfoInFiles"` 35 LicenseComments string `json:"licenseComments,omitempty"` 39 FileCopyrightText string `json:"copyrightText"` 44 ArtifactOfProjects []*ArtifactOfProject `json:"-"` [all …]
|
| /external/rust/crates/config/src/file/ |
| D | mod.rs | 23 pub struct File<T, F> { struct 29 /// A required File will error if it cannot be found argument 41 impl<F> File<source::string::FileSourceString, F> implementation 54 impl<F> File<source::file::FileSourceFile, F> impl 67 impl File<source::file::FileSourceFile, FileFormat> { implementation 79 impl<'a> From<&'a Path> for File<source::file::FileSourceFile, FileFormat> { implementation 89 impl From<PathBuf> for File<source::file::FileSourceFile, FileFormat> { implementation 99 impl<T, F> File<T, F> implementation 117 impl<T, F> Source for File<T, F> implementation
|
| /external/rust/crates/fs-err/src/tokio/ |
| D | file.rs | 16 pub struct File { struct 17 tokio: fs::File, argument 21 impl File { implementation 25 pub async fn open(path: impl Into<PathBuf>) -> io::Result<File> { in open() 36 pub async fn create(path: impl Into<PathBuf>) -> io::Result<File> { in create() 47 pub fn from_std(std: crate::File) -> File { in from_std() 98 pub async fn try_clone(&self) -> io::Result<File> { in try_clone() 109 pub async fn into_std(self) -> crate::File { in into_std() 116 pub fn try_into_std(self) -> Result<crate::File, File> { in try_into_std() argument 136 impl File { implementation [all …]
|
| /external/rust/crates/fs-err/src/ |
| D | file.rs | 12 pub struct File { struct 13 file: fs::File, argument 17 // Opens a std File and returns it or an error generator which only needs the path to produce the e… argument 19 pub(crate) fn open(path: &Path) -> Result<std::fs::File, impl FnOnce(PathBuf) -> io::Error> { in open() 24 pub(crate) fn create(path: &Path) -> Result<std::fs::File, impl FnOnce(PathBuf) -> io::Error> { in create() 31 impl File { implementation 141 impl File { impl 143 pub fn from_parts<P>(file: fs::File, path: P) -> Self in from_parts() 154 pub fn into_parts(self) -> (fs::File, PathBuf) { in into_parts() 161 pub fn file(&self) -> &fs::File { in file() [all …]
|
| /external/rust/pica/src/ |
| D | pcapng.rs | 21 pub struct File { struct 22 file: std::sync::Mutex<std::fs::File>, argument 31 impl File { impl 32 pub fn create<P: AsRef<Path>>(path: P) -> std::io::Result<File> { in create()
|
| /external/bazelbuild-rules_python/gazelle/manifest/ |
| D | manifest.go | 29 type File struct { struct 30 Manifest *Manifest `yaml:"manifest,omitempty"` 34 Integrity string `yaml:"integrity"` 43 func (f *File) Encode(w io.Writer, manifestGeneratorHashFile, requirements io.Reader) error { 58 func (f *File) VerifyIntegrity(manifestGeneratorHashFile, requirements io.Reader) (bool, error) { 71 func (f *File) calculateIntegrity( 97 func (f *File) Decode(manifestPath string) error {
|
| /external/rust/crates/tempfile/src/file/imp/ |
| D | unix.rs | 43 pub fn create_named(path: &Path, open_options: &mut OpenOptions) -> io::Result<File> { in create_named() 54 fn create_unlinked(path: &Path) -> io::Result<File> { in create_unlinked() 72 pub fn create(dir: &Path) -> io::Result<File> { in create() 89 pub fn create(dir: &Path) -> io::Result<File> { in create() 93 fn create_unix(dir: &Path) -> io::Result<File> { in create_unix() 104 pub fn reopen(file: &File, path: &Path) -> io::Result<File> { in reopen() 118 pub fn reopen(_file: &File, _path: &Path) -> io::Result<File> { in reopen()
|
| D | other.rs | 12 pub fn create_named(_path: &Path, open_options: &mut OpenOptions) -> io::Result<File> { in create_named() 16 pub fn create(_dir: &Path) -> io::Result<File> { in create() 20 pub fn reopen(_file: &File, _path: &Path) -> io::Result<File> { in reopen()
|
| D | windows.rs | 23 pub fn create_named(path: &Path, open_options: &mut OpenOptions) -> io::Result<File> { in create_named() 32 pub fn create(dir: &Path) -> io::Result<File> { in create() 50 pub fn reopen(file: &File, _path: &Path) -> io::Result<File> { in reopen()
|
| /external/libchrome/base/files/ |
| D | file.cc | 26 File::File() in File() function in base::File 33 File::File(const FilePath& path, uint32_t flags) in File() function in base::File 39 File::File(PlatformFile platform_file) : File(platform_file, false) {} in File() function in base::File 41 File::File(PlatformFile platform_file, bool async) in File() function in base::File 51 File::File(Error error_details) in File() function in base::File 57 File::File(File&& other) in File() function in base::File
|
| /external/rust/crates/tokio/src/fs/ |
| D | file.rs | 93 pub struct File { struct 94 std: Arc<StdFile>, argument 95 inner: Mutex<Inner>, 122 impl File { implementation 154 pub async fn open(path: impl AsRef<Path>) -> io::Result<File> { in open() 192 pub async fn create(path: impl AsRef<Path>) -> io::Result<File> { in create() 242 pub fn from_std(std: StdFile) -> File { in from_std() 428 pub async fn try_clone(&self) -> io::Result<File> { in try_clone() 523 impl AsyncRead for File { implementation 592 impl AsyncSeek for File { implementation [all …]
|
| /external/cronet/base/files/ |
| D | file.cc | 32 File::File(const FilePath& path, uint32_t flags) : error_details_(FILE_OK) { in File() function in base::File 37 File::File(ScopedPlatformFile platform_file) in File() function in base::File 40 File::File(PlatformFile platform_file) : File(platform_file, false) {} in File() function in base::File 42 File::File(ScopedPlatformFile platform_file, bool async) in File() function in base::File 49 File::File(PlatformFile platform_file, bool async) in File() function in base::File 58 File::File(Error error_details) : error_details_(error_details) {} in File() function in base::File 60 File::File(File&& other) in File() function in base::File
|
| /external/clang/unittests/Lex/ |
| D | HeaderMapTest.cpp | 63 FileTy &File; member 102 MapFile<1, 1> File; in TEST() local 110 MapFile<1, 1> File; in TEST() local 118 MapFile<1, 1> File; in TEST() local 126 MapFile<1, 1> File; in TEST() local 138 MapFile<3, 1> File; in TEST() local 148 MapFile<1, 1> File; in TEST() local 156 MapFile<1, 1> File; in TEST() local 165 FileTy File; in TEST() local 184 FileTy File; member [all …]
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
| D | MinidumpEmitter.cpp | 116 static LocationDescriptor layout(BlobAllocator &File, yaml::BinaryRef Data) { in layout() 121 static size_t layout(BlobAllocator &File, MinidumpYAML::ExceptionStream &S) { in layout() 138 static void layout(BlobAllocator &File, MemoryListStream::entry_type &Range) { in layout() 142 static void layout(BlobAllocator &File, ModuleListStream::entry_type &M) { in layout() 149 static void layout(BlobAllocator &File, ThreadListStream::entry_type &T) { in layout() 155 static size_t layout(BlobAllocator &File, in layout() 172 static Directory layout(BlobAllocator &File, Stream &S) { in layout() 231 BlobAllocator File; in yaml2minidump() local
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/ObjectYAML/ |
| D | MinidumpEmitter.cpp | 117 static LocationDescriptor layout(BlobAllocator &File, yaml::BinaryRef Data) { in layout() 122 static size_t layout(BlobAllocator &File, MinidumpYAML::ExceptionStream &S) { in layout() 139 static void layout(BlobAllocator &File, MemoryListStream::entry_type &Range) { in layout() 143 static void layout(BlobAllocator &File, ModuleListStream::entry_type &M) { in layout() 150 static void layout(BlobAllocator &File, ThreadListStream::entry_type &T) { in layout() 156 static size_t layout(BlobAllocator &File, in layout() 173 static Directory layout(BlobAllocator &File, Stream &S) { in layout() 232 BlobAllocator File; in yaml2minidump() local
|
| /external/crosvm/rutabaga_gfx/src/cross_domain/sys/ |
| D | stub.rs | 21 _descriptor: &mut File, in descriptor_analysis() 32 ) -> RutabagaResult<(usize, Vec<File>)> { in receive_msg() 65 pub fn read_volatile(_file: &File, _opaque_data: &mut [u8]) -> RutabagaResult<usize> { in read_volatile() 69 pub fn write_volatile(_file: &File, _opaque_data: &[u8]) -> RutabagaResult<()> { in write_volatile() 82 impl WaitTrait for File {} implementation 83 impl WaitTrait for &File {} implementation 84 impl WaitTrait for &mut File {} implementation
|
| /external/spdx-tools/utils/ |
| D | verification.go | 21 func GetVerificationCode2_1(files []*v2_1.File, excludeFile string) (common.PackageVerificationCode… 60 func GetVerificationCode2_2(files []*v2_2.File, excludeFile string) (common.PackageVerificationCode… 99 func GetVerificationCode2_3(files []*v2_3.File, excludeFile string) (common.PackageVerificationCode…
|
| /external/tflite-support/tensorflow_lite_support/codegen/ |
| D | code_generator.h | 32 struct File { struct 33 std::string path; 34 std::string content;
|
| /external/rust/crates/codespan-reporting/examples/ |
| D | custom_files.rs | 49 struct File { struct 51 name: String, 53 source: String, 55 line_starts: Vec<usize>, 58 impl File { implementation 116 fn get(&self, file_id: FileId) -> Result<&File, files::Error> { in get()
|
| /external/crosvm/disk/src/sys/ |
| D | windows.rs | 18 pub fn new(disk: File, ex: &Executor) -> Result<Self> { in new() 26 pub fn apply_raw_disk_file_options(raw_image: &File, is_sparse_file: bool) -> Result<()> { in apply_raw_disk_file_options() 34 mut file: &File, in read_from_disk()
|
| /external/golang-protobuf/compiler/protogen/ |
| D | protogen.go | 403 type File struct { struct 404 Desc protoreflect.FileDescriptor 405 Proto *descriptorpb.FileDescriptorProto 407 GoDescriptorIdent GoIdent // name of Go variable for the file descriptor 408 GoPackageName GoPackageName // name of this file's Go package 409 GoImportPath GoImportPath // import path of this file's Go package 411 Enums []*Enum // top-level enum declarations 412 Messages []*Message // top-level message declarations 413 Extensions []*Extension // top-level extension declarations 414 Services []*Service // top-level service declarations [all …]
|
| /external/swiftshader/tests/regres/cov/ |
| D | import.go | 31 type File struct { struct 32 Path string 33 Covered SpanList // Spans with coverage 34 Uncovered SpanList // Compiled spans without coverage
|
| /external/grpc-grpc/src/compiler/ |
| D | schema_interface.h | 102 struct File : public CommentHolder { struct 103 virtual ~File() {} in ~File() argument 110 virtual std::vector<std::string> GetImportNames() const { return {}; } in GetImportNames()
|