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

<<51525354555657585960>>

  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/data/
ExecutionDataReaderWriterTest.java 74 final OutputStream out = new OutputStream() { local
84 new ExecutionDataWriter(out).flush();
305 protected ExecutionDataWriter createWriter(OutputStream out)
307 return new ExecutionDataWriter(out);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/instr/
InstrumenterTest.java 146 OutputStream out = new ByteArrayOutputStream(); local
148 int count = instrumenter.instrumentAll(in, out, "Test");
160 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
163 new ByteArrayInputStream(buffer.toByteArray()), out, "Test");
167 out.toByteArray()));
181 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
185 new ByteArrayInputStream(buffer.toByteArray()), out,
210 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
212 pack200buffer.toByteArray()), out, "Test");
217 out.toByteArray())), new JarOutputStream(jarbuffer))
229 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
244 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
262 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
    [all...]
  /external/jacoco/org.jacoco.examples/src/org/jacoco/examples/
CoreTutorial.java 88 private final PrintStream out; field in class:CoreTutorial
93 * @param out
96 public CoreTutorial(final PrintStream out) {
97 this.out = out;
149 out.printf("Coverage of class %s%n", cc.getName());
158 out.printf("Line %s: %s%n", Integer.valueOf(i), getColor(cc
172 out.printf("%s of %s %s missed%n", missed, total, unit);
196 new CoreTutorial(System.out).execute();
  /external/javassist/src/main/javassist/tools/rmi/
ObjectImporter.java 156 OutputStream out = sock.getOutputStream(); local
157 out.write(lookupCommand);
158 out.write(endofline);
159 out.write(endofline);
161 ObjectOutputStream dout = new ObjectOutputStream(out);
225 OutputStream out = new BufferedOutputStream( local
227 out.write(rmiCommand);
228 out.write(endofline);
229 out.write(endofline);
231 ObjectOutputStream dout = new ObjectOutputStream(out);
    [all...]
  /external/jcommander/src/test/java/com/beust/jcommander/command/
CommandAliasTest.java 121 StringBuilder out = new StringBuilder(); local
122 jc.usage("commit", out);
123 patternMatchesTimes("commit\\(ci,cmt\\)", out.toString(), 1);
125 out = new StringBuilder();
126 jc.usage("ci", out);
127 patternMatchesTimes("commit\\(ci,cmt\\)", out.toString(), 1);
129 out = new StringBuilder();
130 jc.usage("cmt", out);
131 patternMatchesTimes("commit\\(ci,cmt\\)", out.toString(), 1);
140 StringBuilder out = new StringBuilder() local
    [all...]
  /external/jdiff/src/jdiff/
API.java 17 * The advantage of writing out an XML representation of each API is that
87 for (int i = 0; i < indent; i++) System.out.print(" ");
88 System.out.println("Package Name: " + pkg.name_);
95 System.out.print("Package doc block:");
96 System.out.println("\"" + pkg.doc_ + "\"");
107 for (int i = 0; i < indent; i++) System.out.print(" ");
109 System.out.println("Interface name: " + c.name_);
111 System.out.println("Class Name: " + c.name_);
113 for (int i = 0; i < indent; i++) System.out.print(" ");
114 System.out.println("Extends: " + c.extends_)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/session/
HashedSession.java 142 DataOutputStream out = new DataOutputStream(os); local
143 out.writeUTF(getClusterId());
144 out.writeUTF(getNodeId());
145 out.writeLong(getCreationTime());
146 out.writeLong(getAccessed());
148 /* Don't write these out, as they don't make sense to store because they
152 //out.writeBoolean(_invalid);
153 //out.writeBoolean(_doInvalidate);
154 //out.writeLong(_maxIdleMs);
155 //out.writeBoolean( _newSession)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/
ByteArrayISO8859Writer.java 104 public void writeTo(OutputStream out)
107 out.write(_buf,0,_size);
RolloverFileOutputStream.java 238 if (out==null || !file.equals(_file))
244 OutputStream oldOut=out;
245 out=new FileOutputStream(file.toString(),_append);
288 out.write (buf);
296 out.write (buf, off, len);
311 out=null;
  /external/jetty/src/java/org/eclipse/jetty/util/security/
Password.java 223 System.out.print(realm + ((promptDft != null && promptDft.length() > 0) ? " [dft]" : "") + " : ");
224 System.out.flush();
UnixCrypt.java 273 long out = 0L; local
279 out |= tp;
281 out |= tp;
283 return out;
292 long out = 0L; local
298 out |= tp;
300 out |= tp;
302 return out;
  /external/jmdns/src/javax/jmdns/impl/tasks/state/
DNSStateTask.java 102 DNSOutgoing out = this.createOugoing(); local
114 out = this.buildOutgoingForDNS(out);
125 out = this.buildOutgoingForInfo(info, out);
129 if (!out.isEmpty()) {
131 this.getDns().send(out);
153 protected abstract DNSOutgoing buildOutgoingForDNS(DNSOutgoing out) throws IOException;
155 protected abstract DNSOutgoing buildOutgoingForInfo(ServiceInfoImpl info, DNSOutgoing out) throws IOException;
  /external/libchrome/base/
command_line.cc 116 string16 out; local
117 out.push_back(L'"');
133 out.push_back('\\');
138 out.push_back('\\');
139 out.push_back('"');
141 out.push_back(arg[i]);
144 out.push_back('"');
146 return out;
  /external/libgdx/backends/gdx-backend-headless/src/com/badlogic/gdx/backends/headless/
HeadlessPreferences.java 176 OutputStream out = null; local
178 out = new BufferedOutputStream(file.write(false));
179 properties.storeToXML(out, null);
183 StreamUtils.closeQuietly(out);
  /external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/
JglfwPreferences.java 158 OutputStream out = null; local
160 out = new BufferedOutputStream(file.write(false));
161 properties.store(out, null);
165 StreamUtils.closeQuietly(out);
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglPreferences.java 178 OutputStream out = null; local
180 out = new BufferedOutputStream(file.write(false));
181 properties.storeToXML(out, null);
185 StreamUtils.closeQuietly(out);
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
Lwjgl3Preferences.java 176 OutputStream out = null; local
178 out = new BufferedOutputStream(file.write(false));
179 properties.storeToXML(out, null);
183 StreamUtils.closeQuietly(out);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btSpatialAlgebra.h 105 void cross(const SpatialVectorType &b, SpatialVectorType &out) const
107 out.m_topVec = m_topVec.cross(b.m_topVec);
108 out.m_bottomVec = m_bottomVec.cross(b.m_topVec) + m_topVec.cross(b.m_bottomVec);
113 SpatialVectorType out; local
114 out.m_topVec = m_topVec.cross(b.m_topVec);
115 out.m_bottomVec = m_bottomVec.cross(b.m_topVec) + m_topVec.cross(b.m_bottomVec);
116 return out;
300 SpatialVectorType out; local
301 transform(vec, out);
302 return out;
320 btSymmetricSpatialDyad out; local
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/
apinames.c 127 names_dump( FILE* out,
138 fprintf( out, "LIBRARY %s\n", dll_name );
140 fprintf( out, "DESCRIPTION FreeType 2 DLL\n" );
141 fprintf( out, "EXPORTS\n" );
143 fprintf( out, " %s\n", the_names[nn].name );
148 fprintf( out, "LIBRARY %s\n", dll_name );
150 fprintf( out, "DESCRIPTION FreeType 2 DLL\n" );
151 fprintf( out, "EXPORTS\n" );
153 fprintf( out, " _%s\n", the_names[nn].name );
186 fprintf( out, "++_%s.%s.%s\n", the_names[nn].name, dll_name
343 FILE* out = stdout; local
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
FilesTest.java 59 BufferedWriter out = null; local
61 out = new BufferedWriter(new OutputStreamWriter(Gdx.files.external("test.txt").write(false)));
62 out.write("test");
69 StreamUtils.closeQuietly(out);
103 BufferedWriter out = null; local
105 out = new BufferedWriter(new OutputStreamWriter(Gdx.files.local("test.txt").write(false)));
106 out.write("test");
113 StreamUtils.closeQuietly(out);
JsonTest.java 95 System.out.println();
96 System.out.println("Success!");
101 System.out.println(text);
  /external/libvorbis/lib/
psytune.c 242 float *pcm[2],*out[2],*window,*flr[2],*mask[2],*work[2]; local
278 out[0]=_ogg_calloc(framesize/2,sizeof(float));
279 out[1]=_ogg_calloc(framesize/2,sizeof(float));
476 out[i][j]+=pcm[i][j]*window[j];
478 analysis("out",frameno+i,out[i],framesize/2,0,0);
483 /* write data. Use the part of buffer we're about to shift out */
486 float *mono=out[i];
513 out[i][j]=pcm[i][k]*window[k];
  /external/libvorbis/vq/
metrics.c 149 FILE *out; local
159 out=fopen(buffer,"w");
160 if(!out){
167 fprintf(out,"%d, %g, %g\n",
172 fclose(out);
175 out=fopen(buffer,"w");
176 if(!out){
183 fprintf(out,"%d, %g, %g\n",
188 fclose(out);
191 out=fopen(buffer,"w")
    [all...]
  /external/libvpx/libvpx/vpx_dsp/
fwd_txfm.c 25 tran_low_t *out = intermediate; local
55 out[0] = (tran_low_t)fdct_round_shift(temp1);
56 out[2] = (tran_low_t)fdct_round_shift(temp2);
59 out[1] = (tran_low_t)fdct_round_shift(temp1);
60 out[3] = (tran_low_t)fdct_round_shift(temp2);
64 out += 4;
66 // Setup in/out for next pass.
68 out = output;
200 tran_low_t *out = intermediate; local
274 out[0] = (tran_low_t)fdct_round_shift(t0)
    [all...]
  /external/libvpx/libvpx/vpx_dsp/mips/
itrans8_dspr2.c 447 DECLARE_ALIGNED(32, int16_t, out[8 * 8]);
448 int16_t *outptr = out;
462 idct8_columns_add_blk_dspr2(&out[0], dest, dest_stride);
467 DECLARE_ALIGNED(32, int16_t, out[8 * 8]);
468 int16_t *outptr = out;
507 idct8_columns_add_blk_dspr2(&out[0], dest, dest_stride);
513 int32_t out; local
526 out = DCT_CONST_ROUND_SHIFT_TWICE_COSPI_16_64(input[0]);
528 "addi %[out], %[out], 16 \n\t
    [all...]

Completed in 1083 milliseconds

<<51525354555657585960>>