Searched defs:in (Results 301 - 325 of 1566) sorted by relevance

<<11121314151617181920>>

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowComponentName.java52 public static ComponentName readFromParcel(Parcel in) { argument
53 if (in.readInt() == 0) {
56 String pkg = in.readString();
57 String cls = in.readString();
/external/skia/gm/rebaseline_server/
H A Dcompare_configs_test.py7 found in the LICENSE file.
11 TODO(epoger): Create a command to update the expected results (in
13 1. examine the results in self._output_dir_actual and make sure they are ok
28 import gm_json # must import results first, so that gm_json will be in sys.path namespace
H A Dcompare_to_expectations_test.py7 found in the LICENSE file.
11 TODO(epoger): Create a command to update the expected results (in
13 1. examine the results in self._output_dir_actual and make sure they are ok
28 import gm_json # must import results first, so that gm_json will be in sys.path namespace
/external/skia/tests/
H A DColorFilterTest.cpp5 * found in the LICENSE file.
48 // allow for no filter if we're in Dst mode (its a no op)
97 SkPMColor in, out; local
102 in = SkPackARGB32(i, i, i, i);
103 lf->filterSpan(&in, 1, &out);
112 in = SkPackARGB32(i, 0, 0, 0);
113 lf->filterSpan(&in, 1, &out);
119 in = SkPackARGB32(i, i, i / 2, i / 3);
120 lf->filterSpan(&in, 1, &out);
121 REPORTER_ASSERT(reporter, out != in);
[all...]
/external/smack/asmack-master/static-src/custom/com/kenai/jbosh/
H A DQName.java8 * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
24 * Alternately, this acknowledgment may appear in the software itself,
33 * nor may "Apache" appear in their name, without prior written
63 * as specified in <a href="http://www.w3.org/TR/xmlschema-2/#QName">XML
208 * The string must be in the form returned by the QName.toString()
258 * @param in the ObjectInputStream to be read
260 private void readObject(ObjectInputStream in) throws argument
262 in
[all...]
/external/smack/src/com/kenai/jbosh/
H A DQName.java8 * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
24 * Alternately, this acknowledgment may appear in the software itself,
33 * nor may "Apache" appear in their name, without prior written
63 * as specified in <a href="http://www.w3.org/TR/xmlschema-2/#QName">XML
208 * The string must be in the form returned by the QName.toString()
258 * @param in the ObjectInputStream to be read
260 private void readObject(ObjectInputStream in) throws argument
262 in
[all...]
/external/smack/src/org/jivesoftware/smack/proxy/
H A DSocks5ProxySocketFactory.java7 * you may not use this file except in compliance with the License.
12 * Unless required by applicable law or agreed to in writing, software
79 InputStream in = null;
89 in=socket.getInputStream();
106 appear in the METHODS field.
127 The server selects from one of the methods given in METHODS, and
136 //in.read(buf, 0, 2);
137 fill(in, buf, 2);
197 //in.read(buf, 0, 2);
198 fill(in, bu
360 fill(InputStream in, byte[] buf, int len) argument
[all...]
/external/smack/src/org/xbill/DNS/
H A DTypeBitmap.java6 * Routines for deal with the lists of types found in NSEC/NSEC3 records.
35 TypeBitmap(DNSInput in) throws WireParseException { argument
38 while (in.remaining() > 0) {
39 if (in.remaining() < 2)
42 int mapbase = in.readU8();
45 int maplength = in.readU8();
46 if (maplength > in.remaining())
49 int current = in.readU8();
H A DUNKRecord.java28 rrFromWire(DNSInput in) throws IOException { argument
29 data = in.readByteArray();
/external/speex/libspeex/
H A Dvq.c5 Redistribution and use in source and binary forms, with or without
12 - Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in the
51 int scal_quant(spx_word16_t in, const spx_word16_t *boundary, int entries) argument
54 while (i<entries-1 && in>boundary[0])
62 int scal_quant32(spx_word32_t in, const spx_word32_t *boundary, int entries) argument
65 while (i<entries-1 && in>boundary[0])
75 /*Finds the indices of the n-best entries in a codebook*/
76 void vq_nbest(spx_word16_t *in, const spx_word16_t *codebook, int len, int entries, spx_word32_t *E, int N, int *nbest, spx_word32_t *best_dist, char *stack) argument
84 dist = MAC16_16(dist,in[
110 vq_nbest_sign(spx_word16_t *in, const spx_word16_t *codebook, int len, int entries, spx_word32_t *E, int N, int *nbest, spx_word32_t *best_dist, char *stack) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dbase64.c27 * not included in out_len.
33 const unsigned char *end, *in; local
47 in = src;
50 while (end - in >= 3) {
51 *pos++ = base64_table[in[0] >> 2];
52 *pos++ = base64_table[((in[0] & 0x03) << 4) | (in[1] >> 4)];
53 *pos++ = base64_table[((in[1] & 0x0f) << 2) | (in[2] >> 6)];
54 *pos++ = base64_table[in[
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dbase64.c27 * not included in out_len.
33 const unsigned char *end, *in; local
47 in = src;
50 while (end - in >= 3) {
51 *pos++ = base64_table[in[0] >> 2];
52 *pos++ = base64_table[((in[0] & 0x03) << 4) | (in[1] >> 4)];
53 *pos++ = base64_table[((in[1] & 0x0f) << 2) | (in[2] >> 6)];
54 *pos++ = base64_table[in[
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dbase64.c27 * not included in out_len.
33 const unsigned char *end, *in; local
47 in = src;
50 while (end - in >= 3) {
51 *pos++ = base64_table[in[0] >> 2];
52 *pos++ = base64_table[((in[0] & 0x03) << 4) | (in[1] >> 4)];
53 *pos++ = base64_table[((in[1] & 0x0f) << 2) | (in[2] >> 6)];
54 *pos++ = base64_table[in[
[all...]
/external/zlib/src/examples/
H A Dzpipe.c10 1.3 6 Apr 2005 Remove incorrect assertion in inf()
41 unsigned char in[CHUNK]; local
54 strm.avail_in = fread(in, 1, CHUNK, source);
60 strm.next_in = in;
63 compression if all of source has been read in */
77 /* done when last data in file processed */
97 unsigned char in[CHUNK]; local
112 strm.avail_in = fread(in, 1, CHUNK, source);
119 strm.next_in = in;
/external/zopfli/src/zopfli/
H A Dgzip_container.c5 you may not use this file except in compliance with the License.
10 Unless required by applicable law or agreed to in writing, software
78 const unsigned char* in, size_t insize,
80 unsigned long crcvalue = CRC(in, insize);
97 in, insize, &bp, out, outsize);
77 ZopfliGzipCompress(const ZopfliOptions* options, const unsigned char* in, size_t insize, unsigned char** out, size_t* outsize) argument
H A Dzlib_container.c5 you may not use this file except in compliance with the License.
10 Unless required by applicable law or agreed to in writing, software
51 const unsigned char* in, size_t insize,
54 unsigned checksum = adler32(in, (unsigned)insize);
66 in, insize, &bitpointer, out, outsize);
50 ZopfliZlibCompress(const ZopfliOptions* options, const unsigned char* in, size_t insize, unsigned char** out, size_t* outsize) argument
/external/emma/lib/internal/
H A Dstamptool.jar ... args int a String arg java.io.InputStreamReader in String endTime java.io.InputStreamReader in String startTime ...
/external/aac/libSBRenc/src/
H A Dsbr_misc.cpp20 individually for the purpose of encoding or decoding bit streams in products that are compliant with
31 Redistribution and use in source and binary forms, with or without modification, are permitted without
34 You must retain the complete text of this software license in redistributions of the FDK AAC Codec or
35 your modifications thereto in source code form.
37 You must retain the complete text of this software license in the documentation and/or other materials
38 provided with redistributions of the FDK AAC Codec or your modifications thereto in binary form.
40 modifications thereto to recipients of copies in binary form.
69 or business interruption, however caused and on any theory of liability, whether in contract, strict
70 liability, or tort (including negligence), arising in any way out of the use of this software, even if
91 void FDKsbrEnc_Shellsort_fract (FIXP_DBL *in, IN argument
119 FDKsbrEnc_Shellsort_int(INT *in, INT n) argument
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DSerializedGrammar.java6 Redistribution and use in source and binary forms, with or without
11 2. Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the
44 public char type; // in {l, p, t, c}
93 DataInputStream in = new DataInputStream(bos);
94 readFile(in);
95 in.close();
98 protected void readFile(DataInputStream in) throws IOException { argument
99 String cookie = readString(in); // get $ANTLR
101 int version = in
112 readRules(DataInputStream in, int numRules) argument
121 readRule(DataInputStream in) argument
133 readBlock(DataInputStream in) argument
145 readAlt(DataInputStream in) argument
182 readString(DataInputStream in) argument
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DDOTTreeGenerator.java6 Redistribution and use in source and binary forms, with or without
11 2. Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the
35 * arbitrary trees. You can pass in your own templates and
36 * can pass in any kind of tree or use Tree interface method.
42 * CharStream input = new ANTLRInputStream(System.in);
117 * Return the ST not a string in case people want to alter.
206 protected String fixString(String in) argument
208 String text = in;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
H A DJPDADebuggeeSynchronizer.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
56 protected DataInputStream in; field in class:JPDADebuggeeSynchronizer
107 msg = in.readUTF();
127 msg = in.readUTF();
146 msg = in.readUTF();
183 "[SYNC] Exception in binding for socket sync connection", e);
200 in = new DataInputStream(clientSocket.getInputStream());
203 "[SYNC] Exception in accepting socket sync connection", e);
221 in
[all...]
/external/apache-harmony/support/src/test/java/tests/support/resource/
H A DSupport_Resources.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
91 InputStream in = Support_Resources.getStream(src);
94 copyLocalFileTo(dst, in);
104 public static void copyLocalFileTo(File dest, InputStream in) throws IOException { argument
109 while ((result = in.read(buf)) != -1) {
112 in.close();
120 InputStream in = new URL(url).openStream();
122 copyLocalFileTo(temp, in);
/external/apache-http/src/org/apache/http/conn/
H A DEofSensorInputStream.java12 * (the "License"); you may not use this file except in compliance with
17 * Unless required by applicable law or agreed to in writing, software
44 * This class is based on <code>AutoCloseInputStream</code> in HttpClient 3.1,
84 * is <code>null</code>, we're running in EOF mode.
104 * @param in the wrapped stream
108 public EofSensorInputStream(final InputStream in, argument
110 if (in == null) {
115 wrappedStream = in;
125 * <code>false</code> if this stream is in EOF mode and
236 * in cas
[all...]
/external/apache-http/src/org/apache/http/impl/io/
H A DChunkedInputStream.java12 * "License"); you may not use this file except in compliance
17 * Unless required by applicable law or agreed to in writing,
79 private SessionInputBuffer in; field in class:ChunkedInputStream
100 public ChunkedInputStream(final SessionInputBuffer in) { argument
102 if (in == null) {
105 this.in = in;
111 * <p> Returns all the data in a chunked stream in coalesced form. A chunk
136 return in
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DAttributeTable.java218 Hashtable in)
221 Enumeration e = in.keys();
227 out.put(key, in.get(key));
234 * Return a new table with the passed in attribute added.
217 copyTable( Hashtable in) argument

Completed in 7252 milliseconds

<<11121314151617181920>>