/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
|
/prebuilts/go/darwin-x86/src/go/internal/gcimporter/ |
gcimporter.go | 5 // Package gcimporter implements Import for gc-generated object files. 6 package gcimporter // import "go/internal/gcimporter" 26 // FindPkg returns the filename and unique package id for an import 27 // path based on package information provided by build.Import (using 84 // Import imports a gc-generated package given its import path and srcDir, adds 85 // the corresponding package object to the packages map, and returns the object. 88 func Import(packages map[string]*types.Package, path, srcDir string, lookup func(path string) (io.ReadCloser, error)) (pkg *types.Package, err error) { 99 // No need to re-import if the package was imported completely before. 118 // no need to re-import if the package was imported completely befor [all...] |
/prebuilts/go/darwin-x86/src/log/syslog/ |
doc.go | 5 // Package syslog provides a simple interface to the system log 13 // The syslog package is frozen and is not accepting new features. 17 package syslog 19 // BUG(brainman): This package is not implemented on Windows. As the 20 // syslog package is frozen, Windows users are encouraged to 21 // use a package outside of the standard library. For background, 24 // BUG(akumar): This package is not implemented on Plan 9. 26 // BUG(minux): This package is not implemented on NaCl (Native Client).
|
/prebuilts/go/darwin-x86/src/math/ |
const.go | 5 // Package math provides basic constants and mathematical functions. 7 // This package does not guarantee bit-identical results across architectures. 8 package math
|
/prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/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/vendor/golang_org/x/net/lif/ |
lif.go | 7 // Package lif provides basic functions for the manipulation of 10 // The package supports Solaris 11 or above. 11 package lif
|
/prebuilts/go/linux-x86/src/cmd/vet/internal/whitelist/ |
whitelist.go | 5 // Package whitelist defines exceptions for the vet tool. 6 package whitelist
|
/prebuilts/go/linux-x86/src/crypto/rand/ |
rand.go | 5 // Package rand implements a cryptographically secure 7 package rand
|
/prebuilts/go/linux-x86/src/go/internal/gcimporter/ |
gcimporter.go | 5 // Package gcimporter implements Import for gc-generated object files. 6 package gcimporter // import "go/internal/gcimporter" 26 // FindPkg returns the filename and unique package id for an import 27 // path based on package information provided by build.Import (using 84 // Import imports a gc-generated package given its import path and srcDir, adds 85 // the corresponding package object to the packages map, and returns the object. 88 func Import(packages map[string]*types.Package, path, srcDir string, lookup func(path string) (io.ReadCloser, error)) (pkg *types.Package, err error) { 99 // No need to re-import if the package was imported completely before. 118 // no need to re-import if the package was imported completely befor [all...] |
/prebuilts/go/linux-x86/src/log/syslog/ |
doc.go | 5 // Package syslog provides a simple interface to the system log 13 // The syslog package is frozen and is not accepting new features. 17 package syslog 19 // BUG(brainman): This package is not implemented on Windows. As the 20 // syslog package is frozen, Windows users are encouraged to 21 // use a package outside of the standard library. For background, 24 // BUG(akumar): This package is not implemented on Plan 9. 26 // BUG(minux): This package is not implemented on NaCl (Native Client).
|
/prebuilts/go/linux-x86/src/math/ |
const.go | 5 // Package math provides basic constants and mathematical functions. 7 // This package does not guarantee bit-identical results across architectures. 8 package math
|
/prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/curve25519/ |
doc.go | 5 // Package curve25519 provides an implementation of scalar multiplication on 7 package curve25519 // import "golang.org/x/crypto/curve25519"
|
/prebuilts/go/linux-x86/src/vendor/golang_org/x/net/lif/ |
lif.go | 7 // Package lif provides basic functions for the manipulation of 10 // The package supports Solaris 11 or above. 11 package lif
|
/build/make/core/tasks/tools/ |
package-modules.mk | 0 # Package up modules to a zip file. 63 @echo "Package $@"
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/ |
Utility.h | 21 This function returns a list of the package handles of the
23 pseudo-type EFI_HII_PACKAGE_TYPE_ALL will cause all package
34 @param PackageType Specifies the package type of the packages
67 Exports the contents of one or all package lists in the HII database into a buffer.
79 @retval EFI_SUCCESS Package exported.
94 Extract Hii package list GUID for given HII handle.
100 @param Guid Package list GUID
175 that is created when a package list registered by a module calling
204 Get the number of HII Package for a Package type. [all...] |
/external/guice/core/src/com/google/inject/matcher/ |
Matchers.java | 17 package com.google.inject.matcher; 287 * Returns a matcher which matches classes in the given package. Packages are specific to their 288 * classloader, so classes with the same package name may not have the same package at runtime. 290 public static Matcher<Class> inPackage(final Package targetPackage) { 295 private final transient Package targetPackage; 298 public InPackage(Package targetPackage) { 299 this.targetPackage = checkNotNull(targetPackage, "package"); 321 return inPackage(Package.getPackage(packageName)); 328 * Returns a matcher which matches classes in the given package and its subpackages. Unlik [all...] |
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/ |
ComparisonReport.java | 17 package com.android.cts.apicoverage; 77 for (TestSuite.Package pkg : ts.getPackagesList()) { 78 for (TestSuite.Package.Class cls : pkg.getClassesList()) { 79 for (TestSuite.Package.Class.Method mtd : cls.getMethodsList()) {
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
LegacyManifestParser.java | 0 package org.robolectric.shadows; 32 import android.content.pm.PackageParser.Package; 104 public static Package createPackage(AndroidManifest androidManifest) { 106 Package pkg = new Package(androidManifest.getPackageName()); 283 ComponentInfo outInfo, Package owner, PackageItemData itemData) { 289 PackageItemInfo outInfo, Package owner, PackageItemData itemData) { 301 private static PackageParser.Provider createProvider(Package pkg, ProviderInfo info) { 308 private static Activity createActivity(Package pkg, ActivityInfo activityInfo) { 314 private static Service createService(Package pkg, ServiceInfo info) [all...] |
/prebuilts/go/darwin-x86/src/go/types/ |
check.go | 7 package types 52 decl *declInfo // package-level declaration whose init expression/function body is checked 60 // An importKey identifies an imported package by import path and source directory 63 // importer must always return the same package (but given two different import paths, 64 // an importer may still return the same package by mapping them to the same package 73 // package information 77 pkg *Package 79 objMap map[Object]*declInfo // maps package-level object to declaration info 80 impMap map[importKey]*Package // maps (import path, source directory) to (complete or fake) packag [all...] |
/prebuilts/go/linux-x86/src/go/types/ |
check.go | 7 package types 52 decl *declInfo // package-level declaration whose init expression/function body is checked 60 // An importKey identifies an imported package by import path and source directory 63 // importer must always return the same package (but given two different import paths, 64 // an importer may still return the same package by mapping them to the same package 73 // package information 77 pkg *Package 79 objMap map[Object]*declInfo // maps package-level object to declaration info 80 impMap map[importKey]*Package // maps (import path, source directory) to (complete or fake) packag [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/UefiEfiIfrSupportLib/ |
UefiIfrForm.c | 38 EFI_HII_PACKAGE_HEADER *Package;
49 Package = NULL;
54 Package = (EFI_HII_PACKAGE_HEADER *) (((UINT8 *) HiiPackageList) + Offset);
55 EfiCopyMem (&PackageHeader, Package, sizeof (EFI_HII_PACKAGE_HEADER));
64 // no package found in this Package List
70 *Buffer = Package;
78 IN EFI_HII_PACKAGE_HEADER *Package,
110 EfiCopyMem (*TempBuffer, Package, sizeof (EFI_HII_PACKAGE_HEADER));
114 EfiCopyMem (&PackageHeader, Package, sizeof (EFI_HII_PACKAGE_HEADER)); [all...] |
/development/build/ |
Android.mk | 58 # A.k.a the "current" version of the public SDK (android.jar inside the SDK package). 68 # The package installation stuff doesn't know about this file, so nobody will 73 # android.jar is what we put in the SDK package. 79 @echo Package SDK Stubs: $@ 83 @echo Package SDK Stubs Source: $@ 98 # android.jar is what we put in the SDK package. 104 @echo Package SDK Stubs: $@ 108 @echo Package SDK Stubs Source: $@ 139 @echo "Package $(1).jar: $$@"
|
/frameworks/base/services/core/java/com/android/server/pm/ |
PackageManagerService.java | 17 package com.android.server.pm; 175 import android.content.pm.PackageParser.Package; 377 * <li>{@link #mPackages} is used to guard all in-memory parsed package details 391 * <li>fooLIF(): the caller must hold {@link #mInstallLock} and the package 451 // Suffix used during package installation when copying/moving 452 // package apks to install directory. 553 * The default response for package verification timeout. 574 private static final String PACKAGE_MIME_TYPE = "application/vnd.android.package-archive"; 576 private static final String PACKAGE_SCHEME = "package"; 617 * Version number for the package parser cache. Increment this whenever the format o [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiHiiLib/ |
HiiLib.c | 55 Extract Hii package list GUID for given HII handle.
61 @param Guid Package list GUID
116 the list of package is 0, then NULL is returned.
118 The variable arguments are pointers which point to package header that defined
128 @param[in] PackageListGuid The GUID of the package list.
141 @retval Other The HII Handle associated with the newly registered package list.
154 UINT32 *Package;
165 for (Length = 0, VA_START (Args, DeviceHandle); (Package = VA_ARG (Args, UINT32 *)) != NULL; ) {
166 Length += (ReadUnaligned32 (Package) - sizeof (UINT32));
179 // Add the length of the Package List Header and the terminating Package Header [all...] |