HomeSort by relevance Sort by last modified time
    Searched full:infile (Results 1 - 25 of 426) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/tools/build/linux/
sed.sh 8 # sed -e A -e B infile > outfile
11 infile="$1"
15 sed "$@" "$infile" > "$outfile"
  /external/bzip2/
format.pl 24 my $infile = shift;
25 # check infile exists
26 die "Can't find file \"$infile\""
27 unless -f $infile;
28 # check we can read infile
29 if (! -r $infile) {
30 die "Can't read input $infile\n";
32 # check we can open infile
33 open( INFILE,"<$infile" ) or
    [all...]
  /external/chromium_org/tools/gyp/test/win/batch-file-action/
batch-file-action.gyp 13 'inputs': ['infile'],
15 'action': ['somecmd.bat', 'infile', 'outfile'],
  /external/chromium_org/build/linux/
dump_app_syms 26 INFILE="$3"
30 if [ ! -e "$OUTFILE" -o "$INFILE" -nt "$OUTFILE" ]; then
31 "$DUMPSYMS" -r "$INFILE" > "$OUTFILE"
35 strip "$INFILE"
  /external/libpcap/msdos/
bin2c.c 17 FILE *inFile;
25 if ((inFile = fopen(argv[1],"rb")) == NULL)
34 while ((ch = fgetc(inFile)) != EOF)
41 fclose (inFile);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_tool.py 49 infile = test_support.TESTFN
50 with open(infile, "w") as fp:
51 self.addCleanup(os.remove, infile)
53 return infile
56 infile = self._create_infile()
57 rc, out, err = assert_python_ok('-m', 'json.tool', infile)
62 infile = self._create_infile()
64 rc, out, err = assert_python_ok('-m', 'json.tool', infile, outfile)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_tool.py 49 infile = test_support.TESTFN
50 with open(infile, "w") as fp:
51 self.addCleanup(os.remove, infile)
53 return infile
56 infile = self._create_infile()
57 rc, out, err = assert_python_ok('-m', 'json.tool', infile)
62 infile = self._create_infile()
64 rc, out, err = assert_python_ok('-m', 'json.tool', infile, outfile)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
28 with infile:
30 obj = json.load(infile)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
28 with infile:
30 obj = json.load(infile)
  /external/chromium_org/third_party/simplejson/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
29 obj = json.load(infile,
  /external/chromium_org/third_party/libjpeg_turbo/
rdcolmap.c 79 read_gif_map (j_decompress_ptr cinfo, FILE * infile)
88 if ((header[i] = getc(infile)) == EOF)
104 R = getc(infile);
105 G = getc(infile);
106 B = getc(infile);
121 pbm_getc (FILE * infile)
127 ch = getc(infile);
130 ch = getc(infile);
138 read_pbm_integer (j_decompress_ptr cinfo, FILE * infile)
149 ch = pbm_getc(infile);
    [all...]
  /external/jpeg/
rdcolmap.c 79 read_gif_map (j_decompress_ptr cinfo, FILE * infile)
88 if ((header[i] = getc(infile)) == EOF)
104 R = getc(infile);
105 G = getc(infile);
106 B = getc(infile);
121 pbm_getc (FILE * infile)
127 ch = getc(infile);
130 ch = getc(infile);
138 read_pbm_integer (j_decompress_ptr cinfo, FILE * infile)
149 ch = pbm_getc(infile);
    [all...]
  /external/qemu/distrib/jpeg-6b/
rdcolmap.c 79 read_gif_map (j_decompress_ptr cinfo, FILE * infile)
88 if ((header[i] = getc(infile)) == EOF)
104 R = getc(infile);
105 G = getc(infile);
106 B = getc(infile);
121 pbm_getc (FILE * infile)
127 ch = getc(infile);
130 ch = getc(infile);
138 read_pbm_integer (j_decompress_ptr cinfo, FILE * infile)
149 ch = pbm_getc(infile);
    [all...]
  /frameworks/base/docs/html/tools/help/
hprof-conv.jd 11 <pre> hprof-conv &lt;infile&gt; &lt;outfile&gt;</pre>
14 You can use "-" for <code>&lt;infile&gt;</code> or <code>&lt;outfile&gt;</code>
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
applesingle.py 107 def decode(infile, outpath, resonly=False, verbose=False):
108 """decode(infile, outpath [, resonly=False, verbose=False])
112 outpath containing only the resource fork from infile.
114 with the data and resource forks from infile. On platforms
119 if not hasattr(infile, 'read'):
120 if isinstance(infile, Carbon.File.Alias):
121 infile = infile.ResolveAlias()[0]
124 if isinstance(infile, (Carbon.File.FSSpec, Carbon.File.FSRef)):
125 infile = infile.as_pathname(
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
RTPtimeshift.cc 33 FILE *inFile=fopen(argv[1],"rb");
34 if (!inFile)
52 EXPECT_TRUE(fgets(firstline, FIRSTLINELEN, inFile) != NULL);
55 fread(firstline, 1, kRtpDumpHeaderSize, inFile));
59 int packLen = packet.readFromFile(inFile);
91 packLen = packet.readFromFile(inFile);
95 fclose(inFile);
rtp_to_text.cc 67 FILE *inFile=fopen(input_filename.c_str(),"rb");
68 if (!inFile)
92 if (fgets(firstline, FIRSTLINELEN, inFile) == NULL)
99 if (fread(firstline, 4+4+4+2+2, 1, inFile) != 1)
105 while (packet->readFromFile(inFile) >= 0)
121 fclose(inFile);
  /external/lzma/CPP/7zip/UI/Common/
ArchiveOpenCallback.cpp 102 CInFileStreamVol *inFile = new CInFileStreamVol;
103 CMyComPtr<IInStream> inStreamTemp = inFile;
104 if (!inFile->Open(fullPath))
107 inFile->Name = name;
108 inFile->OpenCallbackImp = this;
109 inFile->OpenCallbackRef = this;
  /external/pcre/dist/
perltest.pl 49 open(INFILE, "<$ARGV[0]") || die "Failed to open $ARGV[0]\n";
50 $infile = "INFILE";
52 else { $infile = "STDIN"; }
68 printf " re> " if $infile eq "STDIN";
69 last if ! ($_ = <$infile>);
70 printf $outfile "$_" if $infile ne "STDIN";
77 printf " > " if $infile eq "STDIN";
78 last if ! ($_ = <$infile>);
79 printf $outfile "$_" if $infile ne "STDIN"
    [all...]
  /external/clang/include/clang/Frontend/
FrontendActions.h 30 StringRef InFile) override;
45 StringRef InFile) override;
51 StringRef InFile) override;
57 StringRef InFile) override;
63 StringRef InFile) override;
69 StringRef InFile) override;
75 StringRef InFile) override;
89 StringRef InFile,
102 StringRef InFile) override;
123 StringRef InFile,
    [all...]
  /frameworks/compile/libbcc/bcinfo/tools/
main.cpp 52 std::string inFile;
99 inFile = argv[optind];
101 int l = inFile.length();
102 if (l > 3 && inFile[l-3] == '.' && inFile[l-2] == 'b' && inFile[l-1] == 'c') {
103 outFile = std::string(inFile.begin(), inFile.end() - 3) + ".ll";
104 infoFile = std::string(inFile.begin(), inFile.end() - 3) + ".bcinfo"
    [all...]
  /external/chromium_org/native_client_sdk/src/tools/tests/
fix_deps_test.py 49 with open(self.tempfile) as infile:
50 contents = infile.read()
62 with open(self.tempfile) as infile:
63 contents = infile.read()
73 with open(self.tempfile) as infile:
74 contents = infile.read()
  /build/tools/zipalign/
README.txt 3 usage: zipalign [-f] [-v] <align> infile.zip outfile.zip
4 zipalign -c [-v] <align> infile.zip
10 infile.zip is an existing Zip archive
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
in_file_unittest.py 32 from in_file import InFile
45 in_file = InFile(lines, defaults, None)
68 in_file = InFile(lines, defaults, default_parameters=default_parameters)
79 in_file = InFile.load_from_files(in_files, None, None, None)
  /external/chromium_org/third_party/libvpx/source/libvpx/
ivfdec.h 21 int ivf_read_frame(FILE *infile, uint8_t **buffer,

Completed in 1129 milliseconds

1 2 3 4 5 6 7 8 91011>>