HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 426 - 450 of 3164) sorted by null

<<11121314151617181920>>

  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
GeneralizedTimeTest.java 
ImplicitTest.java 
IntegerTest.java 
UTCTimeTest.java 
  /external/apache-http/src/org/apache/http/impl/conn/
LoggingSessionInputBuffer.java 
  /external/apache-http/src/org/apache/http/impl/io/
ContentLengthInputStream.java 
  /external/boringssl/src/crypto/cipher/
aead_test.cc 
  /external/curl/lib/
if2ip.c 
  /external/elfutils/libebl/
eblobjnote.c 
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
ReserializingTestCollectionGenerator.java 
  /external/guava/guava-tests/test/com/google/common/io/
TestInputStream.java 
  /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/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:__anon21745
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));

Completed in 462 milliseconds

<<11121314151617181920>>