Home
last modified time | relevance | path

Searched defs:Package (Results 1 – 25 of 664) sorted by relevance

12345678910>>...27

/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/doc/
Dpkg.go32 type Package struct { struct
33 writer io.Writer // Destination for output.
34 name string // Package name, json for encoding/json.
35 userPath string // String the user used to find this package.
36 pkg *ast.Package // Parsed package.
37 file *ast.File // Merged from all files in the package
38 doc *doc.Package
39 build *build.Package
40 typedValue map[*doc.Value]bool // Consts and vars related to types.
41 constructor map[*doc.Func]bool // Constructors.
[all …]
/aosp_15_r20/external/spdx-tools/spdx/v2_3/
H A Dpackage.go8 type Package struct { struct
12 IsUnpackaged bool `json:"-" yaml:"-"`
16 PackageName string `json:"name"`
20 PackageSPDXIdentifier common.ElementID `json:"SPDXID"`
24 PackageVersion string `json:"versionInfo,omitempty"`
28 PackageFileName string `json:"packageFileName,omitempty"`
33 PackageSupplier *common.Supplier `json:"supplier,omitempty"`
38 PackageOriginator *common.Originator `json:"originator,omitempty"`
42 PackageDownloadLocation string `json:"downloadLocation"`
46 FilesAnalyzed bool `json:"filesAnalyzed,omitempty"`
[all …]
/aosp_15_r20/external/spdx-tools/spdx/v2_2/
H A Dpackage.go8 type Package struct { struct
12 IsUnpackaged bool `json:"-"`
16 PackageName string `json:"name"`
20 PackageSPDXIdentifier common.ElementID `json:"SPDXID"`
24 PackageVersion string `json:"versionInfo,omitempty"`
28 PackageFileName string `json:"packageFileName,omitempty"`
33 PackageSupplier *common.Supplier `json:"supplier,omitempty"`
38 PackageOriginator *common.Originator `json:"originator,omitempty"`
42 PackageDownloadLocation string `json:"downloadLocation"`
46 FilesAnalyzed bool `json:"filesAnalyzed,omitempty"`
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/go/build/
Dbuild.go436 type Package struct { struct
437 Dir string // directory containing package sources
438 Name string // package name
439 ImportComment string // path in import comment on package statement
440 Doc string // documentation synopsis
441 ImportPath string // import path of package ("" if unknown)
442 Root string // root of Go tree where this package lives
443 SrcRoot string // package source root directory ("" if unknown)
444 PkgRoot string // package install root directory ("" if unknown)
445 PkgTargetRoot string // architecture dependent install root directory ("" if unknown)
[all …]
/aosp_15_r20/external/spdx-tools/spdx/v2_1/
H A Dpackage.go8 type Package struct { struct
11 PackageName string `json:"name"`
15 PackageSPDXIdentifier common.ElementID `json:"SPDXID"`
19 PackageVersion string `json:"versionInfo,omitempty"`
23 PackageFileName string `json:"packageFileName,omitempty"`
28 PackageSupplier *common.Supplier `json:"supplier,omitempty"`
33 PackageOriginator *common.Originator `json:"originator,omitempty"`
37 PackageDownloadLocation string `json:"downloadLocation"`
41 FilesAnalyzed bool `json:"filesAnalyzed,omitempty"`
43 IsFilesAnalyzedTagPresent bool `json:"-"`
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/go/doc/
Ddoc.go17 type Package struct { struct
18 Doc string
19 Name string
20 ImportPath string
21 Imports []string
22 Filenames []string
23 Notes map[string][]*Note
27 Bugs []string
30 Consts []*Value
31 Types []*Type
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/types2/
Dpackage.go12 type Package struct { struct
13 path string
14 name string
15 scope *Scope
16 imports []*Package
17 complete bool
18 fake bool // scope lookup errors are silently dropped if package is fake (internal use only)
19 … bool // uses of this package will be rewritten into uses of declarations from _cgo_gotypes.go
20 …sion string // minimum Go version required for package (by Config.GoVersion, typically from go.mod)
31 func (pkg *Package) Path() string { return pkg.path }
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/go/types/
Dpackage.go15 type Package struct { struct
16 path string
17 name string
18 scope *Scope
19 imports []*Package
20 complete bool
21 fake bool // scope lookup errors are silently dropped if package is fake (internal use only)
22 … bool // uses of this package will be rewritten into uses of declarations from _cgo_gotypes.go
23 …sion string // minimum Go version required for package (by Config.GoVersion, typically from go.mod)
34 func (pkg *Package) Path() string { return pkg.path }
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/cgo/
Dmain.go35 type Package struct { struct
36 PackageName string // name of package
37 PackagePath string
38 PtrSize int64
39 IntSize int64
40 GccOptions []string
41 GccIsClang bool
42 LdFlags []string // #cgo LDFLAGS
43 Written map[string]bool
44 Name map[string]*Name // accumulated Name from Files
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/internal/load/
Dpkg.go54 type Package struct { struct
55 PackagePublic // visible in 'go list'
56 Internal PackageInternal // for use inside go command only
150 func (p *Package) AllFiles() []string {
194 func (p *Package) Desc() string {
210 func (p *Package) IsTestOnly() bool {
253 Package *Package member
277 …ge) setLoadPackageDataError(err error, path string, stk *ImportStack, importPos []token.Position) {
355 func (p *Package) Resolve(imports []string) []string {
385 func (p *Package) copyBuild(opts PackageOpts, pp *build.Package) {
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ir/
Dpackage.go10 type Package struct { struct
13 Imports []*types.Pkg
16 Inits []*Func
20 Funcs []*Func
24 Externs []*Name
29 AsmHdrDecls []*Name
32 CgoPragmas [][]string
35 Embeds []*Name
41 PluginExports []*Name
/aosp_15_r20/external/perfetto/src/traced/probes/packages_list/
H A Dpackages_list_parser.h25 struct Package { struct
35 bool ReadPackagesListLine(char* line, Package* package); argument
/aosp_15_r20/external/python/setuptools/pkg_resources/_vendor/importlib_resources/
D_legacy.py11 Package = Union[types.ModuleType, str] variable
44 def open_binary(package: Package, resource: Resource) -> BinaryIO:
50 def read_binary(package: Package, resource: Resource) -> bytes:
57 package: Package,
70 package: Package,
85 def contents(package: Package) -> Iterable[str]:
96 def is_resource(package: Package, name: str) -> bool:
110 package: Package,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/
D_legacy.py11 Package = Union[types.ModuleType, str] variable
44 def open_binary(package: Package, resource: Resource) -> BinaryIO:
50 def read_binary(package: Package, resource: Resource) -> bytes:
57 package: Package,
70 package: Package,
85 def contents(package: Package) -> Iterable[str]:
96 def is_resource(package: Package, name: str) -> bool:
110 package: Package,
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/importlib/resources/
H A D_legacy.py11 Package = Union[types.ModuleType, str] variable
44 def open_binary(package: Package, resource: Resource) -> BinaryIO:
50 def read_binary(package: Package, resource: Resource) -> bytes:
57 package: Package,
70 package: Package,
85 def contents(package: Package) -> Iterable[str]:
96 def is_resource(package: Package, name: str) -> bool:
110 package: Package,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/importlib/resources/
D_legacy.py11 Package = Union[types.ModuleType, str] variable
44 def open_binary(package: Package, resource: Resource) -> BinaryIO:
50 def read_binary(package: Package, resource: Resource) -> bytes:
57 package: Package,
70 package: Package,
85 def contents(package: Package) -> Iterable[str]:
96 def is_resource(package: Package, name: str) -> bool:
110 package: Package,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/
D_legacy.py11 Package = Union[types.ModuleType, str] variable
44 def open_binary(package: Package, resource: Resource) -> BinaryIO:
50 def read_binary(package: Package, resource: Resource) -> bytes:
57 package: Package,
70 package: Package,
85 def contents(package: Package) -> Iterable[str]:
96 def is_resource(package: Package, name: str) -> bool:
110 package: Package,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/importlib/resources/
D_legacy.py11 Package = Union[types.ModuleType, str] variable
44 def open_binary(package: Package, resource: Resource) -> BinaryIO:
50 def read_binary(package: Package, resource: Resource) -> bytes:
57 package: Package,
70 package: Package,
85 def contents(package: Package) -> Iterable[str]:
96 def is_resource(package: Package, name: str) -> bool:
110 package: Package,
/aosp_15_r20/external/python/cpython3/Lib/importlib/resources/
D_legacy.py11 Package = Union[types.ModuleType, str] variable
44 def open_binary(package: Package, resource: Resource) -> BinaryIO:
50 def read_binary(package: Package, resource: Resource) -> bytes:
57 package: Package,
70 package: Package,
85 def contents(package: Package) -> Iterable[str]:
96 def is_resource(package: Package, name: str) -> bool:
110 package: Package,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/importlib/resources/
D_legacy.py11 Package = Union[types.ModuleType, str] variable
44 def open_binary(package: Package, resource: Resource) -> BinaryIO:
50 def read_binary(package: Package, resource: Resource) -> bytes:
57 package: Package,
70 package: Package,
85 def contents(package: Package) -> Iterable[str]:
96 def is_resource(package: Package, name: str) -> bool:
110 package: Package,
/aosp_15_r20/external/python/setuptools/setuptools/_vendor/importlib_resources/
D_legacy.py11 Package = Union[types.ModuleType, str] variable
44 def open_binary(package: Package, resource: Resource) -> BinaryIO:
50 def read_binary(package: Package, resource: Resource) -> bytes:
57 package: Package,
70 package: Package,
85 def contents(package: Package) -> Iterable[str]:
96 def is_resource(package: Package, name: str) -> bool:
110 package: Package,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/
D_legacy.py11 Package = Union[types.ModuleType, str] variable
44 def open_binary(package: Package, resource: Resource) -> BinaryIO:
50 def read_binary(package: Package, resource: Resource) -> bytes:
57 package: Package,
70 package: Package,
85 def contents(package: Package) -> Iterable[str]:
96 def is_resource(package: Package, name: str) -> bool:
110 package: Package,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/
D_legacy.py11 Package = Union[types.ModuleType, str] variable
44 def open_binary(package: Package, resource: Resource) -> BinaryIO:
50 def read_binary(package: Package, resource: Resource) -> bytes:
57 package: Package,
70 package: Package,
85 def contents(package: Package) -> Iterable[str]:
96 def is_resource(package: Package, name: str) -> bool:
110 package: Package,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/
D_legacy.py11 Package = Union[types.ModuleType, str] variable
44 def open_binary(package: Package, resource: Resource) -> BinaryIO:
50 def read_binary(package: Package, resource: Resource) -> bytes:
57 package: Package,
70 package: Package,
85 def contents(package: Package) -> Iterable[str]:
96 def is_resource(package: Package, name: str) -> bool:
110 package: Package,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/
D_legacy.py11 Package = Union[types.ModuleType, str] variable
44 def open_binary(package: Package, resource: Resource) -> BinaryIO:
50 def read_binary(package: Package, resource: Resource) -> bytes:
57 package: Package,
70 package: Package,
85 def contents(package: Package) -> Iterable[str]:
96 def is_resource(package: Package, name: str) -> bool:
110 package: Package,

12345678910>>...27