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

1 2 3 4

  /cts/tests/tests/renderscript/assets/
blas_gen.py 98 def writeFloatMatrix(a, name, skip, fo):
99 fo.write(name + '\n');
102 fo.write(str(a[i,j]) + ", ");
104 fo.write("0.0, ");
105 fo.write("\n\n");
109 def writeDoubleMatrix(a, name, skip, fo):
110 writeFloatMatrix(a, name, skip, fo);
114 def writeFloatComplexMatrix(a, name, skip, fo):
115 fo.write(name + '\n');
118 fo.write(str(real(a[i,j])) + ", ")
    [all...]
  /external/eigen/scripts/
relicense.py 58 fo = file(filename)
59 text = fo.read()
60 fo.close()
64 fo = file(filename, "w")
65 fo.write(text)
66 fo.close()
  /external/blktrace/btt/
bno_plot.py 99 fo = open(t, 'w') variable
102 print >>fo, fld[0], fld[1], int(fld[2])-int(fld[1])
103 fo.close()
109 fo = open('%s/plot.cmds' % tmpdir, 'w') variable
110 print >>fo, cmds
111 if len(bnos) > 10 or keys_below: print >>fo, 'set key below'
112 print >>fo, plot_cmd
113 fo.close()
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/action/
ShareMockupAction.java 57 FileOutputStream fo = null; local
60 fo = new FileOutputStream(f);
61 fo.write(bytes.toByteArray());
68 if (fo != null)
69 try { fo.close(); } catch (Exception e) { }
  /external/bzip2/
xmlproc.sh 44 xsl_fo=bz-fo.xsl
50 fofile="${basename}.fo"
93 cleanup $OUT $xmlfmtfile *.aux *.fo *.log *.out
103 cleanup $OUT $xmlfmtfile $pdffile *.aux *.fo *.log *.out
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/
p8.cpp 46 void fo(Outer);
59 fo(o);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_shlex.py 68 "foo\ x\x\\"\'"fo'obar"|"foo\ x\x\\"|\|'"fo'|obar"|
69 "foo\ x\x\\"\'"fo'obar" 'don'\''t'|"foo\ x\x\\"|\|'"fo'|obar"|'don'|\|''|t'|
131 "foo\ x\x\\"\'"fo'obar"|foo\ x\x\'fo'obar|
132 "foo\ x\x\\"\'"fo'obar" 'don'\''t'|foo\ x\x\'fo'obar|don't|
133 "foo\ x\x\\"\'"fo'obar" 'don'\''t' \\|foo\ x\x\'fo'obar|don't|\
    [all...]
