/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/ |
doc.go | 5 // Package ppc64asm implements decoding of 64-bit PowerPC machine code. 6 package ppc64asm
|
/prebuilts/go/linux-x86/src/cmd/vet/testdata/divergent/ |
buf.go | 3 // Package buf ... 4 package buf
|
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/ |
Parse.c | 385 LIST_ENTRY *Package;
408 Status = ShellCommandLineParseEx (ParamList, &Package, &ProblemParam, TRUE, FALSE);
419 if ((!StreamingUnicode && (ShellCommandLineGetCount(Package) < 4)) ||
420 (ShellCommandLineGetCount(Package) < 3)) {
423 } else if ((StreamingUnicode && (ShellCommandLineGetCount(Package) > 3)) ||
424 (ShellCommandLineGetCount(Package) > 4)) {
430 TableName = ShellCommandLineGetRawValue(Package, 1);
431 ColumnString = ShellCommandLineGetRawValue(Package, 2);
433 FileName = ShellCommandLineGetRawValue(Package, 1);
434 TableName = ShellCommandLineGetRawValue(Package, 2); [all...] |
Load.c | 194 LIST_ENTRY *Package;
214 Status = ShellCommandLineParse (LoadParamList, &Package, &ProblemParam, TRUE);
227 if (ShellCommandLineGetFlag(Package, L"-?")) {
229 } else if (ShellCommandLineGetRawValue(Package, 1) == NULL) {
237 ; ShellCommandLineGetRawValue(Package, ParamCount) != NULL
240 Status = ShellOpenFileMetaArg((CHAR16*)ShellCommandLineGetRawValue(Package, ParamCount), EFI_FILE_MODE_READ, &ListHead);
250 LoadDriver(Node->FullName, (BOOLEAN)(ShellCommandLineGetFlag(Package, L"-nc")==FALSE));
252 Status = LoadDriver(Node->FullName, (BOOLEAN)(ShellCommandLineGetFlag(Package, L"-nc")==FALSE));
264 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_FILE_NF), gShellLevel2HiiHandle, L"load", (CHAR16*)ShellCommandLineGetRawValue(Package, ParamCount));
271 // free the command line package
[all...] |
TimeDate.c | 179 LIST_ENTRY *Package;
197 Status = ShellCommandLineParse (SfoParamList, &Package, &ProblemParam, TRUE);
210 if (ShellCommandLineGetFlag(Package, L"-?")) {
212 } else if (ShellCommandLineGetRawValue(Package, 2) != NULL) {
220 if (ShellCommandLineGetRawValue(Package, 1) == NULL) {
233 if (ShellCommandLineGetFlag(Package, L"-sfo")) {
252 Param1 = ShellCommandLineGetRawValue(Package, 1);
267 // free the command line package
269 ShellCommandLineFreeVarList (Package);
407 LIST_ENTRY *Package;
[all...] |
/prebuilts/go/darwin-x86/src/go/importer/ |
importer.go | 5 // Package importer provides access to export data importers. 6 package importer 16 // A Lookup function returns a reader to access package data for 17 // a given import path, or an error if no matching package is found. 22 // the default package lookup mechanism for the given compiler is used. 43 packages: make(map[string]*types.Package), 60 type gcimports map[string]*types.Package 62 func (m gcimports) Import(path string) (*types.Package, error) { 66 func (m gcimports) ImportFrom(path, srcDir string, mode types.ImportMode) (*types.Package, error) { 76 packages map[string]*types.Package [all...] |
/prebuilts/go/linux-x86/src/go/importer/ |
importer.go | 5 // Package importer provides access to export data importers. 6 package importer 16 // A Lookup function returns a reader to access package data for 17 // a given import path, or an error if no matching package is found. 22 // the default package lookup mechanism for the given compiler is used. 43 packages: make(map[string]*types.Package), 60 type gcimports map[string]*types.Package 62 func (m gcimports) Import(path string) (*types.Package, error) { 66 func (m gcimports) ImportFrom(path, srcDir string, mode types.ImportMode) (*types.Package, error) { 76 packages map[string]*types.Package [all...] |
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDriver1CommandsLib/ |
Reconnect.c | 57 LIST_ENTRY *Package;
76 Status = ShellCommandLineParse (ParamList, &Package, &ProblemParam, TRUE);
88 if (ShellCommandLineGetFlag(Package, L"-r")) {
|
DevTree.c | 155 LIST_ENTRY *Package;
184 Status = ShellCommandLineParse (ParamList, &Package, &ProblemParam, TRUE);
194 if (ShellCommandLineGetCount(Package) > 2) {
196 ShellCommandLineFreeVarList (Package);
199 Lang = ShellCommandLineGetValue(Package, L"-l");
203 } else if (!ShellCommandLineGetFlag(Package, L"-l")){
210 ShellCommandLineFreeVarList (Package);
213 FlagD = ShellCommandLineGetFlag(Package, L"-d");
215 Lang = ShellCommandLineGetRawValue(Package, 1);
273 ShellCommandLineFreeVarList (Package);
[all...] |
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel3CommandsLib/ |
Help.c | 297 LIST_ENTRY *Package;
329 Status = ShellCommandLineParse (ParamList, &Package, &ProblemParam, TRUE);
342 if (ShellCommandLineGetFlag(Package, L"-usage")
343 &&ShellCommandLineGetFlag(Package, L"-section")
344 &&(ShellCommandLineGetFlag(Package, L"-verbose") || ShellCommandLineGetFlag(Package, L"-v"))
348 } else if (ShellCommandLineGetRawValue(Package, 2) != NULL) {
356 StrnCatGrow(&CommandToGetHelpOn, NULL, ShellCommandLineGetRawValue(Package, 1), 0);
357 if (CommandToGetHelpOn == NULL && ShellCommandLineGetFlag(Package, L"-?")) {
375 if (ShellCommandLineGetFlag(Package, L"-section")) { [all...] |
Type.c | 181 LIST_ENTRY *Package;
208 Status = ShellCommandLineParse (ParamList, &Package, &ProblemParam, TRUE);
221 if (ShellCommandLineGetFlag(Package, L"-?")) {
224 AsciiMode = ShellCommandLineGetFlag(Package, L"-a");
225 UnicodeMode = ShellCommandLineGetFlag(Package, L"-u");
230 } else if (ShellCommandLineGetRawValue(Package, 1) == NULL) {
241 for ( ParamCount = 1, Param = ShellCommandLineGetRawValue(Package, ParamCount)
243 ; ParamCount++, Param = ShellCommandLineGetRawValue(Package, ParamCount)
317 // free the command line package
319 ShellCommandLineFreeVarList (Package);
[all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/ |
InstallPkg.py | 2 # Install distribution package.
15 Install a distribution package
63 # @param Path: Package Path
203 Package = DistPkg.PackageSurfaceArea[Guid, Version, Path]
204 Logger.Info(ST.MSG_INSTALL_PACKAGE % Package.GetName())
208 GuidedPkgPath = "%s_%s_%s" % (Package.GetName(), Guid, Version)
212 InstallPackageContent(PackagePath, NewPackagePath, Package, ContentZipFile, Dep, WorkspaceDir, ModuleList,
214 PackageList.append(Package)
216 NewDict[Guid, Version, Package.GetPackagePath()] = Package
[all...] |
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/ |
SmbiosView.c | 59 LIST_ENTRY *Package;
66 Package = NULL;
69 Status = ShellCommandLineParse (ParamList, &Package, &ProblemParam, TRUE);
79 if (ShellCommandLineGetCount(Package) > 1) {
82 } else if (ShellCommandLineGetFlag(Package, L"-t") && ShellCommandLineGetValue(Package, L"-t") == NULL) {
85 } else if (ShellCommandLineGetFlag(Package, L"-h") && ShellCommandLineGetValue(Package, L"-h") == NULL) {
89 (ShellCommandLineGetFlag(Package, L"-t") && ShellCommandLineGetFlag(Package, L"-h")) || [all...] |
/external/deqp/scripts/ |
build_android_mustpass.py | 26 from mustpass import Project, Package, Mustpass, Configuration, include, exclude, genMustpassLists, parseBuildConfigFromCmdLineArgs 58 LMP_GLES3_PKG = Package(module = GLES3_MODULE, configurations = [ 65 LMP_GLES31_PKG = Package(module = GLES31_MODULE, configurations = [ 75 LMP_MR1_GLES3_PKG = Package(module = GLES3_MODULE, configurations = [ 82 LMP_MR1_GLES31_PKG = Package(module = GLES31_MODULE, configurations = [ 92 MNC_EGL_PKG = Package(module = EGL_MODULE, configurations = [ 100 MNC_GLES2_PKG = Package(module = GLES2_MODULE, configurations = [ 108 MNC_GLES3_PKG = Package(module = GLES3_MODULE, configurations = [ 155 MNC_GLES31_PKG = Package(module = GLES31_MODULE, configurations = [ 203 NYC_EGL_PKG = Package(module = EGL_MODULE, configurations = [all...] |
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/ |
Mm.c | 414 LIST_ENTRY *Package;
430 Status = ShellCommandLineParse (ParamList, &Package, &ProblemParam, TRUE);
441 if (ShellCommandLineGetCount (Package) < 2) {
445 } else if (ShellCommandLineGetCount (Package) > 3) {
449 } else if (ShellCommandLineGetFlag (Package, L"-w") && ShellCommandLineGetValue (Package, L"-w") == NULL) {
454 if (ShellCommandLineGetFlag (Package, L"-mmio")) {
456 if (ShellCommandLineGetFlag (Package, L"-mem")
457 || ShellCommandLineGetFlag (Package, L"-io")
458 || ShellCommandLineGetFlag (Package, L"-pci") [all...] |
SetVar.c | 69 LIST_ENTRY *Package;
101 Status = ShellCommandLineParse (ParamList, &Package, &ProblemParam, TRUE);
111 if (ShellCommandLineGetCount(Package) < 2) {
114 } else if (ShellCommandLineGetCount(Package) > 3) {
118 VariableName = ShellCommandLineGetRawValue(Package, 1);
119 Data = ShellCommandLineGetRawValue(Package, 2);
120 if (!ShellCommandLineGetFlag(Package, L"-guid")){
123 StringGuid = ShellCommandLineGetValue(Package, L"-guid");
183 if (ShellCommandLineGetFlag(Package, L"-bs")) {
186 if (ShellCommandLineGetFlag(Package, L"-rt")) { [all...] |
EfiDecompress.c | 34 LIST_ENTRY *Package;
75 Status = ShellCommandLineParse (EmptyParamList, &Package, &ProblemParam, TRUE);
85 if (ShellCommandLineGetCount(Package) > 3) {
88 } else if (ShellCommandLineGetCount(Package) < 3) {
92 TempParam = ShellCommandLineGetRawValue(Package, 1);
95 OutFileName = ShellCommandLineGetRawValue(Package, 2);
111 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_FILE_OPEN_FAIL), gShellDebug1HiiHandle, L"efidecompress", ShellCommandLineGetRawValue(Package, 1));
136 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_FILE_OPEN_FAIL), gShellDebug1HiiHandle, ShellCommandLineGetRawValue(Package, 2), Status);
165 ShellCommandLineFreeVarList (Package);
|
/libcore/ojluni/src/main/java/java/lang/ |
Package.java | 27 package java.lang; 60 * {@code Package} objects contain version information 61 * about the implementation and specification of a Java package. 67 * <p>The set of classes that make up the package may implement a 70 * An application can ask if the package is 107 * java package have the same Package object. The static methods allow a package 113 public class Package implements java.lang.reflect.AnnotatedElement { 115 * Return the name of this package [all...] |
ClassLoader.java | 26 package java.lang; 227 // The packages defined in this class loader. Each package name is mapped 228 // to its corresponding Package object. 230 private final HashMap<String, Package> packages = new HashMap<>(); 437 * If an attempt is made to add this class to a package that 440 * to define a class in a package with a fully-qualified name 502 * If an attempt is made to add this class to a package that 528 * <p> The first class defined in a package determines the exact set of 529 * certificates that all subsequent classes defined in that package must 533 * package must contain the same set of certificates or [all...] |
/frameworks/base/services/core/java/com/android/server/ |
AttributeCache.java | 18 package com.android.server; 44 private final LruCache<String, Package> mPackages = new LruCache<>(CACHE_SIZE); 49 public final static class Package { 53 public Package(Context c) { 90 final Package pkg = mPackages.remove(packageName); 121 Package pkg = mPackages.get(packageName); 143 pkg = new Package(context);
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/ |
XmlParser.py | 110 # Check Each Package
184 Package = Psa.FromXml(Item, 'PackageSurfaceArea')
185 self.DistP.PackageSurfaceArea[(Package.GetGuid(), \
186 Package.GetVersion(), \
187 Package.GetPackagePath())] = \
188 Package
244 for Package in DistP.PackageSurfaceArea.values():
246 DomPackage = Psa.ToXml(Package)
635 # Check PackageDependencies -> Package
640 CheckDict = {'Package':''} [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/ |
Forms.c | 89 This function allows a program to extract a form or form package that has
92 In this thunk module, this function will create a IFR Package with only
94 in this IFR package to caller. This is enable the Framework modules which call
96 a String Token from a Package List known only by the Formset GUID.
269 Get the package data from the Package List.
271 @param HiiPackageList Package List.
272 @param PackageIndex The index of the Package in the Package List.
274 @param Buffer On output, the Package data. [all...] |
/external/vogar/src/vogar/target/ |
ClassFinder.java | 17 package vogar.target; 28 * within the package represented by classOrPackageName, if it represents a package. 30 * Throws an exception if it represents neither a class nor a package with at least one class. 38 // classOrPackageName might represent a package 40 Package aPackage = new ClassPathScanner().scan(classOrPackageName); 43 throw new IllegalArgumentException("No classes in package: " + classOrPackageName +
|
/device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/ |
PchLpss.asl | 189 Name(_DEP, Package(0x1)
261 Name(_DEP, Package(0x1)
334 Name(_DEP, Package(0x1)
407 Name(_DEP, Package(0x1)
425 Name (PKG, Package(3) { 0x200, 0x200, 0x06 })
430 Name (PKG, Package(3) { 0x55, 0x99, 0x06 })
435 Name (PKG, Package(3) { 0x1b, 0x3a, 0x06 })
495 Name(_DEP, Package(0x1)
513 Name (PKG, Package(3) { 0x200, 0x200, 0x06 })
518 Name (PKG, Package(3) { 0x55, 0x99, 0x06 }) [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/GenMetaFile/ |
GenDecFile.py | 3 # This file contained the logical of transfer package object to DEC files.
68 def GenPcd(Package, Content):
74 for Pcd in Package.GetPcdList():
138 def GenPcdErrorMsgSection(Package, Content):
139 if not Package.PcdErrorCommentDict:
152 # Get TokenSpcCName list in PcdErrorCommentDict in Package object
154 for (TokenSpcCName, ErrorNumber) in Package.PcdErrorCommentDict:
163 for (TokenSpcCName, ErrorNumber) in Package.PcdErrorCommentDict:
165 PcdErrorMsg = GetLocalValue(Package.PcdErrorCommentDict[(TokenSpcCName, ErrorNumber)])
174 def GenGuidProtocolPpi(Package, Content): [all...] |