HomeSort by relevance Sort by last modified time
    Searched refs:Pkg (Results 1 - 25 of 123) sorted by null

1 2 3 4 5

  /development/libraries/stereocamera/
source.properties 3 Pkg.Desc=Stereo Camera libraries, revision 1
4 Pkg.DescUrl=http\://developer.android.com/
6 Pkg.Revision=1
9 Pkg.SourceUrl=https\://dl-ssl.google.com/android/repository/repository.xml
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
reflect_test.go 15 &Sig{name: "b", pkg: &Pkg{Path: "abc"}},
16 &Sig{name: "b", pkg: nil},
17 &Sig{name: "c", pkg: nil},
18 &Sig{name: "c", pkg: &Pkg{Path: "uvw"}},
19 &Sig{name: "c", pkg: nil},
20 &Sig{name: "b", pkg: &Pkg{Path: "xyz"}},
21 &Sig{name: "a", pkg: &Pkg{Path: "abc"}}
    [all...]
go.go 19 type Pkg struct {
40 Importdef *Pkg // where imported definition was found
44 Pkg *Pkg
51 Origpkg *Pkg // original package for . import
145 var localpkg *Pkg // package being compiled
147 var importpkg *Pkg // package being imported
149 var itabpkg *Pkg // fake pkg for itab entries
151 var itablinkpkg *Pkg // fake package for runtime itab entrie
    [all...]
dcl.go 37 a.Pkg = b.Pkg
65 s := Pkglookup(d.Name, d.Pkg)
95 fmt.Printf(" '%s' %v\n", d.Name, Pkglookup(d.Name, d.Pkg))
121 tmp = s.Pkg.Path
169 if importpkg == nil && !typecheckok && s.Pkg != localpkg {
974 func embedded(s *Sym, pkg *Pkg) *Node {
990 } else if s.Pkg == builtinpkg {
991 // The name of embedded builtins belongs to pkg
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
reflect_test.go 15 &Sig{name: "b", pkg: &Pkg{Path: "abc"}},
16 &Sig{name: "b", pkg: nil},
17 &Sig{name: "c", pkg: nil},
18 &Sig{name: "c", pkg: &Pkg{Path: "uvw"}},
19 &Sig{name: "c", pkg: nil},
20 &Sig{name: "b", pkg: &Pkg{Path: "xyz"}},
21 &Sig{name: "a", pkg: &Pkg{Path: "abc"}}
    [all...]
go.go 19 type Pkg struct {
40 Importdef *Pkg // where imported definition was found
44 Pkg *Pkg
51 Origpkg *Pkg // original package for . import
145 var localpkg *Pkg // package being compiled
147 var importpkg *Pkg // package being imported
149 var itabpkg *Pkg // fake pkg for itab entries
151 var itablinkpkg *Pkg // fake package for runtime itab entrie
    [all...]
dcl.go 37 a.Pkg = b.Pkg
65 s := Pkglookup(d.Name, d.Pkg)
95 fmt.Printf(" '%s' %v\n", d.Name, Pkglookup(d.Name, d.Pkg))
121 tmp = s.Pkg.Path
169 if importpkg == nil && !typecheckok && s.Pkg != localpkg {
974 func embedded(s *Sym, pkg *Pkg) *Node {
990 } else if s.Pkg == builtinpkg {
991 // The name of embedded builtins belongs to pkg
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
MultipleWorkspace.py 76 for Pkg in cls.PACKAGES_PATH:
77 Path = os.path.join(Pkg, *p)
94 for Pkg in cls.PACKAGES_PATH:
95 if Path.lower().startswith(Pkg.lower()):
96 Path = os.path.relpath(Path, Pkg)
115 for Pkg in cls.PACKAGES_PATH:
116 absPath = os.path.join(Pkg, Path)
118 return Pkg
133 for Pkg in cls.PACKAGES_PATH:
134 Path = PathStr.replace(TAB_WORKSPACE, Pkg).strip()
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
BackupRecord.java 31 final BatteryStatsImpl.Uid.Pkg.Serv stats;
39 BackupRecord(BatteryStatsImpl.Uid.Pkg.Serv _agentStats, ApplicationInfo _appInfo,
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Core/
IpiDb.py 441 # delete from ModDepex the from pkg module's dependency
443 for Pkg in PkgList:
462 % (Pkg[0], Pkg[1], Pkg[0], Pkg[1], Pkg[0], Pkg[1],Pkg[0], Pkg[1])
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
DepexSection.py 54 for Pkg in ModuleData.Packages:
55 if Pkg not in PkgList:
56 PkgList.append(Pkg)
  /prebuilts/go/darwin-x86/src/go/types/
issues_test.go 209 // This tests that the package associated with the types.Object.Pkg method
226 _ = obj.Pkg()
242 _ = obj.Pkg()
259 _ = obj.Pkg()
275 var pkg *Package
278 if id.Name == "Pkg" {
279 pkg = obj.Pkg()
284 t.Fatalf("%s: got %d entries named Pkg; want 1", test, count)
286 if pkg.Name() != "types"
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
issues_test.go 209 // This tests that the package associated with the types.Object.Pkg method
226 _ = obj.Pkg()
242 _ = obj.Pkg()
259 _ = obj.Pkg()
275 var pkg *Package
278 if id.Name == "Pkg" {
279 pkg = obj.Pkg()
284 t.Fatalf("%s: got %d entries named Pkg; want 1", test, count)
286 if pkg.Name() != "types"
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
WorkspaceCommon.py 48 for Pkg in PkgList:
49 for Pcd in Pkg.Pcds:
50 DecPcds[Pcd[0], Pcd[1]] = Pkg.Pcds[Pcd]
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
go.go 21 // replace all "". with pkg.
22 func expandpkg(t0 string, pkg string) string {
23 return strings.Replace(t0, `"".`, pkg+".", -1)
31 func ldpkg(ctxt *Link, f *bio.Reader, pkg string, length int64, filename string, whence int) {
39 fmt.Fprintf(os.Stderr, "%s: too much pkg data in %s\n", os.Args[0], filename)
54 fmt.Fprintf(os.Stderr, "%s: short pkg read %s\n", os.Args[0], filename)
84 if pkg == "main" && !isMain {
124 loadcgo(ctxt, filename, pkg, data[p0:p1])
128 func loadcgo(ctxt *Link, file string, pkg string, p string) {
185 local = expandpkg(local, pkg)
    [all...]
ld.go 48 pkg := name
49 if len(pkg) >= 2 && pkg[len(pkg)-2] == '.' {
50 pkg = pkg[:len(pkg)-2]
55 if ctxt.Library[i].Pkg == pkg {
68 pname = dir + "/" + pkg + ".shlibname
    [all...]
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
go.go 21 // replace all "". with pkg.
22 func expandpkg(t0 string, pkg string) string {
23 return strings.Replace(t0, `"".`, pkg+".", -1)
31 func ldpkg(ctxt *Link, f *bio.Reader, pkg string, length int64, filename string, whence int) {
39 fmt.Fprintf(os.Stderr, "%s: too much pkg data in %s\n", os.Args[0], filename)
54 fmt.Fprintf(os.Stderr, "%s: short pkg read %s\n", os.Args[0], filename)
84 if pkg == "main" && !isMain {
124 loadcgo(ctxt, filename, pkg, data[p0:p1])
128 func loadcgo(ctxt *Link, file string, pkg string, p string) {
185 local = expandpkg(local, pkg)
    [all...]
ld.go 48 pkg := name
49 if len(pkg) >= 2 && pkg[len(pkg)-2] == '.' {
50 pkg = pkg[:len(pkg)-2]
55 if ctxt.Library[i].Pkg == pkg {
68 pname = dir + "/" + pkg + ".shlibname
    [all...]
  /prebuilts/go/darwin-x86/src/go/ast/
scope.go 73 // Pkg *Scope package scope
142 Pkg // package
152 Pkg: "package",
  /prebuilts/go/linux-x86/src/go/ast/
scope.go 73 // Pkg *Scope package scope
142 Pkg // package
152 Pkg: "package",
  /prebuilts/go/darwin-x86/src/cmd/vet/
unsafeptr.go 57 pt, ok := f.pkg.types[x.X].Type.(*types.Pointer)
60 if ok && t.Obj().Pkg().Path() == "reflect" {
79 t, ok := f.pkg.types[sel.X].Type.(*types.Named)
80 if ok && t.Obj().Pkg().Path() == "reflect" && t.Obj().Name() == "Value" {
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/
gcimporter_test.go 51 pkg, err := Import(make(map[string]*types.Package), path, srcDir)
57 return pkg
63 dirname := filepath.Join(runtime.GOROOT(), "pkg", runtime.GOOS+"_"+runtime.GOARCH, dir)
102 if pkg := testPath(t, "./testdata/exports", "."); pkg != nil {
112 got := fmt.Sprint(pkg.Imports())
230 pkg, err := Import(make(map[string]*types.Package), importPath, ".")
236 obj := pkg.Scope().Lookup(objName)
242 got := types.ObjectString(obj, types.RelativeTo(pkg))
258 pkg, err := Import(make(map[string]*types.Package), "strings", "."
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/
unsafeptr.go 57 pt, ok := f.pkg.types[x.X].Type.(*types.Pointer)
60 if ok && t.Obj().Pkg().Path() == "reflect" {
79 t, ok := f.pkg.types[sel.X].Type.(*types.Named)
80 if ok && t.Obj().Pkg().Path() == "reflect" && t.Obj().Name() == "Value" {
  /prebuilts/go/linux-x86/src/go/internal/gcimporter/
gcimporter_test.go 51 pkg, err := Import(make(map[string]*types.Package), path, srcDir)
57 return pkg
63 dirname := filepath.Join(runtime.GOROOT(), "pkg", runtime.GOOS+"_"+runtime.GOARCH, dir)
102 if pkg := testPath(t, "./testdata/exports", "."); pkg != nil {
112 got := fmt.Sprint(pkg.Imports())
230 pkg, err := Import(make(map[string]*types.Package), importPath, ".")
236 obj := pkg.Scope().Lookup(objName)
242 got := types.ObjectString(obj, types.RelativeTo(pkg))
258 pkg, err := Import(make(map[string]*types.Package), "strings", "."
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/
XmlParser.py 2 # This file is used to parse a xml file of .PKG file
60 self.Pkg = ''
170 self.Pkg = XmlParseFile(Filename)
177 Tmp.FromXml(XmlNode(self.Pkg, '/DistributionPackage/DistributionHeader'), 'DistributionHeader')
182 for Item in XmlList(self.Pkg, '/DistributionPackage/PackageSurfaceArea'):
192 for Item in XmlList(self.Pkg, '/DistributionPackage/ModuleSurfaceArea'):
202 self.DistP.Tools = Tmp.FromXml2(XmlNode(self.Pkg, '/DistributionPackage/Tools'), 'Tools')
209 Tmp.FromXml2(XmlNode(self.Pkg, \
216 for Item in XmlList(self.Pkg, '/DistributionPackage/UserExtensions'):
    [all...]

Completed in 789 milliseconds

1 2 3 4 5