/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/ |
GraphicsConsole.c | [all...] |
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
ShadowApplicationPackageManager.java | 0 package org.robolectric.shadows; 39 import android.content.pm.PackageParser.Package; 119 // In the cases where an Activity from another package has been requested. 198 throw new NameNotFoundException("Package not found: " + packageName); 246 throw new NameNotFoundException("Package is disabled, can't find"); 263 for (Package appPackage : packages.values()) { 352 for (Package appPackage : packages.values()) { 367 for (Package appPackage : packages.values()) { 432 for (Package appPackage : packages.values()) { 786 for (Package pkg : packages.values()) [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/build/ |
BuildReport.py | 244 for Package in Pa.PackageList:
245 for Protocol in Package.Protocols:
246 GuidValue = GuidStructureStringToGuidString(Package.Protocols[Protocol])
248 for Ppi in Package.Ppis:
249 GuidValue = GuidStructureStringToGuidString(Package.Ppis[Ppi])
251 for Guid in Package.Guids:
252 GuidValue = GuidStructureStringToGuidString(Package.Guids[Guid])
708 # flash description file and package DEC files.
743 for package in Pa.PackageList:
745 if (Pcd.TokenCName, Pcd.TokenSpaceGuidCName, T) in package.Pcds: [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/ |
AutoGen.py | 409 for package in PGen.PackageList:
410 for key in package.Pcds:
411 PcdItem = package.Pcds[key]
577 #Collect package set information from INF of FDF
[all...] |
/external/icu/icu4c/source/tools/toolutil/ |
pkgitems.cpp | 18 * Companion file to package.cpp. Deals with details of ICU data item formats. 33 #include "package.h" 244 // /ICUDATA/... and /pkgname/... go to a different package 285 Package *pkg, 371 Package *pkg, 575 // enumerate dependencies of a package item -------------------------------- *** 578 Package::enumDependencies(Item *pItem, void *context, CheckDependency check) {
|
/libcore/ojluni/src/main/java/java/net/ |
URLClassLoader.java | 26 package java.net; 387 * Retrieve the package using the specified package name. 388 * If non-null, verify the package using the specified code 391 private Package getAndVerifyPackage(String pkgname, 393 Package pkg = getPackage(pkgname); 395 // Package found, so check package sealing. 400 "sealing violation: package " + pkgname + " is sealed"); 403 // Make sure we are not attempting to seal the package [all...] |
/prebuilts/go/darwin-x86/src/cmd/go/internal/get/ |
get.go | 5 // Package get implements the ``go get'' command. 6 package get 35 each package has been checked out from the source control repository 56 When checking out a new package, get creates the target directory 60 When checking out or updating a package, get looks for a branch or tag 64 it retrieves the default branch of the package. 141 // needs to be evicted from the package cache so that 149 // referring to evicted packages from the package cache. 199 // a particular package. 210 // for the package named by the argument [all...] |
/prebuilts/go/darwin-x86/src/go/types/ |
api.go | 5 // Package types declares the data types and implements 7 // Config.Check to invoke the type checker for a package. 27 package types 39 // package (such as "unused variable"); "hard" errors may lead to unpredictable 60 // Import returns the imported package for the given import path. 63 Import(path string) (*Package, error) 76 // The types package does not call Import if an ImporterFrom 80 // ImportFrom returns the imported package for the given import 81 // path when imported by a package file located in dir. 83 // is encouraged to cache and return a package anyway, if on [all...] |
/prebuilts/go/linux-x86/src/cmd/go/internal/get/ |
get.go | 5 // Package get implements the ``go get'' command. 6 package get 35 each package has been checked out from the source control repository 56 When checking out a new package, get creates the target directory 60 When checking out or updating a package, get looks for a branch or tag 64 it retrieves the default branch of the package. 141 // needs to be evicted from the package cache so that 149 // referring to evicted packages from the package cache. 199 // a particular package. 210 // for the package named by the argument [all...] |
/prebuilts/go/linux-x86/src/go/types/ |
api.go | 5 // Package types declares the data types and implements 7 // Config.Check to invoke the type checker for a package. 27 package types 39 // package (such as "unused variable"); "hard" errors may lead to unpredictable 60 // Import returns the imported package for the given import path. 63 Import(path string) (*Package, error) 76 // The types package does not call Import if an ImporterFrom 80 // ImportFrom returns the imported package for the given import 81 // path when imported by a package file located in dir. 83 // is encouraged to cache and return a package anyway, if on [all...] |
/prebuilts/go/darwin-x86/src/cmd/go/internal/clean/ |
clean.go | 5 // Package clean implements the ``go clean'' command. 6 package clean 27 Clean removes object files from package source directories. 50 the package. 143 var cleaned = map[*load.Package]bool{} 168 func clean(p *load.Package) { 175 base.Errorf("can't load package: %v", p.Error) 189 // Record which files are not in package main. 205 // Remove dir-named executable only if this is package main. 213 // Remove package test executables [all...] |
/prebuilts/go/darwin-x86/src/cmd/go/internal/list/ |
list.go | 5 // Package list implements the ``go list'' command. 6 package list 28 The default output shows the package import path: 36 syntax of package template. The default output is equivalent to -f 39 type Package struct { 40 Dir string // directory containing package sources 41 ImportPath string // import path of package in dir 42 ImportComment string // path in import comment on package statement 43 Name string // package name 44 Doc string // package documentation strin [all...] |
/prebuilts/go/linux-x86/src/cmd/go/internal/clean/ |
clean.go | 5 // Package clean implements the ``go clean'' command. 6 package clean 27 Clean removes object files from package source directories. 50 the package. 143 var cleaned = map[*load.Package]bool{} 168 func clean(p *load.Package) { 175 base.Errorf("can't load package: %v", p.Error) 189 // Record which files are not in package main. 205 // Remove dir-named executable only if this is package main. 213 // Remove package test executables [all...] |
/prebuilts/go/linux-x86/src/cmd/go/internal/list/ |
list.go | 5 // Package list implements the ``go list'' command. 6 package list 28 The default output shows the package import path: 36 syntax of package template. The default output is equivalent to -f 39 type Package struct { 40 Dir string // directory containing package sources 41 ImportPath string // import path of package in dir 42 ImportComment string // path in import comment on package statement 43 Name string // package name 44 Doc string // package documentation strin [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/ |
HiiDatabase.h | 141 // HII Thunk will use TagGuid to associate the String Package and Form Package togehter.
144 // 1) if ((SharingStringPack == TRUE) && (StringPackageCount != 0 && IfrPackageCount == 0)), then this Package List only
145 /// has String Packages and provides Strings to other IFR package.
146 // 2) if ((SharingStringPack == TRUE) && (StringPackageCount == 0 && IfrPackageCount != 1)), then this Form Package
147 // copied String Packages from other Package List.
148 // 3) if ((SharingStringPack == FALSE)), this Package does not provide String Package or copy String Packages from other
149 // Package List.
152 // When a Hii->NewString() is called for this FwHiiHandle and SharingStringPack is TRUE, then all Package List that sharing [all...] |
/external/golang-protobuf/descriptor/ |
descriptor.go | 32 // Package descriptor provides functions for obtaining protocol buffer 35 // These functions cannot go in package proto because they depend on the 37 package descriptor
|
/external/golang-protobuf/ptypes/empty/ |
empty.pb.go | 5 Package empty is a generated protocol buffer package. 13 package empty 25 // is compatible with the proto package it is being compiled against. 27 // proto package needs to be updated. 28 const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
/external/llvm/utils/release/ |
build_llvm_package.bat | 28 echo Package version: %package_version%
71 ninja package || exit /b
94 ninja package || exit /b
|
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/android/internal/ |
ParallelUniverse.java | 0 package org.robolectric.android.internal; 114 PackageParser.Package parsedPackage = null; 125 parsedPackage = new PackageParser.Package("org.robolectric.default"); 130 // Support overriding the package name specified in the Manifest. 145 // to ActivityThread for the package which in turn calls the PackageManagerService directly.
|
/external/testng/src/main/java/org/testng/internal/ |
ClassHelper.java | 0 package org.testng.internal; 219 Package childPackage = childClass.getPackage(); 220 Package classPackage = clazz.getPackage();
|
/frameworks/base/core/java/com/android/internal/content/ |
NativeLibraryHelper.java | 17 package com.android.internal.content; 31 import android.content.pm.PackageParser.Package; 62 // Special value for {@code PackageParser.Package#cpuAbiOverride} to indicate 67 * A handle to an opened package, consisting of one or more APKs. Used as 87 throw new IOException("Failed to parse package: " + packageFile, e); 91 public static Handle create(Package pkg) throws IOException { 246 * Remove the native binaries of a given package. This deletes the files
|
/frameworks/base/services/core/java/com/android/server/pm/ |
SELinuxMMAC.java | 17 package com.android.server.pm; 197 * Loop over a signer tag looking for seinfo, package and cert tags. A {@link Policy} 233 } else if ("package".equals(tagName)) { 248 * Loop over a package element looking for seinfo child tags. If found return the 252 * @param parser an XmlPullParser object representing a package element. 259 * package tag. 263 parser.require(XmlPullParser.START_TAG, null, "package"); 312 * Selects a security label to a package based on input parameters and the seinfo tag taken 315 * the ApplicationInfo instance of the package. 317 * @param pkg object representing the package to be labeled [all...] |
/packages/services/Car/tools/hidl_parser/ |
parser.py | 32 tokens = ('package', 'import', 'enum', 'struct', 62 if t.value == 'package': 63 t.type = 'package' 188 class Package(object): 189 def __init__(self, package): 190 self.package = package 193 return 'package %s' % self.package 196 def __init__(self, package) [all...] |
/prebuilts/go/darwin-x86/src/cmd/cgo/ |
godefs.go | 5 package main 19 func (p *Package) godefs(f *File, srcfile string) string { 32 // inputs in package syscall say
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/types/ |
sym.go | 5 package types 13 // an object declared within a package, but Syms are also used to name internal 17 // associated with localpkg instead of the package that declared them. This 34 Origpkg *Pkg // original package for . import 48 func (sym *Sym) Package() bool { return sym.flags&symPackage != 0 }
|