/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_helpers.cc | 207 const string file_name = file->name(); local 230 if (params.has_java_package(file_name)) { 231 result += params.java_package(file_name); 235 if (params.has_java_outer_classname(file_name)) { 239 result += params.java_outer_classname(file_name);
|
/external/chromium/chrome/browser/web_applications/ |
web_app.cc | 309 FilePath file_name = 313 FilePath icon_file = web_app_path_.Append(file_name).ReplaceExtension( 353 FilePath shortcut_file = shortcut_paths[i].Append(file_name). 412 string16 file_name; local 419 file_name += c; 422 return FilePath(file_name);
|
/external/chromium/sdch/open-vcdiff/src/ |
vcdiff_main.cc | 95 // Opens a file for incremental reading. file_name is the name of the file 103 bool OpenFileForReading(const string& file_name, 251 bool VCDiffFileBasedCoder::OpenFileForReading(const string& file_name, 257 if (!*file && file_name.empty()) { 265 *file = fopen(file_name.c_str(), "rb"); 268 << file_name << "': " << strerror(errno) << std::endl; 275 << file_name << "': " << strerror(errno) << std::endl;
|
/external/bison/lib/ |
bitset_stats.c | 242 bitset_stats_read (const char *file_name) 249 if (!file_name) 250 file_name = BITSET_STATS_FILE; 252 file = fopen (file_name, "r"); 272 bitset_stats_write (const char *file_name) 279 if (!file_name) 280 file_name = BITSET_STATS_FILE; 282 file = fopen (file_name, "w");
|
/external/bison/src/ |
files.c | 181 /* Decompose FILE_NAME in four parts: *BASE, *TAB, and *EXT, the fourth 182 part, (the directory) is ranging from FILE_NAME to the char before 191 None are allocated, they are simply pointers to parts of FILE_NAME. 210 file_name_split (const char *file_name, 213 *base = base_name (file_name);
|
/external/bluetooth/glib/gio/xdgmime/ |
xdgmimeparent.c | 126 const char *file_name) 133 file = fopen (file_name, "r");
|
/external/chromium/googleurl/src/ |
url_parse.cc | 492 Component* file_name) { 495 file_name->reset(); 517 *file_name = MakeRange(i + 1, file_end); 524 *file_name = MakeRange(path.begin, file_end); 656 Component* file_name) { 657 DoExtractFileName(url, path, file_name); 662 Component* file_name) { 663 DoExtractFileName(url, path, file_name);
|
/external/oprofile/libutil++/ |
file_manip.cpp | 149 string op_dirname(string const & file_name) 151 string result = erase_trailing_path_separator(file_name);
|
/external/webrtc/test/testsupport/ |
fileutils.cc | 113 bool FileExists(std::string file_name) { 115 return stat(file_name.c_str(), &file_info) == 0;
|
/pdk/build/ |
prepare_pdk_tree.py | 138 for file_name in copy_files_list: 139 create_symbolic_link(sourceDir, targetDir, file_name)
|
/external/chromium/testing/gtest/samples/ |
sample9_unittest.cc | 77 test_part_result.file_name(),
|
/external/gtest/samples/ |
sample9_unittest.cc | 77 test_part_result.file_name(),
|
/external/protobuf/gtest/samples/ |
sample9_unittest.cc | 77 test_part_result.file_name(),
|
/external/webrtc/src/system_wrappers/source/ |
data_log.cc | 82 // Creates a log file, named as specified in the string file_name, to 84 int CreateLogFile(const std::string& file_name); 206 int LogTable::CreateLogFile(const std::string& file_name) { 207 if (file_name.length() == 0) 211 file_->OpenFile(file_name.c_str(),
|
/system/core/init/ |
init.h | 137 int load_565rle_image( char *file_name );
|
/external/elfutils/libdwfl/ |
libdwflP.h | 296 char **file_name) internal_function; 306 const char *file_name, int fd, 312 const char *file_name,
|
linux-kernel-modules.c | 594 char **file_name, Elf **elfp) 599 file_name, elfp); 609 return find_kernel_elf (mod->dwfl, release, file_name); 676 *file_name = strdup (f->fts_path); 680 free (*file_name); 681 else if (*file_name == NULL)
|
/external/libpng/ |
example.c | 58 int check_if_png(char *file_name, FILE **fp) 63 if ((*fp = fopen(file_name, "rb")) == NULL) 83 void read_png(char *file_name) /* We need to open the file */ 92 if ((fp = fopen(file_name, "rb")) == NULL) 561 void write_png(char *file_name /* , ... other image information ... */) 569 fp = fopen(file_name, "wb");
|
/external/opencv/cxcore/src/ |
cxerror.cpp | 335 const char* file_name, int line ) 349 context->err_ctx.file = file_name; 356 file_name, line, context->userdata );
|
/external/chromium/base/ |
tracked_objects.cc | 676 birth_files_[location.file_name()]++; 771 if (left.location().file_name() != right.location().file_name()) { 772 int comp = strcmp(left.location().file_name(), 773 right.location().file_name()); 835 if (left.location().file_name() != right.location().file_name()) { 836 int comp = strcmp(left.location().file_name(), 837 right.location().file_name()); 885 if (!strstr(sample.location().file_name(), required_.c_str()) [all...] |
file_util_unittest.cc | 657 FilePath file_name = temp_dir_.path().Append(FPL("Test DeleteFile 1.txt")); local 658 CreateTextFile(file_name, bogus_content); 659 ASSERT_TRUE(file_util::PathExists(file_name)); 662 EXPECT_TRUE(file_util::Delete(file_name, false)); 663 EXPECT_FALSE(file_util::PathExists(file_name)); 666 file_name = temp_dir_.path().Append(FPL("Test DeleteFile 2.txt")); 667 CreateTextFile(file_name, bogus_content); 668 ASSERT_TRUE(file_util::PathExists(file_name)); 671 EXPECT_TRUE(file_util::Delete(file_name, true)); 672 EXPECT_FALSE(file_util::PathExists(file_name)); 681 FilePath file_name = temp_dir_.path().Append(FPL("Test DeleteWildCard.txt")); local 733 FilePath file_name = test_subdir.Append(FPL("Test DeleteDir.txt")); local 763 FilePath file_name = test_subdir.Append(FPL("Test DeleteDirRecursive.txt")); local 1208 FilePath file_name = temp_dir_.path().Append(L"Test File.txt"); local [all...] |
file_util.h | 518 bool Initialize(const FilePath& file_name); 526 bool InitializeAsImageSection(const FilePath& file_name); 537 bool MapFileToMemory(const FilePath& file_name);
|
/external/chromium/chrome/browser/download/ |
save_package.cc | 453 FilePath::StringType file_name = pure_file_name + file_name_ext; 456 if (file_name_set_.find(file_name) == file_name_set_.end()) { 457 file_name_set_.insert(file_name); 484 file_name = temp_file.RemoveExtension().BaseName().value(); 488 max_path, &file_name)) 496 file_name = new_name; 503 file_name_set_.insert(file_name); 506 DCHECK(!file_name.empty()); 507 generated_name->assign(file_name); 1171 FilePath::StringType file_name = name_with_proper_ext.value(); local [all...] |
/external/srec/srec/test/SRecTest/src/ |
SRecTest.c | 1174 LCHAR file_name [P_PATH_MAX]; local 1349 LCHAR file_name [P_PATH_MAX]; local 1377 LCHAR file_name [P_PATH_MAX]; local 1858 LCHAR file_name [P_PATH_MAX]; local 1916 LCHAR file_name [P_PATH_MAX]; local [all...] |
/external/bluetooth/bluez/tools/ |
hciattach_ti.c | 114 static FILE *bts_load_script(const char* file_name, uint32_t* version) 119 fp = fopen(file_name, "rb"); 131 fprintf(stderr, "%s not a legal TI firmware file\n", file_name);
|