test_deque.py 70 fo = open(test_support.TESTFN, "wb")
72 print >> fo, d,
73 fo.close()
74 fo = open(test_support.TESTFN, "rb")
75 self.assertEqual(fo.read(), repr(d))
77 fo.close()
82 fo = open(test_support.TESTFN, "wb")
84 print >> fo, d,
85 fo.close()
86 fo = open(test_support.TESTFN, "rb"
    [all...]
test_bool.py 23 fo = open(test_support.TESTFN, "wb")
24 print >> fo, False, True
25 fo.close()
26 fo = open(test_support.TESTFN, "rb")
27 self.assertEqual(fo.read(), 'False True\n')
29 fo.close()
test_complex.py 480 fo = None
482 fo = open(test_support.TESTFN, "wb")
483 print >>fo, a, b
484 fo.close()
485 fo = open(test_support.TESTFN, "rb")
486 self.assertEqual(fo.read(), "%s %s\n" % (a, b))
488 if (fo is not None) and (not fo.closed):
489 fo.close()
test_set.py 302 fo = open(test_support.TESTFN, "wb")
304 print >> fo, s,
305 fo.close()
306 fo = open(test_support.TESTFN, "rb")
307 self.assertEqual(fo.read(), repr(s))
309 fo.close()
702 fo = open(test_support.TESTFN, "wb")
704 print >> fo, self.set,
705 fo.close()
706 fo = open(test_support.TESTFN, "rb"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_shlex.py 68 "foo\ x\x\\"\'"fo'obar"|"foo\ x\x\\"|\|'"fo'|obar"|
69 "foo\ x\x\\"\'"fo'obar" 'don'\''t'|"foo\ x\x\\"|\|'"fo'|obar"|'don'|\|''|t'|
131 "foo\ x\x\\"\'"fo'obar"|foo\ x\x\'fo'obar|
132 "foo\ x\x\\"\'"fo'obar" 'don'\''t'|foo\ x\x\'fo'obar|don't|
133 "foo\ x\x\\"\'"fo'obar" 'don'\''t' \\|foo\ x\x\'fo'obar|don't|\
    [all...]
test_deque.py 70 fo = open(test_support.TESTFN, "wb")
72 print >> fo, d,
73 fo.close()
74 fo = open(test_support.TESTFN, "rb")
75 self.assertEqual(fo.read(), repr(d))
77 fo.close()
82 fo = open(test_support.TESTFN, "wb")
84 print >> fo, d,
85 fo.close()
86 fo = open(test_support.TESTFN, "rb"
    [all...]
test_bool.py 23 fo = open(test_support.TESTFN, "wb")
24 print >> fo, False, True
25 fo.close()
26 fo = open(test_support.TESTFN, "rb")
27 self.assertEqual(fo.read(), 'False True\n')
29 fo.close()
test_complex.py 480 fo = None
482 fo = open(test_support.TESTFN, "wb")
483 print >>fo, a, b
484 fo.close()
485 fo = open(test_support.TESTFN, "rb")
486 self.assertEqual(fo.read(), "%s %s\n" % (a, b))
488 if (fo is not None) and (not fo.closed):
489 fo.close()
test_set.py 302 fo = open(test_support.TESTFN, "wb")
304 print >> fo, s,
305 fo.close()
306 fo = open(test_support.TESTFN, "rb")
307 self.assertEqual(fo.read(), repr(s))
309 fo.close()
702 fo = open(test_support.TESTFN, "wb")
704 print >> fo, self.set,
705 fo.close()
706 fo = open(test_support.TESTFN, "rb"
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerStressTest.java 172 FileOutputStream fo = null; local
174 fo = new FileOutputStream(outFile);
176 fo.write(buffer);
183 if (fo != null) {
184 fo.close();
  /external/smali/smali/
runantlr.sh 83 run_antlr -verbose -fo "$JAVA_DIR" "$G_FILE"
  /external/v8/test/mjsunit/es6/
generators-iteration.js 158 })("fee", "fi", "fo", "fum");
160 ["fee", "fi", "fo", "fum", undefined],
162 ["fee", "fi", "fo", "fum", undefined]);
180 })("fee", "fi", "fo", "fum", "I smell the blood of an Englishman");
182 ["fee", "fi", "fo", "fum", undefined],
184 ["fee", "fi", "fo", "fum", undefined]);
193 })("fee", "fi", "fo", "fum", "I smell the blood of an Englishman");
195 ["fee", "fi", "fo", "fum", "I smell the blood of an Englishman",
198 ["fee", "fi", "fo", "fum", "I smell the blood of an Englishman",
208 })("fee", "fi", "fo", "fum")
    [all...]
  /external/clang/test/Sema/
ms_class_layout.cpp 91 virtual void fo(){} function in struct:O
  /frameworks/base/services/usb/java/com/android/server/usb/
UsbDebuggingManager.java 418 FileOutputStream fo = new FileOutputStream(keyFile, true); local
419 fo.write(key.getBytes());
420 fo.write('\n');
421 fo.close();
  /external/lzma/CPP/
Build.mak 43 COMPL_ASM = $(MY_ML) -c -Fo$O/ $**
46 CFLAGS = $(CFLAGS) -nologo -c -Fo$O/ -WX -EHsc -Gy -GR-
91 rc $(RFLAGS) -fo$@ $**
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
ContentFragment.java 329 FileOutputStream fo = new FileOutputStream(tempFile, false); local
330 if (!mBitmap.compress(Bitmap.CompressFormat.JPEG, 60, fo)) {
  /external/icu/icu4c/source/data/rbnf/
rbnffiles.mk 41 fa_AF.txt fi.txt fil.txt fo.txt fr.txt\
  /external/bison/lib/
config.charset 137 et_EE eu eu_ES fi fi_FI fo fo_FO fr fr_BE fr_CA fr_CH fr_FR \

Completed in 1198 milliseconds

1 2 3 4