HomeSort by relevance Sort by last modified time
    Searched full:infile (Results 151 - 175 of 710) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/python/cpython3/Tools/i18n/
msgfmt.py 109 infile = filename
111 infile = filename + '.po'
113 outfile = os.path.splitext(infile)[0] + '.mo'
116 lines = open(infile, 'rb').readlines()
161 print('msgid_plural not preceded by msgid on %s:%d' % (infile, lno),
172 print('plural without msgid_plural on %s:%d' % (infile, lno),
180 print('indexed msgstr required for plural on %s:%d' % (infile, lno),
194 print('Syntax error on %s:%d' % (infile, lno), \
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/ARCMigrate/
ARCMTActions.h 41 StringRef InFile) override;
70 StringRef InFile) override;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/ARCMigrate/
ARCMTActions.h 41 StringRef InFile) override;
70 StringRef InFile) override;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/ARCMigrate/
ARCMTActions.h 41 StringRef InFile) override;
70 StringRef InFile) override;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/ARCMigrate/
ARCMTActions.h 41 StringRef InFile) override;
70 StringRef InFile) override;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/ARCMigrate/
ARCMTActions.h 41 StringRef InFile) override;
70 StringRef InFile) override;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/ARCMigrate/
ARCMTActions.h 41 StringRef InFile) override;
70 StringRef InFile) override;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/ARCMigrate/
ARCMTActions.h 41 StringRef InFile) override;
70 StringRef InFile) override;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/ARCMigrate/
ARCMTActions.h 41 StringRef InFile) override;
70 StringRef InFile) override;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/ARCMigrate/
ARCMTActions.h 41 StringRef InFile) override;
70 StringRef InFile) override;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/ARCMigrate/
ARCMTActions.h 41 StringRef InFile) override;
70 StringRef InFile) override;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/ARCMigrate/
ARCMTActions.h 41 StringRef InFile) override;
70 StringRef InFile) override;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/ARCMigrate/
ARCMTActions.h 41 StringRef InFile) override;
70 StringRef InFile) override;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/ARCMigrate/
ARCMTActions.h 41 StringRef InFile) override;
70 StringRef InFile) override;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/ARCMigrate/
ARCMTActions.h 41 StringRef InFile) override;
70 StringRef InFile) override;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/EfiRom/
EfiRom.h 243 FILE_LIST *InFile,
257 InFile - structure contains information on the PE32 file to process
273 FILE_LIST *InFile,
285 InFile - structure contains information on the binary file to process
298 FILE_LIST *InFile
308 InFile - the file name of an existing option ROM image
  /external/syslinux/gpxe/src/util/
efirom.c 185 "infile outfile\n", program_name );
247 FILE *infile; local
260 infile = fopen ( infile_name, "r" );
261 if ( ! infile ) {
274 make_efi_rom ( infile, outfile, &opts );
277 fclose ( infile );
  /external/python/cpython3/Lib/
shlex.py 21 def __init__(self, instream=None, infile=None, posix=False,
27 self.infile = infile
30 self.infile = None
78 self.filestack.appendleft((self.infile, self.instream, self.lineno))
79 self.infile = newfile
84 print('shlex: pushing to file %s' % (self.infile,))
91 (self.infile, self.instream, self.lineno) = self.filestack.popleft()
279 if isinstance(self.infile, str) and not os.path.isabs(newfile):
280 newfile = os.path.join(os.path.dirname(self.infile), newfile
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
InflaterInputStreamTest.java 68 InputStream infile = Support_Resources
71 InflaterInputStream inflatIP = new InflaterInputStream(infile);
88 InputStream infile = Support_Resources.getStream("hyts_construOD.bin"); local
90 InflaterInputStream inflatIP = new InflaterInputStream(infile,
104 InputStream infile = Support_Resources.getStream("hyts_construODI.bin"); local
106 InflaterInputStream inflatIP = new InflaterInputStream(infile,
122 try (InputStream infile = Support_Resources.getStream("hyts_construODI.bin")) {
125 new InflaterInputStream(infile, null, 1);
139 new InflaterInputStream(infile, inflate, -1);
179 InputStream infile = Support_Resource local
204 InputStream infile = Support_Resources.getStream("hyts_construOD.bin"); local
403 InputStream infile = Support_Resources.getStream("hyts_construOD.bin"); local
    [all...]
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/
shell.py 175 def _filepipespawn(infile, outfile, argv, env):
185 infile = pickle.loads(%(infile)s)
190 if infile is not None:
191 infile = open(infile, 'rb')
192 os.dup2(infile.fileno(), 0)
193 infile.close()
203 'infile': repr(_pickle.dumps(_os.path.abspath(infile))),
    [all...]
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py3/
shell.py 175 def _filepipespawn(infile, outfile, argv, env):
185 infile = pickle.loads(%(infile)s)
190 if infile is not None:
191 infile = open(infile, 'rb')
192 os.dup2(infile.fileno(), 0)
193 infile.close()
203 'infile': repr(_pickle.dumps(_os.path.abspath(infile))),
    [all...]
  /external/pcre/dist2/
perltest.sh 89 open(INFILE, "<$ARGV[0]") || die "Failed to open $ARGV[0]\n";
90 $infile = "INFILE";
95 open(INFILE, "</dev/tty") || die "Failed to open /dev/tty\n";
96 $infile = "INFILE";
115 last if ! ($_ = <$infile>);
124 last if ! ($_ = <$infile>);
179 last if ! ($_ = <$infile>);
205 last NEXT_RE if ! ($_ = <$infile>);
    [all...]
  /external/boringssl/src/fipstools/
run_cavp.go 36 // inFile is the base of the filename without an extension, i.e.
38 inFile string
450 reqPath := filepath.Join(suite.getDirectory(), "req", test.inFile+".req")
454 reqPathOnDevice = path.Join(androidTmpPath, test.inFile+".req")
467 outPath := filepath.Join(respDir, test.inFile+".rsp")
470 return fmt.Errorf("cannot open output file for %q %q: %s", suite.getDirectory(), test.inFile, err)
481 return fmt.Errorf("cannot run command for %q %q (%s): %s", suite.getDirectory(), test.inFile, cmdLine, err)
514 respPath := filepath.Join(suite.getDirectory(), "resp", test.inFile+".rsp")
517 return fmt.Errorf("cannot read output of %q %q: %s", suite.getDirectory(), test.inFile, err)
521 faxPath := filepath.Join(suite.getDirectory(), "fax", test.inFile+".fax"
    [all...]
  /external/ImageMagick/PerlMagick/t/
subroutines.pl 170 my( $infile, $ref_8, $ref_16, $ref_32 ) = @_;
206 print( " testing reading from file \"", $infile, "\" ...\n");
209 $status=$image->ReadImage("$infile");
211 print "ReadImage $infile: $status\n";
215 print "ReadImage $infile: $status\n";
223 print "Image: $infile, signatures do not match.\n";
237 if (!($infile =~ /\.bz2$/) && !($infile =~ /\.gz$/) && !($infile =~ /\.Z$/))
241 if( open( FILE, "< $infile"))
    [all...]
  /external/clang/lib/Frontend/Rewrite/
FrontendActions.cpp 35 HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
36 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile))
45 FixItAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
154 RewriteObjCAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
155 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile, "cpp")) {
158 InFile, OS, CI.getDiagnostics(), CI.getLangOpts(),
161 return CreateObjCRewriter(InFile, OS,

Completed in 1126 milliseconds

1 2 3 4 5 67 8 91011>>