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

  /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/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...]

Completed in 195 milliseconds