HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 751 - 775 of 2135) sorted by null

<<31323334353637383940>>

  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/net/
FeedParser.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
35 * where each list element represents a single entry (post) in the XML feed.
42 // Constants indicting XML element names that we're interested in
53 * @param in Atom feed, as a stream.
58 public List<Entry> parse(InputStream in)
63 parser.setInput(in, null);
67 in.close();
97 // article in the feed.
208 * Processes link tags in the feed
    [all...]
  /development/samples/ToyVpn/src/com/example/android/toyvpn/
ToyVpnService.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
96 // In this demo, all we need to know is the server address.
158 // Packets to be sent are queued in this input stream.
159 FileInputStream in = new FileInputStream(mInterface.getFileDescriptor()); local
174 // Assume that we did not make any progress in this iteration.
178 int length = in.read(packet.array());
219 // since everything is operated in non-blocking mode.
258 // and exchange session keys for encryption. To keep things simple in
259 // this demo, we just send the shared secret in plaintext and wai
    [all...]
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/net/
FeedParser.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
35 * where each list element represents a single entry (post) in the XML feed.
42 // Constants indicting XML element names that we're interested in
53 * @param in Atom feed, as a stream.
58 public List<Entry> parse(InputStream in)
63 parser.setInput(in, null);
67 in.close();
97 // article in the feed.
208 * Processes link tags in the feed
    [all...]
  /development/tools/yuv420sp2rgb/
