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

<<31323334353637383940>>

  /external/mockito/cglib-and-asm/src/org/mockito/asm/
ClassWriter.java 27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
778 ByteVector out = new ByteVector(size); local
779 out.putInt(0xCAFEBABE).putInt(version);
780 out.putShort(index).putByteArray(pool.data, 0, pool.length);
781 out.putShort(access).putShort(name).putShort(superName);
782 out.putShort(interfaceCount);
784 out.putShort(interfaces[i]);
786 out.putShort(nbFields);
789 fb.put(out);
792 out.putShort(nbMethods);
    [all...]
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockWebServer.java 294 serverSocket.close(); // Should cause acceptConnections() to break out.
355 OutputStream out = new BufferedOutputStream(socket.getOutputStream());
357 while (processOneRequest(socket, in, out)) {
365 out.close();
388 private boolean processOneRequest(Socket socket, InputStream in, OutputStream out)
390 RecordedRequest request = readRequest(socket, in, out, sequenceNumber);
395 writeResponse(out, response);
398 out.close();
434 private RecordedRequest readRequest(Socket socket, InputStream in, OutputStream out,
468 out.write(("HTTP/1.1 100 Continue\r\n").getBytes(Util.US_ASCII))
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter_bridge/
ebtables.h 140 char out[IFNAMSIZ]; member in struct:ebt_entry
  /bootable/recovery/applypatch/
imgdiff.c 529 int TryReconstruction(ImageChunk* chunk, unsigned char* out) {
549 strm.next_out = out;
553 if (memcmp(out, chunk->deflate_data+p, have) != 0) {
562 // mismatch; ran out of data before we should have.
581 unsigned char* out = malloc(BUFFER_SIZE); local
591 if (TryReconstruction(chunk, out) == 0) {
592 free(out);
597 free(out);
713 int out = 0; local
733 printf("chunk %d is now %d\n", in_start, out);
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
RectFTest.java 514 Parcel out = Parcel.obtain(); local
515 rectOut.writeToParcel(out, 0);
516 out.setDataPosition(0);
518 rectIn.readFromParcel(out);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ScriptGroupTest.java 211 Allocation in1, in2, out, resultAlloc; local
215 out = Allocation.createTyped(mRS, connect);
253 group.setOutput(node5.getKernelID_arith(), out); local
260 compare.forEach_compare(out);
  /cts/tools/dasm/src/java_cup/
lalr_state.java 138 /** List of transitions out of this state. */
141 /** List of transitions out of this state. */
157 * onto System.out.
167 System.out.println("NULL lalr_state");
171 System.out.println("lalr_state [" + st.index() + "] {");
176 System.out.print(" [");
177 System.out.print(itm.the_production().lhs().the_symbol().name());
178 System.out.print(" ::= ");
181 if (i == itm.dot_pos()) System.out.print("(*) ");
184 System.out.print("{action} ")
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
SsaToRop.java 107 System.out.println("Printing reg map");
108 System.out.println(((BasicRegisterMapper)mapper).toHuman());
231 System.out.printf("Moving %d registers from 0 to %d\n",
301 // Filter out any reference to the SSA form's exit block.
  /development/ndk/platforms/android-L/include/linux/netfilter_bridge/
ebtables.h 140 char out[IFNAMSIZ]; member in struct:ebt_entry
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
ImageDownloader.java 68 // Entries push-out of hard reference cache are transferred to soft reference cache
77 // Soft cache for bitmap kicked out of hard cache
338 public void copy(InputStream in, OutputStream out) throws IOException {
342 out.write(b, 0, read);
  /device/asus/fugu/libaudio/
audio_hal_thunks.cpp 499 struct atv_stream_out *out = NULL; local
503 out = reinterpret_cast<struct atv_stream_out*>(
505 if (!out) {
510 out->stream.common.get_sample_rate = out_get_sample_rate;
511 out->stream.common.set_sample_rate = out_set_sample_rate;
512 out->stream.common.get_buffer_size = out_get_buffer_size;
513 out->stream.common.get_channels = out_get_channels;
514 out->stream.common.get_format = out_get_format;
515 out->stream.common.set_format = out_set_format;
516 out->stream.common.standby = out_standby
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitBaseTest.java 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
60 private PrintStream console = System.out;
95 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
97 ps = new PrintStream(out);
118 if ( out.toString().length()>0 ) {
119 this.stdout = out.toString();
121 if ( err.toString().length()==0 && out.toString().length()==0 ) {
145 System.setErr(consoleErr); // Reset standard err out
175 ByteArrayOutputStream out = null; local
204 out = new ByteArrayOutputStream()
351 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
    [all...]
  /external/antlr/antlr-3.4/gunit-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
GUnitExecuteMojo.java 286 System.out.println();
287 System.out.println( "-----------------------------------------------------------" );
288 System.out.println( " G U N I T R E S U L T S" );
289 System.out.println( "-----------------------------------------------------------" );
293 System.out.println( "Executing script " + scriptPath );
313 System.out.println( testResult.render() );
328 System.out.println();
329 System.out.println( "Summary :" );
331 System.out.println( " Found " + failureNames.size() + " failures" );
333 System.out.println( " - " + name )
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3string.c 31 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
529 pANTLR3_UINT16 out; local
532 out = (pANTLR3_UINT16)(string->chars);
537 *out++ = (ANTLR3_UINT16)(*ptr++);
658 // The one that follows the one we just deleted is also out
686 /* Assume we need as much as twice as much space to parse out the control characters
735 /* Assume we need as much as twice as much space to parse out the control characters
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
BufferedTreeNodeStream.java 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
37 * This node stream sucks all nodes out of the tree specified in
144 //System.out.println("revIndex="+tokenTypeToStreamIndexesMap);
227 //System.out.print("LT(p="+p+","+k+")=");
242 System.out.println("start last node: "+i+" size=="+nodes.size());
250 System.out.println("stop at node: "+i+" "+nodes.get(i));
419 System.out.println("toString");
426 //System.out.println("stop: "+stop);
428 System.out.print("toString: "+((CommonTree)start).getToken()+", ");
430 System.out.println(start)
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
MessageDigest2Test.java 98 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
99 DataOutputStream output = new DataOutputStream(out);
152 byte[] data = out.toByteArray();
166 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
167 DataOutputStream output = new DataOutputStream(out);
202 byte[] data = out.toByteArray();
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
PredicatedNodeTest.java 199 // System.out.println("getProximityPosition - m_predicateIndex: "+m_predicateIndex);
326 // System.out.println("nPredicates: "+nPredicates);
341 // System.out.println("Executing predicate expression - waiting count: "+m_lpi.getWaitingCount());
343 // System.out.println("\nBack from executing predicate expression - waiting count: "+m_lpi.getWaitingCount());
344 // System.out.println("pred.getType(): "+pred.getType());
349 System.out.flush();
350 System.out.println("\n===== start predicate count ========");
351 System.out.println("m_predicateIndex: " + m_predicateIndex);
352 // System.out.println("getProximityPosition(m_predicateIndex): "
354 System.out.println("pred.num(): " + pred.num())
    [all...]
  /external/chromium_org/crypto/
p224.cc 75 // Add computes *out = a+b
78 void Add(FieldElement* out, const FieldElement& a, const FieldElement& b) {
80 (*out)[i] = a[i] + b[i];
95 // Subtract computes *out = a-b
98 // out[i] < 2**32
99 void Subtract(FieldElement* out, const FieldElement& a, const FieldElement& b) {
102 (*out)[i] = a[i] + kZero31ModP[i] - b[i];
126 void ReduceLarge(FieldElement* out, LargeFieldElement* inptr) {
143 // As the values become small enough, we start to store them in |out| and use
147 (*out)[i] = static_cast<uint32>(in[i] & kBottom28Bits)
296 FieldElement& out = *inout; local
    [all...]
  /external/chromium_org/extensions/browser/api/cast_channel/
cast_channel_api.cc 55 std::string out; local
56 base::JSONWriter::Write(dict.get(), &out);
57 return out;
501 scoped_ptr<char[]> out = api_->GetLogger()->GetLogs(&length); local
502 if (out.get()) {
503 SetResult(new base::BinaryValue(out.Pass(), length));
  /external/chromium_org/sync/syncable/
model_type.cc 206 FullModelTypeSet out; local
208 out.Put(i.Get());
210 return out;
832 // TODO(akalin): Figure out a better way to do these mappings.
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/bn/
bn_test.c 34 * The word 'cryptographic' can be left out if the rouines from the library
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
125 static void ERR_print_errors_fp(FILE *out) {
128 static void message(BIO *out, char *m) {
129 BIO_puts(out, "print \"test ");
130 BIO_puts(out, m);
131 BIO_puts(out, "\\n\"\n");
136 BIO *out = NULL; local
148 else if (strcmp(*argv, "-out") == 0) {
162 out = BIO_new(BIO_s_file())
1343 uint8_t zeros[256], out[256], reference[128]; local
    [all...]
  /external/chromium_org/third_party/icu/source/samples/ucnv/
convsamp.cpp 165 This example first creates a UChar String out of the Unicode chars.
222 // Print it out
234 "Sample 03: C: print out all converters\n");
342 // simply ran out of space - we'll reset the target ptr the next
350 // Break out of the loop (by force)
362 } while (source < sourceLimit); // while simply out of space
365 printf("%d letters out of %d total UChars.\n", letters, total);
481 printf("%d letters out of %d total UChars.\n", letters, total);
546 // Print it out
626 /* print out the original source *
870 FILE *out; local
975 FILE *out; local
1082 UChar *target = output, *out; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
msfmrgts.cpp 150 * ICU 4.8: This test is commented out because toPattern() has been changed to return
882 UnicodeString out; local
883 //out = mf->format(new Object[]{new Integer(i)});
888 out = mf->format(objs, 1, out, pos, status);
938 UnicodeString out; local
    [all...]
tchcfmt.cpp 194 // if (status != U_ZERO_ERROR) return; // TODO: analyze why we have such a bad bail out here!
585 UnicodeString out; local
586 logln((UnicodeString)" toPattern: " + fmt.toPattern(out));
591 out.truncate(0);
592 fmt.format(v[i], out);
593 if (out == str[i]) {
594 logln((UnicodeString)"Ok: " + v[i] + " => " + out);
596 errln((UnicodeString)"FAIL: " + v[i] + " => " + out +
  /external/chromium_org/third_party/icu/source/tools/genrb/
derb.c 43 static void printOutBundle(UFILE *out, UConverter *converter, UResourceBundle *resource, int32_t indent, const char *pname, UErrorCode *status);
44 static void printString(UFILE *out, UConverter *converter, const UChar *str, int32_t len);
45 static void printCString(UFILE *out, UConverter *converter, const char *str, int32_t len);
46 static void printIndent(UFILE *out, UConverter *converter, int32_t indent);
47 static void printHex(UFILE *out, UConverter *converter, uint8_t what);
242 UFILE *out = NULL; local
267 out = u_get_stdout();
288 out = u_fopen(thefile, "w", NULL, encoding);
289 if (!out) {
297 ucnv_setFromUCallBack(u_fgetConverter(out), UCNV_FROM_U_CALLBACK_ESCAPE, UCNV_ESCAPE_C, 0, 0, &status)
    [all...]

Completed in 1903 milliseconds

<<31323334353637383940>>