HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 51 - 75 of 1601) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/openssl/crypto/perlasm/
x86_64-xlate.pl 140 sub out {
196 sub out {
237 sub out {
325 sub out {
346 sub out {
414 sub out {
647 sub out {
798 if ($label=label->re(\$line)) { print $label->out(); }
801 printf "%s",directive->out();
832 $insn = $opcode->out($#args>=1?$args[$#args]->size():$sz)
139 sub out { subroutine
195 sub out { subroutine
236 sub out { subroutine
324 sub out { subroutine
345 sub out { subroutine
413 sub out { subroutine
646 sub out { subroutine
    [all...]
  /external/oprofile/libutil++/
xml_output.cpp 24 ostringstream out; local
25 out << xml_tag_name(tag);
26 return out.str();
32 ostringstream out; local
36 out << buf;
37 return out.str();
43 ostringstream out; local
47 out << buf;
48 return out.str();
54 ostringstream out; local
65 ostringstream out; local
76 ostringstream out; local
    [all...]
  /dalvik/dx/src/com/android/dx/command/findusages/
Main.java 31 PrintWriter out = new PrintWriter(System.out); local
32 new FindUsages(dex, declaredBy, memberName, out).findUsages();
33 out.flush();
  /development/tools/idegen/src/
Files.java 44 FileWriter out = new FileWriter(file); local
45 out.write(contents);
46 out.close();
  /external/javassist/src/main/javassist/tools/
Dump.java 50 PrintWriter out = new PrintWriter(System.out, true); local
51 out.println("*** constant pool ***");
52 w.getConstPool().print(out);
53 out.println();
54 out.println("*** members ***");
55 ClassFilePrinter.print(w, out);
  /external/guava/guava-tests/test/com/google/common/io/
FileBackedOutputStreamTest.java 47 FileBackedOutputStream out = new FileBackedOutputStream(0, true); local
49 write(out, data, 0, 100, true);
50 final File file = out.getFile();
53 out.close();
56 out = null;
58 // times out and throws RuntimeException on failure
81 FileBackedOutputStream out = new FileBackedOutputStream(fileThreshold, resetOnFinalize); local
82 InputSupplier<InputStream> supplier = out.getSupplier();
88 write(out, data, 0, chunk1, singleByte);
92 File file = out.getFile()
131 FileBackedOutputStream out = new FileBackedOutputStream(50); local
152 FileBackedOutputStream out = new FileBackedOutputStream(Integer.MAX_VALUE); local
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_GetLocal.java 45 FileOutputStream out = new FileOutputStream(temp); local
49 out.write(buf, 0, result);
52 out.close();
65 FileOutputStream out = new FileOutputStream(temp); local
69 out.write(buf, 0, result);
72 out.close();
81 ByteArrayOutputStream out = new ByteArrayOutputStream(256); local
85 out.write(buf, 0, result);
87 return new ByteArrayInputStream(out.toByteArray());