/external/skia/gm/rebaseline_server/ |
compare_to_expectations_test.py | 7 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/ |
ColorFilterTest.cpp | 5 * 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/ |
QName.java | 8 * 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 39 * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR 44 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 45 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 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( [all...] |
/external/smack/src/com/kenai/jbosh/ |
QName.java | 8 * 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 39 * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR 44 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 45 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 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( [all...] |
/external/smack/src/org/jivesoftware/smack/compression/ |
JzlibInputOutputStream.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 25 * This class provides XMPP "zlib" compression with the help of JZLib. Note that jzlib-1.0.7 must be used (i.e. in the 58 Object in = constructor.newInstance(inputStream); local 61 method.invoke(in, 2); 62 return (InputStream) in;
|
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
filterbanks.c | 5 * that can be found in the LICENSE file in the root of the source 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 26 * sections are used to filter the input in a cascade manner. 50 the input signal, and part of the signal in the input 'lookahead buffer'. 53 in: a length FRAMESAMPLES array of input samples 60 based on the samples in the two prefiltdata->INLABUFx arrays 64 array in[] 94 float in[FRAMESAMPLES]; local [all...] |
/frameworks/av/services/audioflinger/ |
AudioResamplerCubic.cpp | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 74 int16_t *in = mBuffer.i16; local 84 // out[outputIndex++] += vr * in[inputIndex*2]; 104 in = mBuffer.i16; 109 advance(&left, in[inputIndex*2]); 110 advance(&right, in[inputIndex*2+1]); 142 int16_t *in = mBuffer.i16; local 173 in = mBuffer.i16; 177 advance(&left, in[inputIndex]) [all...] |
/frameworks/compile/mclinker/lib/Script/ |
Assignment.cpp | 131 SectionMap::Output::reference in = script.sectionMap().back()->back(); local 133 if (in->dotAssignments().empty()) { 136 RpnExpr::buildHelperExpr(in->getSection()->getSectionData()->front()); 141 in->dotAssignments().push_back(std::make_pair((Fragment*)NULL, assign)); 144 Assignment& prevDotAssign = in->dotAssignments().back().second; 155 in->dotAssignments().push_back( 156 std::make_pair(in->getSection()->getSectionData()->front().getNextNode(),
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsicLUT.cpp | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 62 const uchar *in = (uchar *)p->in; local 72 out[0] = tr[in[0]]; 73 out[1] = tg[in[1]]; 74 out[2] = tb[in[2]]; 75 out[3] = ta[in[3]]; 76 in += 4;
|
/frameworks/rs/java/tests/HelloComputeNDK/src/com/example/android/rs/hellocomputendk/ |
HelloComputeNDK.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 34 native void nativeMono(String cacheDir, int X, int Y, Bitmap in, Bitmap out); 45 ImageView in = (ImageView) findViewById(R.id.displayin); local 46 in.setImageBitmap(mBitmapIn);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
ClassNotFoundExceptionTest.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 26 * Thrown when an application tries to load in a class through its string 27 * name using the forName method in class Class. 53 IOException in = new IOException(); local 54 ClassNotFoundException e = new ClassNotFoundException("SomeMessage", in); 55 assertEquals("Wrong Exception", in, e.getException()); 57 assertEquals("Wrong cause", in, e.getCause());
|
/libcore/luni/src/main/java/java/io/ |
LineNumberInputStream.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 45 * {@code in}. Line numbers are counted for all data read from this stream. 50 * @param in 53 public LineNumberInputStream(InputStream in) { 54 super(in); 62 * {@code available} returns only {@code in.available() / 2} bytes as 67 return in.available() / 2 + (lastChar == -1 ? 0 : 1); 80 * Sets a mark position in this stream. The parameter {@code readlimit} 87 * This implementation sets a mark in the filtered stream [all...] |
/libcore/luni/src/main/java/javax/xml/parsers/ |
DocumentBuilder.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 106 InputSource in = new InputSource(is); local 107 return parse(in); 130 InputSource in = new InputSource(is); local 131 in.setSystemId(systemId); 132 return parse(in); 154 InputSource in = new InputSource(uri); local 155 return parse(in); 182 InputSource in = new InputSource(escapedURI) local [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Explicit.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 62 public Object decode(BerInputStream in) throws IOException { 63 if (constrId != in.tag) { 65 in.tagOffset + "]. Expected tag: " + Integer.toHexString(constrId) + ", " + 66 "but encountered tag " + Integer.toHexString(in.tag)); 68 in.next(); 70 in.content = type.decode(in); 72 if (in.isVerify) [all...] |
ASN1GeneralizedTime.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 65 public Object decode(BerInputStream in) throws IOException { 66 in.readGeneralizedTime(); 68 if (in.isVerify) { 71 return getDecodedObject(in);
|
/libcore/luni/src/test/java/libcore/java/text/ |
DecimalFormatSymbolsTest.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 31 // returns "en_US.UTF-8". bionic before L returned NULL and in L returns "C.UTF-8", both 54 ObjectInputStream in = new ObjectInputStream(new ByteArrayInputStream(bytes)); local 55 DecimalFormatSymbols deserializedDfs = (DecimalFormatSymbols) in.readObject(); 56 assertEquals(-1, in.read());
|
/libcore/luni/src/test/native/ |
test_openssl_engine.cpp | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 53 BIO* in = BIO_new_mem_buf(data, strlen(key_id)); local 54 if (!in) { 57 key = read_func(in, NULL, 0, NULL); 58 BIO_free(in);
|
/ndk/tests/device/issue61659-neon-assignment/jni/ |
issue61659-neon-assignment.c | 45 uint8x8_t in = vorr_u8(vand_u8 (va, mask_low), vand_u8 (vb, mask_high)); local 46 dump_and_check(*(unsigned long long *)&in, 0x6262626261616161ULL);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppBtEnableActivity.java | 6 * Redistribution and use in source and binary forms, with or without 12 * - Redistributions in binary form must reproduce the above copyright notice, 13 * this list of conditions and the following disclaimer in the documentation 23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 88 Intent in = new Intent(this, BluetoothOppBtEnablingActivity.class); local 89 in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 90 this.startActivity(in);
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldBufferedReaderTest.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 78 // Avoid IOException in tearDown(). 111 Reader in = new BufferedReader(new Support_StringReader(new String( local 114 in.skip(6); 115 in.mark(14); 116 in.read(new char[14], 0, 14); 117 in.reset(); 118 assertTrue("Wrong chars", in.read() == (char) 6 119 && in.read() == (char) 7) 159 Reader in = new BufferedReader(new Support_StringReader(new String( local [all...] |
/libcore/luni/src/test/java/libcore/java/util/zip/ |
DeflaterOutputStreamTest.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 42 InputStream in = createInflaterStream(DeflaterOutputStream.class, true); local 43 assertEquals(1, in.read()); 44 assertEquals(2, in.read()); 45 assertEquals(3, in.read()); 46 in.close(); 50 InputStream in = createInflaterStream(DeflaterOutputStream.class, false); local 52 in.read(); 56 in.close() [all...] |
/libcore/support/src/test/java/tests/support/ |
Support_TestWebData.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 117 FileInputStream in = null; local 119 in = new FileInputStream(file); 120 while (in.available() > 0) { 121 out.write(in.read()); 123 in.close(); 134 if (in != null) { 135 in.close();
|
/external/emma/lib/internal/ |
stamptool.jar | |
/external/emma/core/java12/com/vladium/util/ |
IPathEnumerator.java | 52 void handleArchiveEntry (JarInputStream in, ZipEntry entry); 206 JarInputStream in = null; local 210 // crash the JVM in some builds; however, it uses random file 212 // entries in their archives (which JarInputStream can't do); 219 in = new JarInputStream (new BufferedInputStream (new FileInputStream (fullArchive), 32 * 1024)); 223 Manifest manifest = in.getManifest (); // can be null 230 for (ZipEntry entry; (entry = in.getNextEntry ()) != null; ) 235 handler.handleArchiveEntry (in, entry); 236 in.closeEntry (); 245 if (manifest == null) manifest = in.getManifest () [all...] |
/external/javassist/src/main/javassist/tools/web/ |
Webserver.java | 6 * 1.1 (the "License"); you may not use this file except in compliance with 31 * <p><b>Note:</b> although this class is included in the Javassist API, 33 * Javassist. Especially, there might be security flaws in this server. 189 InputStream in = new BufferedInputStream(clnt.getInputStream()); local 190 String cmd = readLine(in); 193 while (skipLine(in) > 0){ 198 doReply(in, out, cmd); 205 in.close(); 210 private String readLine(InputStream in) throws IOException { 213 while ((c = in.read()) >= 0 && c != 0x0d [all...] |