OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:disk_file
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
importer.h
250
// calling Open(*virtual_file) will open the file named by
disk_file
.
266
DiskFileToVirtualFile(const string&
disk_file
,
271
// Return true and update
disk_file
with the on-disk path if the file exists.
272
// Return false and leave
disk_file
untouched if the file doesn't exist.
273
bool VirtualFileToDiskFile(const string& virtual_file, string*
disk_file
);
289
// Like Open(), but returns the on-disk path in
disk_file
if
disk_file
is
292
string*
disk_file
);
importer.cc
352
const string&
disk_file
,
356
string canonical_disk_file = CanonicalizePath(
disk_file
);
388
scoped_ptr<io::ZeroCopyInputStream> stream(OpenDiskFile(
disk_file
));
397
string*
disk_file
) {
399
disk_file
));
409
string*
disk_file
) {
424
if (
disk_file
!= NULL) {
425
*
disk_file
= temp_disk_file;
importer_unittest.cc
578
string
disk_file
;
local
579
EXPECT_TRUE(source_tree_.VirtualFileToDiskFile("bar/foo", &
disk_file
));
580
EXPECT_EQ(dirnames_[0] + "/foo",
disk_file
);
581
EXPECT_TRUE(source_tree_.VirtualFileToDiskFile("bar/quux", &
disk_file
));
582
EXPECT_EQ(dirnames_[1] + "/quux",
disk_file
);
/external/protobuf/src/google/protobuf/compiler/
importer.h
250
// calling Open(*virtual_file) will open the file named by
disk_file
.
266
DiskFileToVirtualFile(const string&
disk_file
,
271
// Return true and update
disk_file
with the on-disk path if the file exists.
272
// Return false and leave
disk_file
untouched if the file doesn't exist.
273
bool VirtualFileToDiskFile(const string& virtual_file, string*
disk_file
);
288
// Like Open(), but returns the on-disk path in
disk_file
if
disk_file
is
291
string*
disk_file
);
importer.cc
347
const string&
disk_file
,
351
string canonical_disk_file = CanonicalizePath(
disk_file
);
383
scoped_ptr<io::ZeroCopyInputStream> stream(OpenDiskFile(
disk_file
));
392
string*
disk_file
) {
394
disk_file
));
404
string*
disk_file
) {
419
if (
disk_file
!= NULL) {
420
*
disk_file
= temp_disk_file;
importer_unittest.cc
578
string
disk_file
;
local
579
EXPECT_TRUE(source_tree_.VirtualFileToDiskFile("bar/foo", &
disk_file
));
580
EXPECT_EQ(dirnames_[0] + "/foo",
disk_file
);
581
EXPECT_TRUE(source_tree_.VirtualFileToDiskFile("bar/quux", &
disk_file
));
582
EXPECT_EQ(dirnames_[1] + "/quux",
disk_file
);
Completed in 27 milliseconds