HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 251 - 275 of 2162) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1OctetString.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
61 @Override public Object decode(BerInputStream in) throws IOException {
62 in.readOctetString();
64 if (in.isVerify) {
67 return getDecodedObject(in);
75 @Override public Object getDecodedObject(BerInputStream in) throws IOException {
76 return Arrays.copyOfRange(in.buffer, in.contentOffset, in.contentOffset + in.length)
    [all...]
ASN1Sequence.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
39 public Object decode(BerInputStream in) throws IOException {
40 in.readSequence(this);
42 if (in.isVerify) {
45 return getDecodedObject(in);
ASN1SequenceOf.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
39 public Object decode(BerInputStream in) throws IOException {
40 in.readSequenceOf(this);
42 if (in.isVerify) {
45 return getDecodedObject(in);
ASN1Set.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
39 public Object decode(BerInputStream in) throws IOException {
40 in.readSet(this);
42 if(in.isVerify){
45 return getDecodedObject(in);
ASN1SetOf.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
39 public Object decode(BerInputStream in) throws IOException {
40 in.readSetOf(this);
42 if (in.isVerify) {
45 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
30 // returns "en_US.UTF-8". bionic before L returned NULL and in L returns "C.UTF-8", both
53 ObjectInputStream in = new ObjectInputStream(new ByteArrayInputStream(bytes)); local
54 DecimalFormatSymbols deserializedDfs = (DecimalFormatSymbols) in.readObject();
55 assertEquals(-1, in.read());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
hash.cpp 23 // handle all next_prime(i) for i in [1, 210), special case 0
138 // some potential prime numbers are not prime. In an ideal world, all potential
183 // If n is small enough, search in small_primes
189 // Start searching list of potential primes: L * k0 + indices[in]
194 size_t in = static_cast<size_t>(std::lower_bound(indices, indices + M, n - k0 * L) local
196 n = L * k0 + indices[in];
201 // 2. The i > sqrt(n), in which case n is prime.
561 if (++in == M)
564 in = 0;
566 n = L * k0 + indices[in];
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
CopyUtils.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
53 * let you specify the buffer size because in modern VMs the impact on speed
58 * to the <code>copy</code> methods in <code>Buffered*</code> streams. For
61 * copy( new BufferedInputStream( in ), new BufferedOutputStream( out ) );
66 * would usually suggest wrapping in a BufferedInputStream. The
109 * @deprecated Use IOUtils. Will be removed in 2.0.
111 * Null handling behaviour changed in IOUtils (null data does not
123 * Instances should NOT be constructed in standard programming.
135 * @throws IOException In case of an I/O proble
156 ByteArrayInputStream in = new ByteArrayInputStream(input); local
176 ByteArrayInputStream in = new ByteArrayInputStream(input); local
248 InputStreamReader in = new InputStreamReader(input); local
267 InputStreamReader in = new InputStreamReader(input, encoding); local
310 StringReader in = new StringReader(input); local
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
AutoCloseInputStream.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 * closed, so any allocated in-memory buffers can be freed even if the
42 * @param in underlying input stream
44 public AutoCloseInputStream(InputStream in) {
45 super(in);
62 in.close();
63 in = new ClosedInputStream();
71 * @return next byte in the stream, or -1 if no more bytes are available
75 int n = in.read()
    [all...]
  /system/core/libsparse/
img2simg.c 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
48 int in; local
70 in = STDIN_FILENO;
72 in = open(argv[1], O_RDONLY | O_BINARY);
73 if (in < 0) {
89 len = lseek64(in, 0, SEEK_END);
90 lseek64(in, 0, SEEK_SET);
99 ret = sparse_file_read(s, in, false, false);
111 close(in);
    [all...]
simg2simg.c 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
44 int in; local
61 in = open(argv[1], O_RDONLY | O_BINARY);
62 if (in < 0) {
67 s = sparse_file_import(in, true, false);
112 close(in);
  /cts/common/host-side/java-scanner/src/com/android/compatibility/common/scanner/
JavaScanner.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
76 final BufferedReader in = new BufferedReader(new InputStreamReader(p.getInputStream())); local
79 while ((line = in.readLine()) != null) {
87 if (in != null) {
88 in.close();
129 // efficient than doing a check in each iteration of the loop.
  /cts/common/host-side/xml-plan-generator/tests/src/com/android/compatibility/common/xmlgenerator/
XmlPlanGeneratorTest.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
110 final Scanner in = new Scanner(p.getInputStream()); local
111 while (in.hasNextLine()) {
112 output.append(in.nextLine());
123 final ByteArrayInputStream in = new ByteArrayInputStream(input.getBytes()); local
124 final HashMap<String, TestSuite> suites = TestListParser.parse(in);
  /cts/hostsidetests/sample/src/android/sample/cts/
SampleHostTest.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
52 * The class name of the main activity in the APK.
129 Scanner in = new Scanner(logs); local
130 while (in.hasNextLine()) {
131 String line = in.nextLine();
136 in.close();
  /cts/tests/tests/security/src/android/security/cts/
HwRngTest.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
69 * Asserts that the {@code /dev/hw_random} device is configured in an acceptable way or is not
80 // In short, assert that:
82 // 2. a driver is selected in the hrwng framework, and
98 // 2. Assert that a driver is selected in the hrwng framework.
119 InputStream in = null; local
121 in = new FileInputStream(file);
122 return new String(readyFully(in), "US-ASCII");
124 closeSilently(in);
144 BufferedReader in = null; local
    [all...]
  /development/tools/idegen/src/
Configuration.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
59 throw new AssertionError("Not in root directory.");
101 // Look for user-specific excluded-paths file in current directory.
120 * source roots in our generated source directory (specifically,
176 * if the file doesn't have a package or if the file isn't in the
204 BufferedReader in = new BufferedReader(new FileReader(file)); local
207 while ((line = in.readLine()) != null) {
212 // line ends in a ";".
219 in.close()
254 BufferedReader in = new BufferedReader(new FileReader(file)); local
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
ImageFactory.java 44 final InputStream in = loader.getResourceAsStream(name); local
45 final byte[] data = new byte[in.available()];
46 in.read(data);
47 in.close();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
ClassFileVersionTest.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
84 DataInputStream in = new DataInputStream(new FileInputStream( local
86 int magic = in.readInt();
90 expectedMinorVersion = in.readUnsignedShort();
91 expectedMajorVersion = in.readUnsignedShort();
92 in.close();
94 printErrorAndFail(thisCommandName + "has error in reading target class file!");
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
SequenceTest.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
79 protected Object getDecodedObject(BerInputStream in)
81 Object[] values = (Object[]) in.content;
149 DerInputStream in = new DerInputStream((byte[]) testcases[i][1]); local
151 .decode(in));
178 protected Object getDecodedObject(BerInputStream in)
186 DerInputStream in = new DerInputStream((byte[]) testcases[i][1]); local
187 in.setVerify();
188 seqVerify.decode(in);
    [all...]
  /external/emma/core/java12/com/vladium/util/
Files.java 43 BufferedReader in = null; local
46 in = new BufferedReader (new FileReader (atfile), 8 * 1024); // uses default encoding
49 for (String line; (line = in.readLine ()) != null; )
59 if (in != null) try { in.close (); } catch (Exception ignore) {}
83 * Note that duplicate removal in classpaths affects ClassLoader.getResources().
86 * necessary for reproducing its behavior in Sun-compatible JVMs.
292 * A slightly stricter version of File.createTempFile() in J2SDK 1.3: it requires
301 * guarantees do not hold if files are created in the same directory outside
311 * @return writeable temp file descriptor [incorporates 'parentDir' in its pathname
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableClassToInstanceMapTest.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
74 Map<Class<?>, Object> in = Collections.emptyMap(); local
75 ClassToInstanceMap<Object> map = ImmutableClassToInstanceMap.copyOf(in);
82 Map<Class<? extends Number>, Number> in = Maps.newHashMap(); local
83 in.put(Number.class, 0);
84 in.put(Double.class, Math.PI);
85 ClassToInstanceMap<Number> map = ImmutableClassToInstanceMap.copyOf(in);
116 Map<Class<?>, Object> in = Collections.emptyMap(); local
117 ClassToInstanceMap<Object> map = ImmutableClassToInstanceMap.copyOf(in);
122 ImmutableMap<Class<? extends Number>, ? extends Number> in local
    [all...]
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
IoUtil.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
41 InputStream in = new FileInputStream(from); local
45 pipe(in, out, buf);
50 in.close();
84 // treat them again and write them in output, wenn they not are empty directories
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
MetadataManager.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
36 * additional data files such as PhoneNumberAlternateFormats, but in the future it is envisaged it
64 private static void close(InputStream in) {
65 if (in != null) {
67 in.close();
77 ObjectInputStream in = null; local
79 in = new ObjectInputStream(source);
81 alternateFormats.readExternal(in);
88 close(in);
107 ObjectInputStream in = null; local
    [all...]
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/prefixmapper/
PrefixFileReader.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
39 // prefix mapping file is available in the file system, so that a file can be loaded when needed.
54 ObjectInputStream in = null; local
56 in = new ObjectInputStream(source);
57 mappingFileProvider.readExternal(in);
61 close(in);
80 ObjectInputStream in = null; local
82 in = new ObjectInputStream(source);
84 map.readExternal(in);
    [all...]
  /external/mockito/src/org/mockito/internal/configuration/
ClassPathLoader.java 21 * Loads configuration or extension points available in the classpath.
44 * <br>Suppose you wrote an extension to create mocks with some <em>Awesome</em> library, in order to tell
45 * Mockito to use it you need to put in your classpath
48 * <li>A file named <code>org.mockito.plugins.MockMaker</code> in a folder named
94 * {@link MockMaker} extension exists or is visible in the current classpath.</p>
153 InputStream in = null; local
155 in = resource.openStream();
156 for (String line : readerToLines(new InputStreamReader(in, "UTF-8"))) {
166 closeQuietly(in);
190 private static void closeQuietly(InputStream in) {
    [all...]

Completed in 1413 milliseconds

<<11121314151617181920>>