/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDriver1CommandsLib/ |
Dh.c | 865 LIST_ENTRY *Package;
892 Status = ShellCommandLineParse (ParamList, &Package, &ProblemParam, TRUE);
902 if (ShellCommandLineGetCount(Package) > 2) {
904 ShellCommandLineFreeVarList (Package);
908 Lang = ShellCommandLineGetValue(Package, L"-l");
912 } else if (!ShellCommandLineGetFlag(Package, L"-l")){
918 ShellCommandLineFreeVarList (Package);
922 SfoMode = ShellCommandLineGetFlag(Package, L"-sfo");
923 FlagD = ShellCommandLineGetFlag(Package, L"-d");
924 Verbose = (BOOLEAN)(ShellCommandLineGetFlag(Package, L"-v") || ShellCommandLineGetFlag(Package, L"-verbose")); [all...] |
/build/blueprint/loadplugins/ |
loadplugins.go | 15 package main 29 pkg = flag.String("p", "main", "package name") 43 Package string 60 package {{.Package}}
|
/build/make/core/tasks/tools/ |
package-modules.mk | 0 # Package up modules to a zip file. 55 @echo "Package $@"
|
/device/linaro/bootloader/OpenPlatformPkg/Platforms/ARM/Juno/AcpiTables/ |
AcpiSsdtRootPci.asl | 27 Package (4) { \
62 Name(_PRT, Package() {
|
/device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/AcpiTables/ |
AcpiSsdtRootPci.asl | 27 Package (4) { \
62 Name(_PRT, Package() {
|
/frameworks/base/libs/hwui/ |
JankTracker.h | 60 // The profile data represents a package 61 Package,
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
ParallelPackageParserTest.java | 17 package com.android.server.pm; 76 protected PackageParser.Package parsePackage(PackageParser packageParser, File scanFile, 78 // Do not actually parse the package for testing
|
/prebuilts/go/darwin-x86/src/cmd/doc/ |
pkg.go | 5 package main 31 type Package struct { 33 name string // Package name, json for encoding/json. 34 userPath string // String the user used to find this package. 35 pkg *ast.Package // Parsed package. 36 file *ast.File // Merged from all files in the package 37 doc *doc.Package 38 build *build.Package 49 // prettyPath returns a version of the package path that is suitable for a [all...] |
/prebuilts/go/linux-x86/src/cmd/doc/ |
pkg.go | 5 package main 31 type Package struct { 33 name string // Package name, json for encoding/json. 34 userPath string // String the user used to find this package. 35 pkg *ast.Package // Parsed package. 36 file *ast.File // Merged from all files in the package 37 doc *doc.Package 38 build *build.Package 49 // prettyPath returns a version of the package path that is suitable for a [all...] |
/prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/ |
importer_test.go | 5 package gccgoimporter 23 func runImporterTest(t *testing.T, imp Importer, initmap map[*types.Package]InitData, test *importerTest) { 24 pkg, err := imp(make(map[string]*types.Package), test.pkgpath) 53 // Check that the package's own init function has the package's priority 109 initmap := make(map[*types.Package]InitData) 131 initmap := make(map[*types.Package]InitData) 138 arinitmap := make(map[*types.Package]InitData)
|
importer.go | 5 // Package gccgoimporter implements Import for gccgo-generated object files. 6 package gccgoimporter // import "go/internal/gccgoimporter" 20 // A PackageInit describes an imported package that needs initialization. 22 Name string // short package name 27 // The gccgo-specific init data for a package. 29 // Initialization priority of this package relative to other packages. 30 // This is based on the maximum depth of the package's dependency graph; 34 // The list of packages which this package depends on to be initialized, 36 // the package's dependencies that need initialization. 134 // packages already known, indexed by package path [all...] |
/prebuilts/go/linux-x86/src/go/internal/gccgoimporter/ |
importer_test.go | 5 package gccgoimporter 23 func runImporterTest(t *testing.T, imp Importer, initmap map[*types.Package]InitData, test *importerTest) { 24 pkg, err := imp(make(map[string]*types.Package), test.pkgpath) 53 // Check that the package's own init function has the package's priority 109 initmap := make(map[*types.Package]InitData) 131 initmap := make(map[*types.Package]InitData) 138 arinitmap := make(map[*types.Package]InitData)
|
importer.go | 5 // Package gccgoimporter implements Import for gccgo-generated object files. 6 package gccgoimporter // import "go/internal/gccgoimporter" 20 // A PackageInit describes an imported package that needs initialization. 22 Name string // short package name 27 // The gccgo-specific init data for a package. 29 // Initialization priority of this package relative to other packages. 30 // This is based on the maximum depth of the package's dependency graph; 34 // The list of packages which this package depends on to be initialized, 36 // the package's dependencies that need initialization. 134 // packages already known, indexed by package path [all...] |
/prebuilts/go/darwin-x86/src/go/internal/gcimporter/ |
gcimporter_test.go | 5 package gcimporter 49 func testPath(t *testing.T, path, srcDir string) *types.Package { 51 pkg, err := Import(make(map[string]*types.Package), path, srcDir) 92 // This package only handles gc export data. 103 // The package's Imports list must include all packages 115 t.Errorf(`Package("exports").Imports() = %s, does not contain %s`, got, want) 124 // This package only handles gc export data. 139 continue // not a package file 147 _, err := Import(make(map[string]*types.Package), pkgpath, dir) 176 _, err = Import(make(map[string]*types.Package), pkgpath, dir [all...] |
gcimporter.go | 5 // Package gcimporter implements Import for gc-generated object files. 6 package gcimporter // import "go/internal/gcimporter" 25 // FindPkg returns the filename and unique package id for an import 26 // path based on package information provided by build.Import (using 82 // Import imports a gc-generated package given its import path and srcDir, adds 83 // the corresponding package object to the packages map, and returns the object. 86 func Import(packages map[string]*types.Package, path, srcDir string) (pkg *types.Package, err error) { 96 // no need to re-import if the package was imported completely before 128 // Or, define a new standard go/types/gcexportdata package [all...] |
/prebuilts/go/linux-x86/src/go/internal/gcimporter/ |
gcimporter_test.go | 5 package gcimporter 49 func testPath(t *testing.T, path, srcDir string) *types.Package { 51 pkg, err := Import(make(map[string]*types.Package), path, srcDir) 92 // This package only handles gc export data. 103 // The package's Imports list must include all packages 115 t.Errorf(`Package("exports").Imports() = %s, does not contain %s`, got, want) 124 // This package only handles gc export data. 139 continue // not a package file 147 _, err := Import(make(map[string]*types.Package), pkgpath, dir) 176 _, err = Import(make(map[string]*types.Package), pkgpath, dir [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/ |
DecClassObject.py | 80 # @var Package: To store value for Package, it is a structure as PackageClass
88 self.Package = PackageClass()
123 # Transfer to Package Object if IsToPackage is True
250 ## Transfer to Package Object
252 # Transfer all contents of a Dec file to a standard Package Object
261 # Generate Package Header
295 ## Get Package Header
297 # Gen Package Header of Dec as <Key> = <Value>
329 self.Package.Header[Arch] = PackageHeader [all...] |
/frameworks/base/services/core/java/com/android/server/pm/ |
PackageDexOptimizer.java | 17 package com.android.server.pm; 103 static boolean canOptimizePackage(PackageParser.Package pkg) { 108 * Performs dexopt on all code paths and libraries of the specified package for specified 114 int performDexOpt(PackageParser.Package pkg, String[] sharedLibraries, 132 * Performs dexopt on all code paths of the given package. 136 private int performDexOptLI(PackageParser.Package pkg, String[] sharedLibraries, 154 // Get the dependencies of each split in the package. For each code path in the package, 190 * Performs dexopt on the {@code path} belonging to the package {@code pkg}. 198 private int dexOptPath(PackageParser.Package pkg, String path, String isa [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenFfsFile/ |
GenFfsFile.c | 53 IN FILE *Package,
204 " -p1 P1Path Specifies fully qualified file name to the primary package",
208 " package. This file will normally exist in the build tip.",
210 " -d Name=Value Add a macro definition for the package file. Optional.",
324 IN FILE *Package,
337 Package - Package to get string from
349 fscanf (Package, "%s", &String);
350 if (feof (Package)) {
354 while (TestComment (String, Package) == 1) { [all...] |
/build/make/core/tasks/ |
collect_gpl_sources.mk | 20 @echo Package gpl sources: $@
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/ |
FrameworkHiiOnUefiHiiThunk.inf | 5 # to ensure that all HII packages are generated by UEFI HII package generation tools (UEFI VfrCompiler and
6 # String Gather Tools). This thunk layer only produces the Frameowork HII protocol interface. The binary package
53 Package.c
|
/external/boringssl/src/ssl/test/runner/curve25519/ |
doc.go | 5 // Package curve25519 provides an implementation of scalar multiplication on 7 package curve25519 // import "golang.org/x/crypto/curve25519"
|
/prebuilts/go/darwin-x86/src/cmd/internal/browser/ |
browser.go | 5 // Package browser provides utilities for interacting with users' browsers. 6 package browser
|
/prebuilts/go/darwin-x86/src/cmd/vet/internal/whitelist/ |
whitelist.go | 5 // Package whitelist defines exceptions for the vet tool. 6 package whitelist
|
/prebuilts/go/darwin-x86/src/crypto/rand/ |
rand.go | 5 // Package rand implements a cryptographically secure 7 package rand
|