HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 151 - 175 of 4560) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/fio/
fifo.h 29 unsigned int out; /* data is extracted from off. (out % size) */ member in struct:fifo
39 return fifo->in - fifo->out;
44 return fifo->size - fifo->in + fifo->out;
  /external/guava/guava-testlib/src/com/google/common/testing/
Platform.java 30 * Methods factored out so that they can be emulated differently in GWT.
44 ObjectOutputStream out = new ObjectOutputStream(bytes); local
45 out.writeObject(object);
  /external/guava/guava-tests/test/com/google/common/io/
LittleEndianDataInputStreamTest.java 44 DataOutputStream out = new DataOutputStream(baos); local
46 initializeData(out);
51 private void initializeData(DataOutputStream out) throws IOException {
52 /* Write out various test values NORMALLY */
53 out.write(new byte[] { -100, 100 });
54 out.writeBoolean(true);
55 out.writeBoolean(false);
56 out.writeByte(100);
57 out.writeByte(-100);
58 out.writeByte((byte) 200)
129 DataOutputStream out = new DataOutputStream(baos); local
    [all...]
  /external/hamcrest/src/org/hamcrest/
StringDescription.java 9 private final Appendable out; field in class:StringDescription
15 public StringDescription(Appendable out) {
16 this.out = out;
40 out.append(str);
48 out.append(c);
58 return out.toString();
  /external/icu/icu4c/source/samples/case/
case.cpp 15 U_CFUNC int c_main(UFILE *out);
17 void printUnicodeString(UFILE *out, const UnicodeString &s) {
19 u_fprintf(out, "\"%S\"", other.getTerminatedBuffer());
25 UFILE *out; local
27 out = u_finit(stdout, NULL, NULL);
28 if(!out) {
32 ucnv_setFromUCallBack(u_fgetConverter(out), UCNV_FROM_U_CALLBACK_ESCAPE,
35 u_fprintf(out, "Warning- couldn't set the substitute callback - err %s\n", u_errorName(status));
40 u_fprintf(out,"ICU Case Mapping Sample Program\n\n");
41 u_fprintf(out, "C++ Case Mapping\n\n")
    [all...]
  /external/icu/icu4c/source/test/intltest/
tstnrapi.cpp 80 UnicodeString out, out2; local
86 copy.getText(out);
88 if( out!=out2 ||
138 Normalizer::normalize(s, UNORM_NONE, 0, out, status);
139 if(out!=s) {
  /external/icu/icu4c/source/tools/gentest/
genres32.c 54 FILE *out; local
61 out = fopen(file, "w");
64 if(out == NULL) {
76 "testtable32 {", out
86 fprintf(out, "%s{\"\\U%08x\"}\n", key, i);
89 fprintf(out, "%s:int{%d}\n", key, i);
97 "}", out
100 fclose(out);
  /external/icu/icu4j/perf-tests/
converterperf.pl 69 my $OUT; # see out()
114 $OUT = '';
119 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
122 out("<TR><TD>");
125 out("</TD></TR>");
130 out("<TR><TD>");
133 out("</TD></TR>");
137 out("</TABLE></P>");
150 print HTML $OUT;
163 sub out { subroutine
    [all...]
dateformatperf.pl 49 my $OUT; # see out()
101 $OUT = '';
106 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
109 out("<TR><TD>");
112 out("</TD></TR>");
117 out("<TR><TD>");
120 out("</TD></TR>");
124 out("</TABLE></P>");
137 print HTML $OUT;
150 sub out { subroutine
    [all...]
decimalformatperf.pl 45 my $OUT; # see out()
96 $OUT = '';
101 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
104 out("<TR><TD>");
107 out("</TD></TR>");
112 out("<TR><TD>");
115 out("</TD></TR>");
119 out("</TABLE></P>");
132 print HTML $OUT;
145 sub out { subroutine
    [all...]
normperf.pl 105 my $OUT; # see out()
150 $OUT = '';
155 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
158 out("<TR><TD>");
161 out("</TD></TR>");
166 out("<TR><TD>");
169 out("</TD></TR>");
173 out("</TABLE></P>");
186 print HTML $OUT;
199 sub out { subroutine
    [all...]
ucharacterperf.pl 53 my $OUT; # see out()
98 $OUT = '';
103 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
106 out("<TR><TD>");
109 out("</TD></TR>");
114 out("<TR><TD>");
117 out("</TD></TR>");
121 out("</TABLE></P>");
134 print HTML $OUT;
147 sub out { subroutine
    [all...]
unicodesetperf.pl 43 my $OUT; # see out()
88 $OUT = '';
93 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
96 out("<TR><TD>");
99 out("</TD></TR>");
104 out("<TR><TD>");
107 out("</TD></TR>");
111 out("</TABLE></P>");
124 print HTML $OUT;
137 sub out { subroutine
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
SourceSet.java 80 out = new PrintWriter(
83 out.print('\uFEFF'); // BOM
84 System.out.println();
85 System.out.println("Writing " + filename);
89 out.close();
92 static PrintWriter out; field in class:SourceSet
99 System.out.println(t.getID() + ": " +
101 out.println("# MINIMAL FILTER GENERATED FOR: " + t.getID() + (forward ? "" : " REVERSE"));
102 out.println(":: "
107 out.println("# Unicode: " + sourceSet.toPattern(false))
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/
ZipMultiReportOutputTest.java 52 OutputStream out = zipOutput.createFile("a.txt"); local
53 out.write(content1);
54 out.close();
67 OutputStream out = zipOutput.createFile("b.txt"); local
68 out.write(content1, 5, 3);
69 out.close();
81 OutputStream out = zipOutput.createFile("b.txt"); local
82 out.write(40);
83 out.flush();
84 out.close()
97 OutputStream out = zipOutput.createFile("dir\/index.html"); local
121 OutputStream out = zipOutput.createFile("dir\/index.html"); local
141 OutputStream out = zipOutput.createFile("index.html"); local
148 OutputStream out = zipOutput.createFile("index.html"); local
155 OutputStream out = zipOutput.createFile("index.html"); local
162 OutputStream out = zipOutput.createFile("index.html"); local
    [all...]
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.put/
sputc.pass.cpp 53 char out[3] = {0}; local
54 t.setp(out, out+sizeof(out));
57 assert(out[0] == 'A');
60 assert(out[0] == 'A');
61 assert(out[1] == 'B');
  /external/libvncserver/libvncserver/
zrleoutstream.h 36 zrleBuffer out; member in struct:__anon16336
  /external/llvm/
llvm-tblgen-rules.mk 4 define transform-td-to-out
6 $(call transform-host-td-to-out,$(1)), \
7 $(call transform-device-td-to-out,$(1)))
45 $(call transform-td-to-out, register-info)
50 $(call transform-td-to-out,instr-info)
55 $(call transform-td-to-out,subtarget)
62 $(call transform-td-to-out, register-info)
67 $(call transform-td-to-out,instr-info)
72 $(call transform-td-to-out,subtarget)
79 $(call transform-td-to-out, register-info
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
SimpleOutputStream.java 18 private FinishableOutputStream out; field in class:SimpleOutputStream
34 SimpleOutputStream(FinishableOutputStream out,
36 if (out == null)
39 this.out = out;
71 // Write out the filtered data.
73 out.write(filterBuf, pos, filtered);
98 out.write(filterBuf, pos, unfiltered);
113 // If it fails, don't call out.finish().
117 out.finish()
    [all...]
UncompressedLZMA2OutputStream.java 16 private FinishableOutputStream out; field in class:UncompressedLZMA2OutputStream
34 UncompressedLZMA2OutputStream(FinishableOutputStream out) {
35 if (out == null)
38 this.out = out;
39 outData = new DataOutputStream(out);
92 out.write(0x00);
110 out.flush();
122 out.finish();
133 if (out != null)
    [all...]
  /external/mockito/src/org/mockito/internal/util/
StringJoiner.java 11 StringBuilder out = new StringBuilder("\n"); local
12 return join(out, linesToBreak);
15 private static String join(StringBuilder out, Object[] linesToBreak) {
17 out.append(line.toString()).append("\n");
19 int lastBreak = out.lastIndexOf("\n");
20 return out.replace(lastBreak, lastBreak+1, "").toString();
  /external/nanopb-c/examples/using_double_on_avr/
double_conversion.c 67 conversion_t out; local
116 out.i = mantissa;
117 out.i |= (uint32_t)(exponent + 127) << 23;
118 out.i |= (uint32_t)sign << 31;
120 return out.f;
  /external/owasp/sanitizer/src/tests/org/owasp/html/
UrlTextExampleTest.java 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 StringBuilder out = new StringBuilder(); local
44 out,
56 out.toString());
  /external/protobuf/java/src/device/main/java/com/google/protobuf/nano/android/
ParcelableExtendableMessageNano.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
51 public void writeToParcel(Parcel out, int flags) {
52 ParcelableMessageNanoCreator.writeToParcel(getClass(), this, out); local
ParcelableMessageNano.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
49 public void writeToParcel(Parcel out, int flags) {
50 ParcelableMessageNanoCreator.writeToParcel(getClass(), this, out); local

Completed in 505 milliseconds

1 2 3 4 5 67 8 91011>>