/external/chromium_org/third_party/webrtc/tools/frame_editing/ |
frame_editing_lib.h | 34 int EditFrames(const std::string& in_path, int width, int height,
|
frame_editing.cc | 25 " --in_path=input.yuv --width=320 --height=240 --f=60 --interval=1 --l=120" 28 "--in_path(string): Path and filename to the input file\n" 68 parser.SetFlag("in_path", "-1"); 83 const char* in_path = parser.GetFlag("in_path").c_str(); local 92 if (!strcmp(in_path, "-1")) { 106 return webrtc::EditFrames(in_path, width, height, first_frame_to_cut,
|
frame_editing_lib.cc | 24 int EditFrames(const string& in_path, int width, int height, 32 FILE* in_fid = fopen(in_path.c_str() , "rb"); 34 fprintf(stderr, "Could not read input file: %s.\n", in_path.c_str());
|
/external/chromium_org/ppapi/shared_impl/ |
file_ref_create_info.cc | 15 std::string GetNameForExternalFilePath(const base::FilePath& in_path) { 16 const base::FilePath::StringType& path = in_path.value();
|
/external/lldb/scripts/ |
sed-sources | 140 my $in_path = shift; 141 if (-T $in_path) 150 print "# BEGIN: '$in_path'\n"; 156 $opt_g and print "temporary for '$in_path' is '$out_path'\n"; 158 open (IN, "<$in_path") or die "error: can't open '$in_path' for reading: $!"; 168 print "# END: '$in_path'\n"; 180 my $backup_command = "cp '$in_path' '$in_path.bak'"; 186 my $copy_command = "cp '$out_path' '$in_path'"; [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/ |
jsbundler.py | 62 def __init__(self, content, in_path, out_path): 64 self._in_path = in_path 132 def RewritePath(self, in_path): 136 in_path, str: The input path to rewrite. 141 if in_path.startswith(in_prefix): 142 return os.path.join(out_prefix, in_path[len(in_prefix):]) 143 return in_path 152 def EnsureSourceLoaded(in_path, sources): 153 if in_path not in sources: 154 out_path = path_rewriter.RewritePath(in_path) [all...] |
/external/chromium_org/chrome/browser/chromeos/drive/ |
file_system_interface.h | 36 MetadataSearchResult(const base::FilePath& in_path, 39 : path(in_path),
|
/external/chromium_org/native_client_sdk/src/build_tools/ |
generate_make.py | 288 in_path = os.path.join(SDK_RESOURCE_DIR, 'Makefile.index.template') 296 RunTemplateFileIfChanged(in_path, out_path, template_dict)
|
/external/oprofile/ |
oprofile_android | 392 in_path = os.path.join(dirpath, filename) 393 out_path = os.path.join(samples_dir, os.path.relpath(in_path, raw_samples_dir)) 402 rc, output = execute([opimport_bin, '-a', abi_file, '-o', out_path, in_path], echo=False)
|
/external/lldb/source/Target/ |
Process.cpp | 447 FileSpec in_path; local 452 in_path = target->GetStandardInputPath(); 457 if (in_path || out_path || err_path) 460 if (in_path && in_path.GetPath(path, sizeof(path))) [all...] |
/external/chromium_org/chrome/browser/extensions/ |
extension_service_unittest.cc | 774 const base::FilePath& in_path, 776 ASSERT_TRUE(base::PathExists(in_path)); 781 path = path.Append(in_path.BaseName()); 782 ASSERT_TRUE(base::CopyFile(in_path, path)); [all...] |