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

1 2 3 4 5 6 7

  /external/bison/src/
graphviz.h 29 * \param fout output stream.
31 void start_graph (FILE *fout);
37 * \param fout output stream.
39 void output_node (int id, char const *label, FILE *fout);
47 * \param fout output stream.
50 char const *style, FILE *fout);
55 * \param fout output stream.
57 void output_red (state const *s, reductions const *reds, FILE *fout);
61 * \param fout output stream.
63 void finish_graph (FILE *fout);
    [all...]
graphviz.c 42 start_graph (FILE *fout)
44 fprintf (fout,
52 fprintf (fout,
56 fprintf (fout,
63 output_node (int id, char const *label, FILE *fout)
65 fprintf (fout, " %d [label=\"%s\"]\n", id, label);
70 char const *style, FILE *fout)
72 fprintf (fout, " %d -> %d [style=%s", source, destination, style);
74 fprintf (fout, " label=%s", quote (label));
75 fputs ("]\n", fout);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
os_misc.c 56 static FILE *fout = NULL; local
58 if (!fout) {
62 fout = fopen(filename, "w");
63 if (!fout)
64 fout = stderr;
71 fputs(message, fout);
72 fflush(fout);
74 else if (fout != stderr) {
75 fputs(message, fout);
76 fflush(fout);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/os/
os_misc.c 56 static FILE *fout = NULL; local
58 if (!fout) {
62 fout = fopen(filename, "w");
63 if (!fout)
64 fout = stderr;
71 fputs(message, fout);
72 fflush(fout);
74 else if (fout != stderr) {
75 fputs(message, fout);
76 fflush(fout);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_aifc.py 12 self.f = self.fout = None
18 if self.fout is not None:
20 self.fout.close()
61 fout = self.fout = aifc.open(TESTFN, 'wb')
62 fout.aifc()
63 fout.setparams(f.getparams())
65 fout.writeframes(f.readframes(1))
66 fout.close()
67 fout = self.fout = aifc.open(TESTFN, 'rb'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_aifc.py 12 self.f = self.fout = None
18 if self.fout is not None:
20 self.fout.close()
61 fout = self.fout = aifc.open(TESTFN, 'wb')
62 fout.aifc()
63 fout.setparams(f.getparams())
65 fout.writeframes(f.readframes(1))
66 fout.close()
67 fout = self.fout = aifc.open(TESTFN, 'rb'
    [all...]
  /external/lldb/test/pexpect-2.4/examples/
chess3.py 27 fout = open ('log','a')
31 fout.write ('(r,c):(%d,%d)\n' %(self.term.cur_r, self.term.cur_c))
32 fout.flush()
34 fout.close()
40 fout = open ('log','a')
44 fout.write ('(r,c):(%d,%d)\n' %(self.term.cur_r, self.term.cur_c))
45 fout.flush()
88 fout = open ('log','a') variable
89 fout.write ('Computer:%s%s%s%s\n' %(c1,c2,c3,c4))
90 fout.close(
97 fout = open ('log','a') variable
    [all...]
chess2.py 30 fout = open ('log','a')
38 fout.write ('(r,c):(%d,%d)\n' %(self.term.cur_r, self.term.cur_c))
39 fout.flush()
44 fout.close()
47 fout.close()
56 fout = open ('log','a')
60 fout.write ('(r,c):(%d,%d)\n' %(self.term.cur_r, self.term.cur_c))
61 fout.flush()
105 fout = open ('moves.log', 'a')
106 fout.write (s + '\n'
    [all...]
script.py 56 fout = file (script_filename, "ab")
58 fout = file (script_filename, "wb")
65 fout.write ('# %4d%02d%02d.%02d%02d%02d \n' % time.localtime()[:-3])
71 p.logfile = fout
78 fout.close()
  /external/srec/tools/parseStringTest/
parseStringTest.c 50 ESR_ReturnCode process_single_key_line(SR_Grammar* grammar, PFile* fin, PFile* fout);
51 ESR_ReturnCode process_multi_key_line(SR_Grammar* grammar, const LCHAR* rootrule, PFile* fin, PFile* fout);
79 void display_results(SR_SemanticResult *result, PFile* fout)
94 pfprintf(fout, "{%s : %s}\n", keys[i], value);
96 pfprintf(fout, "Error: %s\n", ESR_rc2str(rc));
98 pfprintf(fout, "--Done--\n");
101 pfprintf(fout, "Error: %s\n", ESR_rc2str(rc));
104 ESR_ReturnCode Parse(SR_Grammar* grammar, LCHAR* trans, PFile* fout, Opts* opts)
124 Parse(grammar, trans, fout, &myopts);
183 pfprintf(fout, "error (%s)\n\n", trans)
283 PFile *fin = NULL, *fout = NULL; local
    [all...]
  /external/speex/libspeex/
kiss_fft.h 82 * fout will be F[0] , F[1] , ... ,F[nfft-1]
86 void kiss_fft(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout);
91 void kiss_fft_stride(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout,int fin_stride);
  /external/srec/tools/dictTest/
dictTest.c 42 void doGetProns(SR_Vocabulary *vocab, LCHAR* phrase, size_t len, FILE* fout)
51 LFPRINTF(fout,"ERROR: %s\n", ESR_rc2str(rc));
58 LFPRINTF(fout,"%s : %s\n", phrase, pron);
64 void doInputTestPhonemes(SR_Vocabulary *vocab, PFile* fin, FILE* fout)
84 LFPRINTF(fout, "ERROR: INVALID FORMAT for input line\n");
96 LFPRINTF(fout,"ERROR: %s\n", ESR_rc2str(rc));
99 LFPRINTF(fout,"%s|%s|%s|", phrase, expectedPhoneme, phoneme);
102 LFPRINTF(fout,"PASSED\n");
104 LFPRINTF(fout,"FAILED\n");
125 FILE* fout = stdout local
    [all...]
  /external/chromium_org/third_party/opus/src/src/
repacketizer_demo.c 61 FILE *fin, *fout; local
105 fout = fopen(argv[argc-1], "w");
106 if(fout==NULL)
133 fclose(fout);
164 if(fwrite(int_field, 1, 4, fout)!=4){
169 if (fwrite(int_field, 1, 4, fout)!=4) {
173 if (fwrite(output_packet, 1, err, fout)!=(unsigned)err) {
189 if (fwrite(int_field, 1, 4, fout)!=4) {
197 if (fwrite(int_field, 1, 4, fout)!=4) {
201 if (fwrite(output_packet, 1, err, fout)!=(unsigned)err)
    [all...]
  /external/libopus/src/
repacketizer_demo.c 61 FILE *fin, *fout; local
105 fout = fopen(argv[argc-1], "w");
106 if(fout==NULL)
133 fclose(fout);
164 if(fwrite(int_field, 1, 4, fout)!=4){
169 if (fwrite(int_field, 1, 4, fout)!=4) {
173 if (fwrite(output_packet, 1, err, fout)!=(unsigned)err) {
189 if (fwrite(int_field, 1, 4, fout)!=4) {
197 if (fwrite(int_field, 1, 4, fout)!=4) {
201 if (fwrite(output_packet, 1, err, fout)!=(unsigned)err)
    [all...]
  /external/jsoncpp/src/jsontestrunner/
main.cpp 63 printValueTree( FILE *fout, Json::Value &value, const std::string &path = "." )
68 fprintf( fout, "%s=null\n", path.c_str() );
71 fprintf( fout, "%s=%s\n", path.c_str(), Json::valueToString( value.asLargestInt() ).c_str() );
74 fprintf( fout, "%s=%s\n", path.c_str(), Json::valueToString( value.asLargestUInt() ).c_str() );
77 fprintf( fout, "%s=%s\n", path.c_str(), normalizeFloatingPointStr(value.asDouble()).c_str() );
80 fprintf( fout, "%s=\"%s\"\n", path.c_str(), value.asString().c_str() );
83 fprintf( fout, "%s=%s\n", path.c_str(), value.asBool() ? "true" : "false" );
87 fprintf( fout, "%s=[]\n", path.c_str() );
93 printValueTree( fout, value[index], path + buffer );
99 fprintf( fout, "%s={}\n", path.c_str() )
160 FILE *fout = fopen( rewritePath.c_str(), "wt" ); local
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
FileAccessPermissionTest.java 159 FileOutputStream fout = null; local
163 fout = new FileOutputStream(file);
164 fout.write(data);
165 fout.flush();
166 fout.close();
167 fout = null;
179 if (fout != null) {
181 fout.close();
  /external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
zcgzip.cc 54 FileOutputStream fout(STDOUT_FILENO);
55 GzipOutputStream out(&fout);
  /external/protobuf/src/google/protobuf/testing/
zcgzip.cc 54 FileOutputStream fout(STDOUT_FILENO);
55 GzipOutputStream out(&fout);
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
vignette.rsh 54 float4 fout;
55 fout.rgb = fin.rgb * lumen;
56 fout.w = fin.w;
57 return convert_uchar4(fout);
vignette_approx.rsh 54 float4 fout;
55 fout.rgb = fin.rgb * lumen;
56 fout.w = fin.w;
57 return convert_uchar4(fout);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
vignette.rsh 54 float4 fout;
55 fout.rgb = fin.rgb * lumen;
56 fout.w = fin.w;
57 return convert_uchar4(fout);
vignette_approx.rsh 54 float4 fout;
55 fout.rgb = fin.rgb * lumen;
56 fout.w = fin.w;
57 return convert_uchar4(fout);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
vignette.rsh 54 float4 fout;
55 fout.rgb = fin.rgb * lumen;
56 fout.w = fin.w;
57 return convert_uchar4(fout);
vignette_approx.rsh 54 float4 fout;
55 fout.rgb = fin.rgb * lumen;
56 fout.w = fin.w;
57 return convert_uchar4(fout);
  /external/chromium_org/third_party/opus/src/doc/
trivial_example.c 53 FILE *fout; local
104 fout = fopen(outFile, "w");
105 if (fout==NULL)
152 fwrite(pcm_bytes, sizeof(short), frame_size*CHANNELS, fout);
158 fclose(fout);

Completed in 874 milliseconds

1 2 3 4 5 6 7