/external/elfutils/libebl/ |
eblobjnote.c | 19 or both in parallel, as here. 21 elfutils is distributed in the hope that it will be useful, but 159 Elf_Data in = local 187 if (elf32_xlatetom (&out, &in, ebl->data) != NULL)
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
ReserializingTestCollectionGenerator.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 58 ObjectInputStream in = new ObjectInputStream( local 60 return (T) in.readObject();
|
/external/guava/guava-tests/test/com/google/common/io/ |
TestInputStream.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 40 public TestInputStream(InputStream in, TestOption... options) throws IOException { 41 this(in, Arrays.asList(options)); 44 public TestInputStream(InputStream in, Iterable<TestOption> options) throws IOException { 45 super(checkNotNull(in)); 58 return in.read(); 65 return in.read(b, off, len); 72 return in.skip(n); 78 return options.contains(TestOption.AVAILABLE_ALWAYS_ZERO) ? 0 : in.available() [all...] |
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
JarScanner.java | 38 * Abstract base class for configurations that want to scan jars in 44 * method to handle entries in jar files whose names match the supplied 65 * jar names, and you want to match them in order, you should 70 * in any order. 91 * all jar names in the classloader will match. 98 * jar names, and you want to match them in order, you should 102 * Will iterate over the jar names in the classloader and match 103 * in any order. 106 * Will iterate over the jar names in the classloader, matching 111 * classloader passed in 151 InputStream in = Resource.newResource(uri).getInputStream(); local [all...] |
/external/jsoncpp/scons-tools/ |
substinfile.py | 2 from SCons.Script import * # the usual scons stuff you get in a SConscript namespace 22 then all instances of %VERSION% in the file will be replaced with 1.2345 etc. 30 for (k,v) in list(dict.items()): 41 if 'SUBST_DICT' not in env: 44 for (k,v) in list(d.items()): 51 for (t,s) in zip(target, source): 57 for (t,s) in zip(target, source)]) 64 for (k,v) in list(d.items()):
|
/external/libchrome/base/json/ |
string_escape_unittest.cc | 3 // found in the LICENSE file. 52 std::string in = cases[0].to_escape; local 54 EscapeJSONString(in, false, &out); 59 EscapeJSONString(in, true, &out_quoted); 64 // now try with a NULL in the string 67 in = null_prepend + in; 71 EscapeJSONString(in, false, &out); 92 string16 in = WideToUTF16(cases[i].to_escape); local 95 EscapeJSONString(in, false, &out) 104 string16 in = WideToUTF16(cases[0].to_escape); local 173 std::string in = std::string(cases[i].to_escape); local [all...] |
/external/libvncserver/examples/ |
pnmshow.c | 18 FILE* in=stdin; local 26 in=fopen(argv[1],"rb"); 27 if(!in) { 33 fgets(buffer,1024,in); 50 fgets(buffer,1024,in); 57 fgets(buffer,1024,in); 82 fread(rfbScreen->frameBuffer,width*bitsPerPixelInFile/8,height,in); 83 fclose(in);
|
/external/llvm/examples/BrainF/ |
BrainFDriver.cpp | 14 // with the head starting in the middle. 54 JIT("jit", cl::desc("Run program Just-In-Time")); 116 std::istream *in = &std::cin; local 118 in = new std::ifstream(InputFilename.c_str()); 127 std::unique_ptr<Module> Mod(bf.parse(in, 65536, cf, Context)); // 64 KiB 128 if (in != &std::cin) 129 delete in;
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/ |
RangeDecoderFromBuffer.java | 28 public void prepareInputBuffer(DataInputStream in, int len) 33 if (in.readUnsignedByte() != 0x00) 36 code = in.readInt(); 41 in.readFully(buf, 0, end);
|
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/ |
UrlConnection.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 64 InputStream in = urlConnection.getInputStream(); local 66 in = new GZIPInputStream(in); 69 long total = readAllAndClose(in); 73 System.out.println(String.format("Transferred % 8d bytes in %4d ms",
|
/external/opencv3/3rdparty/libjasper/ |
jpc_mqdec.h | 20 * files (the "Software"), to deal in the Software without restriction, 27 * includes the disclaimer below) shall be included in all copies or 39 * PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO 42 * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, 43 * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION 52 * IS NOT FAULT-TOLERANT AND IS NOT INTENDED FOR USE IN MISSION-CRITICAL 53 * SYSTEMS, SUCH AS THOSE USED IN THE OPERATION OF NUCLEAR FACILITIES, 55 * SYSTEMS, DIRECT LIFE SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH 109 jas_stream_t *in; member in struct:__anon20907 124 jpc_mqdec_t *jpc_mqdec_create(int maxctxs, jas_stream_t *in); [all...] |
/external/slf4j/slf4j-jdk14/src/test/java/org/slf4j/issue/ |
LoggerSerializationTest.java | 7 * "Software"), to deal in the Software without restriction, including 14 * included in all copies or substantial portions of the Software. 19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 20 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 21 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 22 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 75 ObjectInputStream in = new ObjectInputStream(is); local 76 LoggerHolder lh2 = (LoggerHolder) in.readObject();
|
/external/squashfs-tools/kernel/fs/squashfs/ |
block.c | 12 * This program is distributed in the hope that it will be useful, 43 * Read the metadata block length, this is stored in the first two 76 * if a datablock is being read (the size is stored elsewhere in the 78 * the metadata block. A bit in the length field indicates if the block 79 * is stored uncompressed in the filesystem (usually because compression 231 int i, in, pg_offset = 0; local 240 in = min(bytes, msblk->devblksize - offset); 241 bytes -= in; 242 while (in) { 247 avail = min_t(int, in, PAGE_CACHE_SIZE [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
filterbanks_unittest.cc | 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. 78 int16_t in[kSamples]; local 98 in[i] = WEBRTC_SPL_WORD32_MAX / (i + 1); 101 WebRtcIsacfix_HighpassFilterFixDec32(in, kSamples, 105 EXPECT_EQ(out[i], in[i]);
|
/external/webrtc/webrtc/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 75 int16_t *in = mBuffer.i16; local 84 // out[outputIndex++] += vr * in[inputIndex*2]; 103 in = mBuffer.i16; 108 advance(&left, in[inputIndex*2]); 109 advance(&right, in[inputIndex*2+1]); 142 int16_t *in = mBuffer.i16; local 172 in = mBuffer.i16; 176 advance(&left, in[inputIndex]) [all...] |
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/ |
SOAPParser.java | 51 public SOAPParser(InputStream in) 56 XMLParser parser = new XMLParser(in); 59 in.close(); 116 <xsd:documentation>When the mobile device receives this command, it launches its default browser to the URI contained in this element. The URI must use HTTPS as the protocol and must contain an FQDN.</xsd:documentation> 131 <xsd:documentation>The issuer name of an acceptable provider-issued certificate. The text of this element is formatted in accordance with the Issuer Name field in RFC-3280. This element is present only when acceptProviderCerts is true.</xsd:documentation> 149 <xsd:documentation>When this boolean is true, X509v3 certificates issued by providers identified in the providerIssuerName child element(s) are acceptable for mobile device authentication.</xsd:documentation> 157 <xsd:documentation>Command to mobile to upload the MO named in the moURN attribute to the SPP server.</xsd:documentation> 165 <xsd:documentation>Element to allow the addition of new commands in the future.</xsd:documentation> 174 <xsd:documentation>This command causes an management object in the mobile devices management tree at the specified location to be added. If there is already a m (…) [all...] |
/frameworks/compile/mclinker/lib/Script/ |
Assignment.cpp | 133 SectionMap::Output::reference in = script.sectionMap().back()->back(); local 135 if (in->dotAssignments().empty()) { 138 in->getSection()->getSectionData()->front()); 141 in->dotAssignments().push_back( 145 Assignment& prevDotAssign = in->dotAssignments().back().second; 158 in->dotAssignments().push_back(std::make_pair( 159 in->getSection()->getSectionData()->front().getNextNode(), *this));
|
/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 33 native void nativeMono(String cacheDir, int X, int Y, Bitmap in, Bitmap out); 44 ImageView in = (ImageView) findViewById(R.id.displayin); local 45 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/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/ojluni/src/main/java/sun/net/ |
NetProperties.java | 9 * by Oracle in the LICENSE file that accompanied this code. 11 * This code is distributed in the hope that it will be useful, but WITHOUT 14 * version 2 for more details (a copy is included in the LICENSE file that 57 * the file is in jre/lib/net.properties 68 InputStream in = new FileInputStream(fname); local 69 BufferedInputStream bin = new BufferedInputStream(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);
|
/system/security/keystore/ |
blob.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 155 int in = TEMP_FAILURE_RETRY(open(filename, O_RDONLY)); local 156 if (in < 0) { 159 // fileLength may be less than sizeof(mBlob) since the in 162 size_t fileLength = readFully(in, (uint8_t*)&mBlob, sizeof(mBlob)); 163 if (close(in) != 0) {
|