HomeSort by relevance Sort by last modified time
    Searched refs:write_file (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/chromium_org/tools/gyp/test/rules-rebuild/src/
make-sources.py 12 def write_file(filename, contents): function
15 write_file(c_file, open(in_file, 'rb').read())
17 write_file(h_file, '#define NAME "%s"\n' % in_file)
  /system/extras/tests/bionic/libc/common/
bench_stdio.c 61 void write_file(FILE* fp, int chunkSize) function
101 BENCH(write_file(fp,1));
102 BENCH(write_file(fp,2));
103 BENCH(write_file(fp,3));
104 BENCH(write_file(fp,4));
105 BENCH(write_file(fp,8));
106 BENCH(write_file(fp,16));
107 BENCH(write_file(fp,32));
108 BENCH(write_file(fp,64));
109 BENCH(write_file(fp,256))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_spawn.py 35 self.write_file(exe, '#!/bin/sh\nexit 1')
39 self.write_file(exe, 'exit 1')
47 self.write_file(exe, '#!/bin/sh\nexit 0')
51 self.write_file(exe, 'exit 0')
test_dep_util.py 24 self.write_file(new_file)
42 self.write_file(one)
43 self.write_file(two)
44 self.write_file(four)
60 self.write_file(one)
61 self.write_file(two)
62 self.write_file(three)
test_bdist_rpm.py 58 self.write_file((pkg_dir, 'setup.py'), SETUP_PY)
59 self.write_file((pkg_dir, 'foo.py'), '#')
60 self.write_file((pkg_dir, 'MANIFEST.in'), 'include foo.py')
61 self.write_file((pkg_dir, 'README'), '')
103 self.write_file((pkg_dir, 'setup.py'), SETUP_PY)
104 self.write_file((pkg_dir, 'foo.py'), '#')
105 self.write_file((pkg_dir, 'MANIFEST.in'), 'include foo.py')
106 self.write_file((pkg_dir, 'README'), '')
test_sdist.py 68 self.write_file((self.tmp_dir, 'README'), 'xxx')
69 self.write_file((self.tmp_dir, 'somecode', '__init__.py'), '#')
70 self.write_file((self.tmp_dir, 'setup.py'), SETUP_PY)
99 self.write_file((self.tmp_dir, 'somecode', '.svn', 'ok.py'), 'xxx')
102 self.write_file((self.tmp_dir, 'somecode', '.hg',
106 self.write_file((self.tmp_dir, 'somecode', '.git',
109 self.write_file((self.tmp_dir, 'somecode', '.nfs0001'), 'xxx')
205 self.write_file((self.tmp_dir, 'somecode', 'doc.txt'), '#')
206 self.write_file((self.tmp_dir, 'somecode', 'doc.dat'), '#')
211 self.write_file((data_dir, 'data.dt'), '#'
    [all...]
test_install_headers.py 21 self.write_file(header1)
22 self.write_file(header2)
test_file_util.py 6 from distutils.file_util import move_file, write_file, copy_file namespace
65 write_file(foo, lines)
72 write_file(foo, 'content')
test_install_data.py 25 self.write_file(one, 'xxx')
28 self.write_file(two, 'xxx')
61 self.write_file(three, 'xx')
test_bdist_dumb.py 52 self.write_file((pkg_dir, 'setup.py'), SETUP_PY)
53 self.write_file((pkg_dir, 'foo.py'), '#')
54 self.write_file((pkg_dir, 'MANIFEST.in'), 'include foo.py')
55 self.write_file((pkg_dir, 'README'), '')
test_upload.py 75 self.write_file(self.rc, PYPIRC)
86 self.write_file(self.rc, PYPIRC_NOPASSWORD)
104 self.write_file(path)
107 self.write_file(self.rc, PYPIRC_LONG_PASSWORD)
test_install_lib.py 41 self.write_file(f, '# python file')
61 self.write_file(f, '# python file')
78 self.write_file(f, '# python file')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_spawn.py 35 self.write_file(exe, '#!/bin/sh\nexit 1')
39 self.write_file(exe, 'exit 1')
47 self.write_file(exe, '#!/bin/sh\nexit 0')
51 self.write_file(exe, 'exit 0')
test_dep_util.py 24 self.write_file(new_file)
42 self.write_file(one)
43 self.write_file(two)
44 self.write_file(four)
60 self.write_file(one)
61 self.write_file(two)
62 self.write_file(three)
test_bdist_rpm.py 58 self.write_file((pkg_dir, 'setup.py'), SETUP_PY)
59 self.write_file((pkg_dir, 'foo.py'), '#')
60 self.write_file((pkg_dir, 'MANIFEST.in'), 'include foo.py')
61 self.write_file((pkg_dir, 'README'), '')
103 self.write_file((pkg_dir, 'setup.py'), SETUP_PY)
104 self.write_file((pkg_dir, 'foo.py'), '#')
105 self.write_file((pkg_dir, 'MANIFEST.in'), 'include foo.py')
106 self.write_file((pkg_dir, 'README'), '')
test_sdist.py 68 self.write_file((self.tmp_dir, 'README'), 'xxx')
69 self.write_file((self.tmp_dir, 'somecode', '__init__.py'), '#')
70 self.write_file((self.tmp_dir, 'setup.py'), SETUP_PY)
99 self.write_file((self.tmp_dir, 'somecode', '.svn', 'ok.py'), 'xxx')
102 self.write_file((self.tmp_dir, 'somecode', '.hg',
106 self.write_file((self.tmp_dir, 'somecode', '.git',
109 self.write_file((self.tmp_dir, 'somecode', '.nfs0001'), 'xxx')
205 self.write_file((self.tmp_dir, 'somecode', 'doc.txt'), '#')
206 self.write_file((self.tmp_dir, 'somecode', 'doc.dat'), '#')
211 self.write_file((data_dir, 'data.dt'), '#'
    [all...]
test_install_headers.py 21 self.write_file(header1)
22 self.write_file(header2)
test_file_util.py 6 from distutils.file_util import move_file, write_file, copy_file namespace
65 write_file(foo, lines)
72 write_file(foo, 'content')
test_install_data.py 25 self.write_file(one, 'xxx')
28 self.write_file(two, 'xxx')
61 self.write_file(three, 'xx')
test_bdist_dumb.py 52 self.write_file((pkg_dir, 'setup.py'), SETUP_PY)
53 self.write_file((pkg_dir, 'foo.py'), '#')
54 self.write_file((pkg_dir, 'MANIFEST.in'), 'include foo.py')
55 self.write_file((pkg_dir, 'README'), '')
test_upload.py 75 self.write_file(self.rc, PYPIRC)
86 self.write_file(self.rc, PYPIRC_NOPASSWORD)
104 self.write_file(path)
107 self.write_file(self.rc, PYPIRC_LONG_PASSWORD)
  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_process_launcher.h 38 base::PlatformFile write_file)> LaunchedCallback;
68 base::PlatformFile* write_file);
native_process_launcher.cc 83 base::PlatformFile write_file);
87 base::PlatformFile write_file);
201 base::PlatformFile write_file; local
203 command_line, &read_file, &write_file)) {
204 PostResult(callback, read_file, write_file);
214 base::PlatformFile write_file) {
219 if (write_file != base::kInvalidPlatformFileValue)
220 base::ClosePlatformFile(write_file);
224 callback.Run(result, read_file, write_file);
241 base::PlatformFile write_file) {
    [all...]
native_process_launcher_posix.cc 42 base::PlatformFile* write_file) {
76 *write_file = *write_pipe_write_fd.release();
  /external/antlr/antlr-3.4/runtime/Perl5/t/lib/ANTLR/Runtime/
Test.pm 28 sub write_file { subroutine
69 write_file($grammar_file, $grammar);
73 write_file($test_program_file, $test_program);

Completed in 389 milliseconds

1 2 3 4