OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:infoFile
(Results
1 - 3
of
3
) sorted by null
/external/clang/lib/ARCMigrate/
FileRemapper.cpp
37
std::string
infoFile
= getRemapInfoFile(outputDir);
39
llvm::sys::fs::remove(
infoFile
, existed);
46
llvm::sys::Path
infoFile
= dir;
47
infoFile
.appendComponent("remap");
48
return
infoFile
.str();
55
std::string
infoFile
= getRemapInfoFile(outputDir);
57
llvm::sys::fs::exists(
infoFile
, fileExists);
63
std::ifstream fin(
infoFile
.c_str());
65
return report(std::string("Error opening file: ") +
infoFile
, Diag);
75
return report(std::string("Error in format of file: ") +
infoFile
, Diag)
[
all
...]
/frameworks/compile/libbcc/lib/ExecutionEngine/
Script.cpp
271
FileHandle
infoFile
;
272
if (
infoFile
.open(infoPath.c_str(), OpenMode::Read) < 0) {
300
return !reader.checkCacheFile(&objFile, &
infoFile
, this);
303
ScriptCached *cached = reader.readCacheFile(&objFile, &
infoFile
, this);
408
FileHandle
infoFile
;
411
infoFile
.open(infoPath.c_str(), OpenMode::Write) >= 0) {
440
if (!writer.writeCacheFile(&objFile, &
infoFile
, this, libRS_threadable)) {
449
infoFile
.truncate();
450
infoFile
.close();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/discovery/
NdkDiscoveredPathInfo.java
132
File
infoFile
= getInfoFile();
133
infoFile
.getParentFile().mkdirs();
134
PrintStream out = new PrintStream(
infoFile
);
164
File
infoFile
= getInfoFile();
165
if (!
infoFile
.exists())
172
BufferedReader reader = new BufferedReader(new FileReader(
infoFile
));
Completed in 42 milliseconds