/external/chromium_org/tools/gyp/test/win/ |
gyptest-link-base-address.py | 24 full_path = test.built_file_path(exe, chdir=CHDIR) 25 return test.run_dumpbin('/headers', full_path)
|
gyptest-link-defrelink.py | 28 full_path = test.built_file_path(binary, chdir=CHDIR) 29 output = test.run_dumpbin('/exports', full_path)
|
/external/chromium/chrome/browser/download/ |
download_file_unittest.cc | 75 EXPECT_TRUE(file_util::ReadFileToString((*file)->full_path(), 132 FilePath initial_path(download_file_->full_path()); 141 FilePath renamed_path = download_file_->full_path(); 154 renamed_path = download_file_->full_path(); 165 renamed_path = download_file_->full_path(); 180 renamed_path = download_file_->full_path();
|
save_item.cc | 115 void SaveItem::Rename(const FilePath& full_path) { 116 DCHECK(!full_path.empty() && !has_final_name()); 117 full_path_ = full_path;
|
save_item.h | 50 void Rename(const FilePath& full_path); 58 const FilePath& full_path() const { return full_path_; } function in class:SaveItem
|
/external/chromium/chrome/browser/extensions/ |
file_manager_util.cc | 134 void FileManagerUtil::ViewItem(const FilePath& full_path, bool enqueue) { 135 std::string ext = full_path.Extension(); 141 path.append(full_path.value()); 145 NewRunnableFunction(&ViewItem, full_path, enqueue)); 160 mediaplayer->EnqueueMediaFile(browser->profile(), full_path, NULL); 162 mediaplayer->ForcePlayMediaFile(browser->profile(), full_path, NULL); 174 UTF8ToUTF16(full_path.BaseName().value()))
|
/external/chromium_org/content/browser/download/ |
download_file_impl.cc | 107 const base::FilePath& full_path, 111 base::FilePath new_path(full_path); 138 const base::FilePath& full_path, 142 base::FilePath new_path(full_path); 146 if (full_path != file_.full_path()) 184 return file_.full_path();
|
base_file.h | 37 BaseFile(const base::FilePath& full_path, 49 // directory to create the temporary file in if |full_path()| is empty. If 50 // |default_directory| and |full_path()| are empty, then a temporary file will 61 virtual DownloadInterruptReason Rename(const base::FilePath& full_path); 83 base::FilePath full_path() const { return full_path_; } function in class:content::BaseFile
|
save_item.cc | 116 void SaveItem::Rename(const base::FilePath& full_path) { 117 DCHECK(!full_path.empty() && !has_final_name()); 118 full_path_ = full_path;
|
/hardware/invensense/65xx/libsensors_iio/ |
MPLSupport.cpp | 260 char full_path[MAX_SYSFS_NAME_LEN]; local 281 sprintf(full_path, "%s%s%s", sysfs_path, "/", ep->d_name); 282 LOGV_IF(0,"HAL DEBUG: reading %s", full_path); 283 fd = open(full_path, O_RDONLY); 291 LOGI("HAL DEBUG:sysfs:cat %s = %ld", full_path, data); 293 LOGV_IF(0,"HAL DEBUG: error reading %s", full_path); 296 LOGV_IF(0,"HAL DEBUG: error opening %s", full_path);
|
/system/extras/ext4_utils/ |
make_ext4fs.c | 105 full_path is an absolute or relative path, with a trailing slash, to the 110 static u32 build_directory_structure(const char *full_path, const char *dir_path, 125 if (full_path) { 126 entries = scandir(full_path, &namelist, filter_dot, (void*)alphasort); 152 asprintf(&dentries[i].full_path, "%s%s", full_path, namelist[i]->d_name); 156 ret = lstat(dentries[i].full_path, &stat); 210 readlink(dentries[i].full_path, dentries[i].link, info.block_size - 1); 228 dentries[0].full_path = NULL; 246 entry_inode = make_file(dentries[i].full_path, dentries[i].size) [all...] |
/external/chromium_org/chrome/test/functional/ispy/common/ |
ispy_utils.py | 62 def UploadImage(self, full_path, image): 66 full_path: the path to the file in GS including the file extension. 70 full_path, image_tools.EncodePNG(image), 'image/png') 72 def DownloadImage(self, full_path): 76 full_path: the path to the file in GS including the file extension. 84 return image_tools.DecodePNG(self.cloud_bucket.DownloadFile(full_path)) 86 def UpdateImage(self, full_path, image): 90 full_path: the path to the file in GS including the file extension. 93 self.cloud_bucket.UpdateFile(full_path, image_tools.EncodePNG(image))
|
/external/chromium/chrome/browser/history/ |
download_database.cc | 20 // full_path Location of the download on disk. 68 "full_path LONGVARCHAR NOT NULL," 88 "SELECT id, full_path, url, start_time, received_bytes, " 129 "UPDATE downloads SET full_path=? WHERE id=?")); 151 "(full_path, url, start_time, received_bytes, total_bytes, state) "
|
/external/chromium/chrome/browser/ |
platform_util_mac.mm | 22 void ShowItemInFolder(const FilePath& full_path) { 24 NSString* path_string = base::SysUTF8ToNSString(full_path.value()); 27 LOG(WARNING) << "NSWorkspace failed to select file " << full_path.value(); 37 void OpenItem(const FilePath& full_path) { 39 NSString* path_string = base::SysUTF8ToNSString(full_path.value());
|
platform_util.h | 18 void ShowItemInFolder(const FilePath& full_path); 21 void OpenItem(const FilePath& full_path);
|
/external/chromium_org/chrome/browser/ |
platform_util_mac.mm | 23 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) { 25 NSString* path_string = base::SysUTF8ToNSString(full_path.value()); 28 LOG(WARNING) << "NSWorkspace failed to select file " << full_path.value(); 38 void OpenItem(Profile* profile, const base::FilePath& full_path) { 40 NSString* path_string = base::SysUTF8ToNSString(full_path.value());
|
/external/chromium_org/sandbox/win/src/ |
interception_agent.cc | 63 bool InterceptionAgent::DllMatch(const UNICODE_STRING* full_path, 73 if (full_path && 74 !g_nt.RtlCompareUnicodeString(¤t_name, full_path, case_insensitive)) 84 bool InterceptionAgent::OnDllLoad(const UNICODE_STRING* full_path, 90 if (DllMatch(full_path, name, dll_info))
|
/external/chromium_org/tools/telemetry/telemetry/page/ |
profile_generator.py | 68 full_path = os.path.join(directory, path) 69 if (not os.path.isfile(full_path) and 70 not os.path.isdir(full_path) and 71 not os.path.islink(full_path)): 72 logging.warning('Ignoring pseudo file: %s' % full_path)
|
/external/v8/test/mozilla/ |
testcfg.py | 119 full_path = root_path + [file[:-3]] 120 full_path = [x for x in full_path if x != 'data'] 121 if self.Contains(path, full_path): 122 test = MozillaTestCase(join(root, file), full_path, self.context,
|
/external/chromium_org/chrome/common/net/ |
url_fixer_upper_unittest.cc | 221 // full_path = "c:\foo\bar.txt" 226 base::FilePath* full_path) { 227 *full_path = dir.Append(file_name); 228 return file_util::WriteFile(*full_path, "", 0) == 0; 466 base::FilePath full_path, dir; local 470 ASSERT_TRUE(MakeTempFile(dir, file_part, &full_path)); 471 full_path = base::MakeAbsoluteFilePath(full_path); 472 ASSERT_FALSE(full_path.empty()); 485 file_part).possibly_invalid_spec(), full_path)); [all...] |
/external/chromium/chrome/browser/ui/webui/ |
screenshot_source.cc | 73 const std::string& full_path) { 76 std::string path = full_path.substr(0, full_path.find_first_of("?"));
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
concatenate_css_files.py | 93 full_path = expander.expand(input_file_name) 94 if (full_path is None): 99 input_file = open(full_path, 'r')
|
concatenate_js_files.py | 93 full_path = expander.expand(input_file_name) 94 if (full_path is None): 99 input_file = open(full_path, 'r')
|
inline_js_imports.py | 60 full_path = os.path.join(imports_dir, import_file_name) 61 if not os.access(full_path, os.F_OK): 65 import_file = open(full_path, 'r')
|
/external/v8/test/sputnik/ |
testcfg.py | 97 full_path = current_path + [test.GetPath()[-1]] 98 if self.Contains(path, full_path): 99 case = SputnikTestCase(test, full_path, self.context, mode)
|