yuv420sp2rgb.c 54 int size, /* buffer size in bytes */
199 void *in, *out; local
240 in = mmap(0, width * height * 3 / 2, PROT_READ, MAP_PRIVATE, ifd, 0);
241 FAILIF(in == MAP_FAILED, "could not mmap input file: %s (%d)\n",
260 color_convert_common(in, in + width * height,
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
TestSuiteFactory.java 6 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
20 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
53 InputStream in = loader.getResourceAsStream(TEMPLATE_FILE); typedefs
54 if ( in == null ) {
57 Reader rd = new InputStreamReader(in);
63 * suite file in the same directory of the grammar file
    [all...]
  /external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.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
49 * returns array of objects to be de/serialized in tests, and the second
57 * should be set to value &quot;serial.reference&quot;. In this mode, no testing
61 * The location of golden files (in both modes) is controlled via
121 * @return array of objects to be de/serialized in tests.
385 * The <code>comparator</code> is searched in the following order: <br>-
388 * has class in its classes hierarchy that overrides <code>equals(Object)</code>
499 * with corresponding object in provided array (i.e. <code>objects[N]</code>)
501 * in object's array.
603 InputStream in = SerializationTest.class.getResourceAsStream(path.toString()); local
661 ByteArrayInputStream in = new ByteArrayInputStream(out.toByteArray()); local
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Configuration.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
105 InputStream in = null; local
114 in = new FileInputStream(iniName);
121 if (in == null) {
125 in = cl.getResourceAsStream(iniName);
130 if (in != null) {
131 load(in, props);
221 static void load(InputStream in, Hashtable<String, String> result) throws IOException {
227 while ((nextChar = in.read()) != -1)
    [all...]
  /external/bison/src/
output.c 13 This program is distributed in the hope that it will be useful,
93 /* Build `NAME_min' and `NAME_max' in the obstack. */ \
233 /* Index of rule R in RHS. */
242 /* Separator in RHS. */
465 YYPACT) so that in states with unresolved conflicts, the default
466 reduction is not used in the conflicted entries, so that there is
470 parser, so we could avoid accidents by not writing them out in
505 FILE *in;
548 /* Some future version of GNU M4 (most likely 1.6) may treat the -dV in a
603 in = fdopen (filter_fd[0], "r")
504 FILE *in; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
BCDHPrivateKey.java 108 * return the encoding format we produce in getEncoded().
193 ObjectInputStream in)
196 in.defaultReadObject();
198 this.dhSpec = new DHParameterSpec((BigInteger)in.readObject(), (BigInteger)in.readObject(), in.readInt());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
BCECPrivateKey.java 268 * return the encoding format we produce in getEncoded().
441 ObjectInputStream in)
444 in.defaultReadObject();
446 byte[] enc = (byte[])in.readObject();
BCECPublicKey.java 436 ObjectInputStream in)
439 in.defaultReadObject();
441 byte[] enc = (byte[])in.readObject();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseWrapCipher.java 349 PrivateKeyInfo in = PrivateKeyInfo.getInstance(encoded); local
351 PrivateKey privKey = BouncyCastleProvider.getPrivateKey(in);
359 throw new InvalidKeyException("algorithm " + in.getPrivateKeyAlgorithm().getAlgorithm() + " not supported");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCEStreamCipher.java 448 PrivateKeyInfo in = PrivateKeyInfo.getInstance(encoded); local
450 PrivateKey privKey = BouncyCastleProvider.getPrivateKey(in);
458 throw new InvalidKeyException("algorithm " + in.getPrivateKeyAlgorithm().getAlgorithm() + " not supported");
  /external/chromium_org/chrome/browser/prefs/
prefs_syncable_service_unittest.cc 3 // found in the LICENSE file.
269 syncer::SyncDataList in; local
271 AddToRemoteDataList(prefs::kHomePage, base::StringValue(kExampleUrl1), &in);
275 AddToRemoteDataList(prefs::kURLsToRestoreOnStartup, urls_to_restore, &in);
278 &in);
279 InitWithSyncDataTakeOutput(in, &out);
304 syncer::SyncDataList in; local
310 &in);
311 InitWithSyncDataTakeOutput(in, &out);
345 syncer::SyncDataList in; local
389 syncer::SyncDataList in; local
440 syncer::SyncDataList in; local
588 syncer::SyncDataList in; local
    [all...]
  /external/chromium_org/chrome/installer/mac/third_party/bsdiff/
goobspatch.c 5 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
23 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
73 /* in and out are the underlying buffers to be used with lzma_stream. */
74 u_char in[BUFSIZ]; member in struct:__anon10341
80 /* read_out points to the first byte in out not yet consumed by an
81 * xzread call. read_out_len tracks the amount of data available in
    [all...]
  /external/chromium_org/content/browser/
byte_stream.cc 3 // found in the LICENSE file.
25 // cleared in an object destructor and accessed to check for object
45 // happen in the context of their SequencedTaskRunner.
79 // All data objects in this class are only valid to access on
162 // Time of last point at which data in stream transitioned from full
290 // Valid contexts in which to call.
457 ByteStreamWriterImpl* in = new ByteStreamWriterImpl( local
462 in->SetPeer(out, output_task_runner, output_flag);
463 out->SetPeer(in, input_task_runner, input_flag);
464 input->reset(in);
    [all...]
  /external/chromium_org/ipc/
ipc_send_fds_test.cc 3 // found in the LICENSE file.
235 IPC::ChannelHandle in_handle("IN");
236 in = IPC::Channel::CreateServer(in_handle, &null_listener_);
238 in->TakeClientFileDescriptor(), false);
245 base::Bind(&PipeChannelHelper::Connect, in.get()));
262 base::Bind(&PipeChannelHelper::DestroyChannel, &in, &a));
283 ASSERT_TRUE(in->Send(message));
287 scoped_ptr<IPC::Channel> in, out; member in class:__anon13112::PipeChannelHelper
302 // in flight at the same time. For more info on the bug, see:
345 // Unless the workaround is in place. With 10000 sends, w
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
host_resolver.cc 3 // found in the LICENSE file.
58 sockaddr_in6* in = local
60 *in = *(sockaddr_in6*)addr;
62 ai->ai_addr = reinterpret_cast<sockaddr*>(in);
63 ai->ai_addrlen = sizeof(*in);
67 sockaddr_in* in = static_cast<sockaddr_in*>(malloc(sizeof(sockaddr_in))); local
68 *in = *(sockaddr_in*)addr;
70 ai->ai_addr = reinterpret_cast<sockaddr*>(in);
71 ai->ai_addrlen = sizeof(*in);
162 // Count number of address in lis
189 sockaddr_in* in = reinterpret_cast<sockaddr_in*>(current->ai_addr); local
288 in_addr in; local
    [all...]
  /external/chromium_org/net/quic/crypto/
cert_compressor.cc 3 // found in the LICENSE file.
21 // in order to help zlib. This was generated via a fairly dumb algorithm from
150 // CertEntry represents a certificate in compressed form. Each entry is one of
151 // the three types enumerated in |Type|.
155 // Type 0 is reserved to mean "end of list" in the wire format.
157 // COMPRESSED means that the certificate is included in the trailing zlib
161 // be replaced by its 64-bit hash (in |hash|).
163 // COMMON means that the certificate is in a common certificate set known
177 // 64-bit, FNV-1a hashes in |client_cached_cert_hashes|.
233 // CertEntriesSize returns the size, in bytes, of the serialised form o
341 StringPiece in = *in_out; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEComponentTransfer.cpp 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
14 * This library is distributed in the hope that it will be useful,
155 FilterEffect* in = inputEffect(0); local
160 RefPtr<Image> image = in->asImageBuffer()->copyImage(DontCopyBackingStore);
168 IntRect destRect = drawingRegionOfInputImage(in->absolutePaintRect());
FEComposite.cpp 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
14 * This library is distributed in the hope that it will be useful,
250 // 'in' has output only in the intersection of both inputs.
254 // 'atop' has output only in the extents of the second input.
293 FilterEffect* in = inputEffect(0); local
301 IntRect effectADrawingRect = requestedRegionOfInputImageData(in->absolutePaintRect());
302 RefPtr<Uint8ClampedArray> srcPixelArray = in->asPremultipliedImage(effectADrawingRect);
316 ImageBuffer* imageBuffer = in->asImageBuffer();
324 filterContext->drawImageBuffer(imageBuffer, drawingRegionOfInputImage(in->absolutePaintRect()))
    [all...]
FEDisplacementMap.cpp 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
14 * This library is distributed in the hope that it will be useful,
102 // and does not apply to the 'in' source image. The 'in' source image must remain in its
104 // The result is in that smae color space because it is a displacement of the 'in' image.
108 void FEDisplacementMap::transformResultColorSpace(FilterEffect* in, const int index)
112 in->transformResultColorSpace(operatingColorSpace());
117 FilterEffect* in = inputEffect(0) local
    [all...]
  /external/chromium_org/third_party/angle/samples/translator/
translator.cpp 4 // found in the LICENSE file.
217 "Where: filename : filename ending in .frag or .vert\n"
223 " -e : emulate certain built-in functions (workaround for driver bugs)\n"
240 // Deduce the shader type from the filename. Files must end in one of the
353 FILE* in = fopen(fileName, "rb"); local
354 if (!in) {
360 fseek(in, 0, SEEK_END);
361 size_t count = ftell(in);
362 rewind(in);
367 // It is there to handle empty files in which case a single empt
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/bytestring/
bytestring_test.c 5 * copyright notice and this permission notice appear in all copies.
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
359 CBS in; local
363 CBS_init(&in, ber, ber_len);
364 if (!CBS_asn1_ber_to_der(&in, &out, &out_len)) {
397 * These parts need to be concatenated in DER form. */
  /external/chromium_org/third_party/boringssl/src/crypto/conf/
conf.c 10 * apply to all code found in this distribution, be it the RC4, RSA,
15 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * If this package is used in a product, Eric Young should be given attribution
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
22 * Redistribution and use in source and binary forms, with or without
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRIC
690 BIO *in = BIO_new_file(filename, "rb"); local
    [all...]

Completed in 962 milliseconds

<<31323334353637383940>>