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

1 2

  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
plist.go 13 type Plist struct {
20 func Linknewplist(ctxt *Link) *Plist {
21 pl := new(Plist)
34 // Ignore ctxt->plist boundaries. There are no guarantees there,
link.go 731 Plists []*Plist
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
plist.go 13 type Plist struct {
20 func Linknewplist(ctxt *Link) *Plist {
21 pl := new(Plist)
34 // Ignore ctxt->plist boundaries. There are no guarantees there,
  /external/clang/utils/analyzer/
SATestBuild.py 289 SBOptions += "-plist-html -o '%s' " % SBOutputDir
357 CmdPrefix += "-analyze -analyzer-output=plist -w "
379 OutputOption = "-o '%s.plist' " % os.path.join(PlistPath, FileName)
448 if (not F.endswith('plist')):
450 Plist = os.path.join(DirPath, F)
451 Data = plistlib.readPlist(Plist)
459 plistlib.writePlist(Data, Plist)
467 # A plist file is created for each call to the analyzer(each source file).
470 for F in glob.glob(SBOutputDir + "/*/*.plist"):
488 Plists = glob.glob(SBOutputDir + "/*/*.plist")
    [all...]
  /external/python/cpython2/Mac/BuildScript/
build-installer.py 48 from plistlib import Plist
54 def writePlist(plist, path):
55 plist.write(path)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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...]
  /external/python/cpython2/Lib/
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/
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...]
  /external/python/cpython2/Lib/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...]
gensuitemodule.py 129 plistfile = os.path.join(application, 'Contents', 'Info.plist')
132 plist = plistlib.Plist.fromFile(plistfile)
133 return plist.get('NSAppleScriptEnabled', False)
    [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...]
gensuitemodule.py 129 plistfile = os.path.join(application, 'Contents', 'Info.plist')
132 plist = plistlib.Plist.fromFile(plistfile)
133 return plist.get('NSAppleScriptEnabled', False)
    [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...]
gensuitemodule.py 129 plistfile = os.path.join(application, 'Contents', 'Info.plist')
132 plist = plistlib.Plist.fromFile(plistfile)
133 return plist.get('NSAppleScriptEnabled', False)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
gsubr.go 164 func newplist() *obj.Plist {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
gsubr.go 164 func newplist() *obj.Plist {

Completed in 4672 milliseconds

1 2