/frameworks/base/data/videos/ |
VideoPackage1.mk | 20 TARGET_PATH := system/media/video 23 $(LOCAL_PATH)/AndroidInSpace.240p.mp4:$(TARGET_PATH)/AndroidInSpace.240p.mp4 \ 24 $(LOCAL_PATH)/AndroidInSpace.480p.lq.mp4:$(TARGET_PATH)/AndroidInSpace.480p.mp4 \ 25 $(LOCAL_PATH)/Sunset.240p.mp4:$(TARGET_PATH)/Sunset.240p.mp4 \ 26 $(LOCAL_PATH)/Sunset.480p.lq.mp4:$(TARGET_PATH)/Sunset.480p.mp4
|
VideoPackage2.mk | 20 TARGET_PATH := system/media/video 23 $(LOCAL_PATH)/AndroidInSpace.240p.mp4:$(TARGET_PATH)/AndroidInSpace.240p.mp4 \ 24 $(LOCAL_PATH)/AndroidInSpace.480p.mq.mp4:$(TARGET_PATH)/AndroidInSpace.480p.mp4 \ 25 $(LOCAL_PATH)/Sunset.240p.mp4:$(TARGET_PATH)/Sunset.240p.mp4 \ 26 $(LOCAL_PATH)/Sunset.480p.mq.mp4:$(TARGET_PATH)/Sunset.480p.mp4
|
/external/chromium/chrome/browser/chromeos/cros/ |
burn_library.h | 21 if (status.target_path) 22 target_path = status.target_path; 26 std::string target_path; member in struct:ImageBurnStatus
|
burn_library.cc | 139 target_path_ == status.target_path)
|
/external/chromium/base/test/ |
test_file_util_posix.cc | 68 // the suffix after source_dir onto dest_dir to create the target_path. 75 const FilePath target_path = dest_dir.Append(suffix); local 78 if (mkdir(target_path.value().c_str(), info.stat.st_mode & 01777) != 0 && 81 target_path.value() << " errno = " << errno; 85 if (CopyFile(current, target_path)) { 86 success = EvictFileFromSystemCache(target_path); 90 target_path.value();
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
autoinstall.py | 238 target_path = os.path.join(scratch_dir, target_basename) 240 self._log_transfer("Starting gunzip/extract...", path, target_path) 258 tar_file.extractall(target_path) 262 return target_path 305 target_path = os.path.join(scratch_dir, target_basename) 307 self._log_transfer("Starting unzip...", path, target_path) 322 return target_path 383 target_path = os.path.join(scratch_dir, target_filename) 385 self._log_transfer("Starting download...", url, target_path) 387 with open(target_path, "wb") as stream [all...] |
workspace.py | 45 target_path = self._filesystem.join(directory, target_name) 46 if not self._filesystem.exists(target_path): 47 return target_path
|
/external/chromium/chrome/browser/cocoa/ |
install_from_dmg.mm | 246 // target_path and perform any additional on-disk bookkeeping needed to be 247 // able to launch target_path properly. If authorization_arg is non-NULL, 253 NSString* target_path) { 260 const char* target_path_c = [target_path fileSystemRepresentation]; 276 target_path, 302 [keystone_glue setAppPath:target_path]; 403 NSString* target_path = 406 if ([file_manager fileExistsAtPath:target_path]) { 407 VLOG(1) << "Something already exists at " << [target_path UTF8String]; 431 target_path) || [all...] |
/external/chromium/chrome/common/ |
logging_chrome.cc | 184 FilePath target_path; local 187 target_path = GenerateTimestampedName(symlink_path, base::Time::Now()); 194 if (!file_util::CreateSymbolicLink(target_path, symlink_path)) { 196 << " pointing at " << target_path.value(); 199 if (!file_util::ReadSymbolicLink(symlink_path, &target_path)) 202 return target_path; 206 const FilePath& target_path) { 209 if (::unlink(target_path.value().c_str()) == -1) 210 PLOG(WARNING) << "Unable to unlink log file " << target_path.value(); 243 FilePath target_path = SetUpSymlinkIfNeeded(log_path, true) local 288 FilePath target_path = SetUpSymlinkIfNeeded( local [all...] |
/external/chromium/base/ |
file_util_posix.cc | 284 // the suffix after from_path onto to_path to create the target_path. 291 const FilePath target_path = to_path.Append(suffix); local 294 if (mkdir(target_path.value().c_str(), info.stat.st_mode & 01777) != 0 && 297 target_path.value() << " errno = " << errno; 301 if (!CopyFile(current, target_path)) { 303 target_path.value(); 376 bool CreateSymbolicLink(const FilePath& target_path, 379 DCHECK(!target_path.empty()); 380 return ::symlink(target_path.value().c_str(), 385 FilePath* target_path) { [all...] |
file_util_unittest.cc | 69 bool SetReparsePoint(HANDLE source, const FilePath& target_path) { 73 if (kPathPrefix != target_path.value().substr(0, kPathPrefix.size())) 75 target_str += target_path.value(); [all...] |
/external/chromium/chrome/browser/ui/webui/chromeos/ |
imageburner_ui.cc | 238 status.target_path, evt); 706 const FilePath& target_path, 709 target_path, tab_contents, this);
|