/prebuilts/go/darwin-x86/src/cmd/internal/obj/ |
link.go | 482 Plist *Plist 483 Plast *Plist 550 type Plist struct { 554 Link *Plist 560 func Linknewplist(ctxt *Link) *Plist { 561 pl := new(Plist) 562 if ctxt.Plist == nil { 563 ctxt.Plist = pl
|
objfile.go | 123 // Ignore ctxt->plist boundaries. There are no guarantees there, 131 for pl := ctxt.Plist; pl != nil; pl = pl.Link {
|
/prebuilts/go/linux-x86/src/cmd/internal/obj/ |
link.go | 482 Plist *Plist 483 Plast *Plist 550 type Plist struct { 554 Link *Plist 560 func Linknewplist(ctxt *Link) *Plist { 561 pl := new(Plist) 562 if ctxt.Plist == nil { 563 ctxt.Plist = pl
|
objfile.go | 123 // Ignore ctxt->plist boundaries. There are no guarantees there, 131 for pl := ctxt.Plist; pl != nil; pl = pl.Link {
|
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/internal/obj/ |
link.go | 485 Plist *Plist 486 Plast *Plist 553 type Plist struct { 557 Link *Plist 563 func Linknewplist(ctxt *Link) *Plist { 564 pl := new(Plist) 565 if ctxt.Plist == nil { 566 ctxt.Plist = pl
|
objfile.go | 126 // Ignore ctxt->plist boundaries. There are no guarantees there, 134 for pl := ctxt.Plist; pl != nil; pl = pl.Link {
|
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/internal/obj/ |
link.go | 485 Plist *Plist 486 Plast *Plist 553 type Plist struct { 557 Link *Plist 563 func Linknewplist(ctxt *Link) *Plist { 564 pl := new(Plist) 565 if ctxt.Plist == nil { 566 ctxt.Plist = pl
|
objfile.go | 126 // Ignore ctxt->plist boundaries. There are no guarantees there, 134 for pl := ctxt.Plist; pl != nil; pl = pl.Link {
|
/external/clang/utils/analyzer/ |
SATestBuild.py | 289 SBOptions += "-plist-html -o " + SBOutputDir + " " 357 CmdPrefix += "-analyze -analyzer-output=plist -w " 379 OutputOption = "-o " + os.path.join(PlistPath, FileName) + ".plist " 441 if (not F.endswith('plist')): 443 Plist = os.path.join(DirPath, F) 444 Data = plistlib.readPlist(Plist) 452 plistlib.writePlist(Data, Plist) 460 # A plist file is created for each call to the analyzer(each source file). 463 for F in glob.glob(SBOutputDir + "/*/*.plist"): 481 Plists = glob.glob(SBOutputDir + "/*/*.plist") [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
plistlib.py | 1 r"""plistlib.py -- a tool to generate and parse MacOSX .plist files. 3 The PropertyList (.plist) file format is a simple XML pickle supporting 7 To write out a plist file, use the writePlist(rootObject, pathOrFile) 11 To parse a plist from a file, use the readPlist(pathOrFile) function, 15 To work with plist data in strings, you can use readPlistFromString() 23 The <data> plist type is supported through the Data class. This is a 26 Generate Plist example: 47 Parse Plist example: 57 "Plist", "Data", "Dict" 59 # Note: the Plist and Dict classes have been deprecated [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
plistlib.py | 1 r"""plistlib.py -- a tool to generate and parse MacOSX .plist files. 3 The PropertyList (.plist) file format is a simple XML pickle supporting 7 To write out a plist file, use the writePlist(rootObject, pathOrFile) 11 To parse a plist from a file, use the readPlist(pathOrFile) function, 15 To work with plist data in strings, you can use readPlistFromString() 23 The <data> plist type is supported through the Data class. This is a 26 Generate Plist example: 47 Parse Plist example: 57 "Plist", "Data", "Dict" 59 # Note: the Plist and Dict classes have been deprecated [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
plistlib.py | 1 r"""plistlib.py -- a tool to generate and parse MacOSX .plist files. 3 The PropertyList (.plist) file format is a simple XML pickle supporting 7 To write out a plist file, use the writePlist(rootObject, pathOrFile) 11 To parse a plist from a file, use the readPlist(pathOrFile) function, 15 To work with plist data in strings, you can use readPlistFromString() 23 The <data> plist type is supported through the Data class. This is a 26 Generate Plist example: 47 Parse Plist example: 57 "Plist", "Data", "Dict" 59 # Note: the Plist and Dict classes have been deprecated [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
plistlib.py | 1 r"""plistlib.py -- a tool to generate and parse MacOSX .plist files. 3 The PropertyList (.plist) file format is a simple XML pickle supporting 7 To write out a plist file, use the writePlist(rootObject, pathOrFile) 11 To parse a plist from a file, use the readPlist(pathOrFile) function, 15 To work with plist data in strings, you can use readPlistFromString() 23 The <data> plist type is supported through the Data class. This is a 26 Generate Plist example: 47 Parse Plist example: 57 "Plist", "Data", "Dict" 59 # Note: the Plist and Dict classes have been deprecated [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/ |
bundlebuilder.py | 40 from plistlib import Plist 75 and creates the PkgInfo and Info.plist files. 84 # The property list ("plist") 85 plist = Plist(CFBundleDevelopmentRegion = "English", variable in class:BundleBuilder 129 plist = self.plist 130 plist.CFBundleName = self.name 131 plist.CFBundlePackageType = self.type 133 if hasattr(plist, "CFBundleSignature") [all...] |
buildtools.py | 295 # And deduce the .plist and .icns names 300 plistname = tmp + '.plist' 332 builder.plist = plistlib.Plist.fromFile(plistname)
|
pimp.py | 53 DEFAULT_PIMPDATABASE_FMT="http://www.python.org/packman/version-%s/%s-%s-%s-%s-%s.plist" 393 plistdata = plistlib.Plist.fromFile(fp) 453 """Dump the contents of the database to an XML .plist file. 467 plist = plistlib.Plist(**plistdata) 468 plist.write(pathOrFile) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
bundlebuilder.py | 40 from plistlib import Plist 75 and creates the PkgInfo and Info.plist files. 84 # The property list ("plist") 85 plist = Plist(CFBundleDevelopmentRegion = "English", variable in class:BundleBuilder 129 plist = self.plist 130 plist.CFBundleName = self.name 131 plist.CFBundlePackageType = self.type 133 if hasattr(plist, "CFBundleSignature") [all...] |
buildtools.py | 295 # And deduce the .plist and .icns names 300 plistname = tmp + '.plist' 332 builder.plist = plistlib.Plist.fromFile(plistname)
|
pimp.py | 53 DEFAULT_PIMPDATABASE_FMT="http://www.python.org/packman/version-%s/%s-%s-%s-%s-%s.plist" 393 plistdata = plistlib.Plist.fromFile(fp) 453 """Dump the contents of the database to an XML .plist file. 467 plist = plistlib.Plist(**plistdata) 468 plist.write(pathOrFile) [all...] |
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
pgen.go | 353 var pl *obj.Plist
|
gsubr.go | 503 func newplist() *obj.Plist {
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
pgen.go | 350 var pl *obj.Plist
|
gsubr.go | 500 func newplist() *obj.Plist {
|
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
pgen.go | 353 var pl *obj.Plist
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
pgen.go | 350 var pl *obj.Plist
|