OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pathOrFile
(Results
1 - 3
of
3
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
plistlib.py
7
To write out a plist file, use the writePlist(rootObject,
pathOrFile
)
8
function. 'rootObject' is the top level object, '
pathOrFile
' is a
11
To parse a plist from a file, use the readPlist(
pathOrFile
) function,
49
pl = readPlist(
pathOrFile
)
68
def readPlist(
pathOrFile
):
69
"""Read a .plist file. '
pathOrFile
' may either be a file name or a
74
if isinstance(
pathOrFile
, (str, unicode)):
75
pathOrFile
= open(
pathOrFile
)
78
rootObject = p.parse(
pathOrFile
)
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
plistlib.py
7
To write out a plist file, use the writePlist(rootObject,
pathOrFile
)
8
function. 'rootObject' is the top level object, '
pathOrFile
' is a
11
To parse a plist from a file, use the readPlist(
pathOrFile
) function,
49
pl = readPlist(
pathOrFile
)
68
def readPlist(
pathOrFile
):
69
"""Read a .plist file. '
pathOrFile
' may either be a file name or a
74
if isinstance(
pathOrFile
, (str, unicode)):
75
pathOrFile
= open(
pathOrFile
)
78
rootObject = p.parse(
pathOrFile
)
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
pimp.py
452
def dump(self,
pathOrFile
):
468
plist.write(
pathOrFile
)
[
all
...]
Completed in 6072 milliseconds