OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PMapFile
(Results
1 - 2
of
2
) sorted by null
/external/clang/utils/analyzer/
SATestAdd.py
25
def isExistingProject(
PMapFile
, projectID) :
26
PMapReader = csv.reader(
PMapFile
)
49
PMapFile
= open(ProjectMapPath, "r+b")
52
PMapFile
= open(ProjectMapPath, "w+b")
54
if (isExistingProject(
PMapFile
, ID)) :
59
PMapWriter = csv.writer(
PMapFile
)
63
PMapFile
.close()
SATestBuild.py
513
PMapFile
= open(getProjectMapPath(), "rb")
516
for I in csv.reader(
PMapFile
):
529
updateSVN("delete",
PMapFile
);
532
PMapFile
.seek(0)
533
for I in csv.reader(
PMapFile
):
538
updateSVN("add",
PMapFile
);
544
PMapFile
.close()
Completed in 108 milliseconds