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

1 2 3 4

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
generate_glslang_lexer.sh 10 output_file=$script_dir/glslang_lex.cpp
11 flex --noline --nounistd --outfile=$output_file $input_file
  /system/core/libsparse/
output_file.h 22 struct output_file;
24 struct output_file *output_file_open_fd(int fd, unsigned int block_size, int64_t len,
26 struct output_file *output_file_open_callback(int (*write)(void *, const void *, int),
29 int write_data_chunk(struct output_file *out, unsigned int len, void *data);
30 int write_fill_chunk(struct output_file *out, unsigned int len,
32 int write_file_chunk(struct output_file *out, unsigned int len,
34 int write_fd_chunk(struct output_file *out, unsigned int len,
36 int write_skip_chunk(struct output_file *out, int64_t len);
37 void output_file_close(struct output_file *out);
sparse_file.h 28 struct output_file *out;
output_file.c 31 #include "output_file.h"
70 int (*open)(struct output_file *, int fd);
71 int (*skip)(struct output_file *, int64_t);
72 int (*pad)(struct output_file *, int64_t);
73 int (*write)(struct output_file *, void *, int);
74 void (*close)(struct output_file *);
78 int (*write_data_chunk)(struct output_file *out, unsigned int len,
80 int (*write_fill_chunk)(struct output_file *out, unsigned int len,
82 int (*write_skip_chunk)(struct output_file *out, int64_t len);
83 int (*write_end_chunk)(struct output_file *out)
86 struct output_file { struct
    [all...]
  /build/tools/
generate-notice-files.py 108 output_file = open(output_filename, "wb")
110 print >> output_file, "<html><head>"
111 print >> output_file, HTML_OUTPUT_CSS
112 print >> output_file, '</head><body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">'
115 print >> output_file, '<div class="toc">'
116 print >> output_file, "<ul>"
124 print >> output_file, '<li><a href="#id%d">%s</a></li>' % (id_table.get(filename), stripped_filename)
126 print >> output_file, "</ul>"
127 print >> output_file, "</div><!-- table of contents -->"
129 print >>output_file, '<table cellpadding="0" cellspacing="0" border="0">
    [all...]
  /external/webkit/Source/WebCore/html/parser/
create-html-entity-table 61 # Python 3, change to: print("Usage: %s -o OUTPUT_FILE INPUT_FILE" % program_name, file=sys.stderr)
62 sys.stderr.write("Usage: %s -o OUTPUT_FILE INPUT_FILE\n" % program_name)
75 output_file = open(output_path, "w") variable
77 output_file.write("""/*
114 output_file.write("const UChar %sEntityName[] = %s;" % (
118 output_file.write("""
127 output_file.write(' { %sEntityName, %s, %s },' % (
133 output_file.write("""};
136 output_file.write("const HTMLEntityTableEntry* uppercaseOffset[] = {")
138 output_file.write(offset_table_entry(index[letter])
    [all...]
  /external/protobuf/gtest/test/
gtest-options_test.cc 94 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
96 _strcmpi(output_file.c_str(),
99 _strcmpi(output_file.c_str(),
102 _strcmpi(output_file.c_str(),
105 << " output_file = " << output_file;
108 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile();
114 EXPECT_TRUE(output_file ==
117 output_file ==
120 output_file =
190 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
240 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
    [all...]
  /frameworks/compile/libbcc/tests/debuginfo/
test_bcc_debuginfo.pl 36 my $output_file = "$output_dir/$input_filename.gdb.output";
72 system("$debugger $debugger_options > $output_file 2>&1") ;
75 print("$debugger $debugger_options > $output_file 2>&1\n") ;
80 system("$filecheck_tool", "-input-file", "$output_file", "$testcase_file");
83 print("$debugger $debugger_options > $output_file 2>&1\n") ;
85 print "$filecheck_tool -input-file $output_file $testcase_file\n";
  /external/compiler-rt/lib/profile/
GCDAProfiling.c 48 static FILE *output_file = NULL; variable
64 fwrite(&i, 4, 1, output_file);
81 fwrite(s, strlen(s), 1, output_file);
82 fwrite("\0\0\0\0", 4 - (strlen(s) % 4), 1, output_file);
88 if (fread(&tmp, 1, 4, output_file) != 4)
97 if (fread(&tmp, 1, 8, output_file) != 8)
168 output_file = fopen(filename, "r+b");
170 if (!output_file) {
172 output_file = fopen(filename, "w+b");
173 if (!output_file) {
    [all...]
  /external/webkit/Source/WebCore/
make-export-file-generator 27 output_file = ARGV[1]
50 File.open(output_file, "w") do |output|
57 STDERR.puts "Wrote output to #{output_file}"
  /external/llvm/utils/
test_debuginfo.pl 24 my $output_file = "$output_dir/$input_filename.gdb.output";
52 system("$my_debugger $debugger_options $debugger_script_file $executable_file > $output_file 2>&1");
55 system("FileCheck", "-input-file", "$output_file", "$testcase_file");
  /frameworks/compile/libbcc/lib/Renderscript/
RSCompilerDriver.cpp 102 InputFile *output_file = new (std::nothrow) InputFile(pOutputPath); local
104 if ((output_file == NULL) || output_file->hasError()) {
106 // output_file->getErrorMessage().c_str());
107 delete output_file;
112 // Acquire the read lock on output_file for reading its RS info file.
114 android::String8 info_path = RSInfo::GetPath(*output_file);
116 if (!output_file->lock()) {
119 output_file->getErrorMessage().c_str());
120 delete output_file;
243 OutputFile *output_file = new (std::nothrow) OutputFile(pOutputPath, flags); local
    [all...]
  /external/webkit/Source/WebCore/inspector/
generate-inspector-idl 35 sys.stderr.write("Usage: %s -o OUTPUT_FILE INPUT_FILE\n" % program_name)
47 output_file = open(output_path, "w") variable
48 output_file.write("""/*
115 output_file.write("\n#if defined(ENABLE_%s) && ENABLE_%s" % (macro_traits[domain_name], macro_traits[domain_name]))
116 output_file.write("\n interface [Conditional=INSPECTOR] %s {" % domain_name)
136 output_file.write("\n void %s(%s);" % (command["name"], ", ".join(params)))
148 output_file.write("\n [event] void %s(%s);" % (event["name"], ", ".join(params)))
150 output_file.write("\n };")
152 output_file.write("\n#endif // ENABLE_%s" % macro_traits[domain["domain"]])
153 output_file.write("\n}\n"
    [all...]
  /external/jpeg/
wrgif.c 86 if (JFWRITE(dinfo->pub.output_file, dinfo->packetbuf, dinfo->bytesinpkt)
203 putc(w & 0xFF, dinfo->pub.output_file);
204 putc((w >> 8) & 0xFF, dinfo->pub.output_file);
212 putc(val, dinfo->pub.output_file);
213 putc(val, dinfo->pub.output_file);
214 putc(val, dinfo->pub.output_file);
242 putc('G', dinfo->pub.output_file);
243 putc('I', dinfo->pub.output_file);
244 putc('F', dinfo->pub.output_file);
245 putc('8', dinfo->pub.output_file);
    [all...]
  /external/qemu/distrib/jpeg-6b/
wrgif.c 86 if (JFWRITE(dinfo->pub.output_file, dinfo->packetbuf, dinfo->bytesinpkt)
203 putc(w & 0xFF, dinfo->pub.output_file);
204 putc((w >> 8) & 0xFF, dinfo->pub.output_file);
212 putc(val, dinfo->pub.output_file);
213 putc(val, dinfo->pub.output_file);
214 putc(val, dinfo->pub.output_file);
242 putc('G', dinfo->pub.output_file);
243 putc('I', dinfo->pub.output_file);
244 putc('F', dinfo->pub.output_file);
245 putc('8', dinfo->pub.output_file);
    [all...]
  /external/chromium/testing/gtest/scripts/
fuse_gtest_files.py 117 output_file = os.path.join(output_dir, relative_path)
118 if os.path.exists(output_file):
131 parent_directory = os.path.dirname(output_file)
149 output_file = file(os.path.join(output_dir, GTEST_H_OUTPUT), 'w')
169 output_file.write(line)
172 output_file.close()
175 def FuseGTestAllCcToFile(gtest_root, output_file):
176 """Scans folder gtest_root to generate gtest/gtest-all.cc in output_file."""
206 output_file.write('#include "%s"\n' % (GTEST_H_OUTPUT,))
213 output_file.write(line
    [all...]
  /external/gtest/scripts/
fuse_gtest_files.py 117 output_file = os.path.join(output_dir, relative_path)
118 if os.path.exists(output_file):
131 parent_directory = os.path.dirname(output_file)
149 output_file = file(os.path.join(output_dir, GTEST_H_OUTPUT), 'w')
169 output_file.write(line)
172 output_file.close()
175 def FuseGTestAllCcToFile(gtest_root, output_file):
176 """Scans folder gtest_root to generate gtest/gtest-all.cc in output_file."""
206 output_file.write('#include "%s"\n' % (GTEST_H_OUTPUT,))
213 output_file.write(line
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/scripts/
fuse_gtest_files.py 117 output_file = os.path.join(output_dir, relative_path)
118 if os.path.exists(output_file):
131 parent_directory = os.path.dirname(output_file)
149 output_file = file(os.path.join(output_dir, GTEST_H_OUTPUT), 'w')
169 output_file.write(line)
172 output_file.close()
175 def FuseGTestAllCcToFile(gtest_root, output_file):
176 """Scans folder gtest_root to generate gtest/gtest-all.cc in output_file."""
206 output_file.write('#include "%s"\n' % (GTEST_H_OUTPUT,))
213 output_file.write(line
    [all...]
  /external/protobuf/gtest/scripts/
fuse_gtest_files.py 117 output_file = os.path.join(output_dir, relative_path)
118 if os.path.exists(output_file):
131 parent_directory = os.path.dirname(output_file)
149 output_file = file(os.path.join(output_dir, GTEST_H_OUTPUT), 'w')
169 output_file.write(line)
172 output_file.close()
175 def FuseGTestAllCcToFile(gtest_root, output_file):
176 """Scans folder gtest_root to generate gtest/gtest-all.cc in output_file."""
206 output_file.write('#include <%s>\n' % (GTEST_H_OUTPUT,))
213 output_file.write(line
    [all...]
  /external/chromium/testing/gmock/scripts/
fuse_gmock_files.py 122 output_file = file(os.path.join(output_dir, GMOCK_H_OUTPUT), 'w')
150 output_file.write('#include "%s"\n' % (gtest.GTEST_H_OUTPUT,))
153 output_file.write(line)
156 output_file.close()
159 def FuseGMockAllCcToFile(gmock_root, output_file):
160 """Scans folder gmock_root to fuse gmock-all.cc into output_file."""
184 output_file.write('#include "%s"\n' % (GMOCK_H_OUTPUT,))
199 output_file.write(line)
207 output_file = file(os.path.join(output_dir, GMOCK_GTEST_ALL_CC_OUTPUT), 'w')
209 gtest.FuseGTestAllCcToFile(GetGTestRootDir(gmock_root), output_file)
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/net/
testoutputset.py 75 for output_file in self.files():
76 name_match = name_matcher.search(output_file.name())
77 actual_match = actual_matcher.search(output_file.name())
78 expected_match = expected_matcher.search(output_file.name())
81 if output_file.name().endswith('.checksum'):
82 checksum_files.append(output_file)
83 elif output_file.name().endswith('.txt'):
84 text_files.append(output_file)
85 elif output_file.name().endswith('.png'):
86 image_files.append(output_file)
    [all...]
  /external/eigen/bench/btl/data/
regularize.cxx 77 ofstream output_file (filename.c_str(),ios::out) ;
83 output_file << tab_sizes[i] << " " << tab_mflops[i] << endl ;
88 output_file << endl ;
98 output_file << tab_sizes[i] << " " << tab_mflops[i] << endl ;
103 output_file.close();
  /external/webkit/Tools/Scripts/
run-bindings-tests 55 for output_file in os.listdir(work_directory):
56 print 'Detecting changes in %s...' % output_file
59 os.path.join(reference_directory, output_file),
60 os.path.join(work_directory, output_file)]
62 print 'Detected changes in %s (see above)' % output_file
  /external/chromium/testing/gtest/test/
gtest-options_test.cc 97 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
99 EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str());
101 EXPECT_EQ(expected_output_file, output_file.c_str());
171 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
173 EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str());
175 EXPECT_EQ(expected_output_file, output_file.c_str());
201 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
204 EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str());
206 EXPECT_EQ(expected_output_file, output_file.c_str());
  /external/gtest/test/
gtest-options_test.cc 97 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
99 EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str());
101 EXPECT_EQ(expected_output_file, output_file.c_str());
171 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
173 EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str());
175 EXPECT_EQ(expected_output_file, output_file.c_str());
201 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
204 EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str());
206 EXPECT_EQ(expected_output_file, output_file.c_str());

Completed in 2928 milliseconds

1 2 3 4