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

<<41424344454647484950>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_bugzilla/org/eclipse/releng/services/bugzilla/
UpdateBugStateTask.java 572 private HttpsURLConnection getConn(String url, String method, boolean in, boolean out, String cookie)
615 sconn.setDoInput(in);
651 BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream())); local
653 while ((tmp = in.readLine()) != EMPTY && tmp != null)
658 in.close();
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessorST.java 106 // create an identically named artive in outdir/lib [the stream is
107 // closed in the archive end event handler]:
123 // create a temp file in the same dir [moved into the original one
124 // in the archive end event handler]:
150 public final void handleArchiveEntry (final JarInputStream in, final ZipEntry entry)
172 // files represent the same class; in the future I might use a more
186 // in 'copy' mode
194 // run, skip duplicates in copy mode:
199 // BUG_SF989071: using outFile here instead resulted in
219 readZipEntry (in, entry)
960 InputStream in = null; local
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/cldr/
CheckSystemFonts.java 93 BufferedReader in = BagFormatter.openUTF8Reader(outputDirectoryName, "skip_fonts.txt"); local
95 String line = in.readLine();
102 in.close();
  /external/jetty/src/java/org/eclipse/jetty/servlet/
DefaultServlet.java 94 * but have index.jsp in your welcome file list.
303 * In the case where the DefaultServlet is deployed on the HttpService it is likely that
635 * Finds a matching welcome file for the supplied {@link Resource}. This will be the first entry in the list of
642 * @return The path of the matching welcome file in context or null.
993 InputStream in=resource.getInputStream(); local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
AnalysisAdapter.java 10 private Hashtable<Node,Object> in; field in class:AnalysisAdapter
15 if(this.in == null)
20 return this.in.get(node);
25 if(this.in == null)
27 this.in = new Hashtable<Node,Object>(1);
32 this.in.put(node, o);
36 this.in.remove(node);
  /external/nist-sip/java/gov/nist/javax/sip/
SipStackImpl.java 7 * employees are not subject to copyright protection in the United States
8 * and are considered to be in the public domain. As a result, a formal
76 * {@link javax.sip.SipStack} ). In addition to these, the following are
77 * meaningful properties for the NIST SIP stack (specify these in the property
85 * </b> This property is used by the built in log4j based logger. You can use
88 * logged in SERVER_LOG. If you set this to 32 and specify a DEBUG_LOG then vast
89 * amounts of trace information will be dumped in to the specified DEBUG_LOG.
101 * </code> allows you to now control logging in the stack entirely using log4j
121 * Otherwise messages are logged in a format that can later be viewed using the
122 * trace viewer application which is located in the tools/tracesviewe
1004 InputStream in = getClass().getResourceAsStream("\/TIMESTAMP"); local
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
HttpOverSpdyTest.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
252 InputStream in = connection.getInputStream(); local
253 assertEquals("ABC", readAscii(in, 3));
254 assertEquals(-1, in.read());
255 assertEquals(-1, in.read());
290 * arrive in time.
421 private String readAscii(InputStream in, int count) throws IOException {
424 int value = in.read();
426 in.close()
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowIntent.java 626 public void readFromParcel(Parcel in) {
627 setAction(in.readString());
628 if (in.readInt() == 1) {
629 data = Uri.CREATOR.createFromParcel(in);
631 type = in.readString();
632 flags = in.readInt();
633 packageName = in.readString();
634 componentName = ComponentName.readFromParcel(in);
635 int N = in.readInt();
637 categories.add(in.readString().intern())
    [all...]
  /frameworks/base/core/java/android/view/
Display.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
44 * The display area is described in two different ways.
59 * such as the built-in screen or an external monitor. The contents of a logical
94 * The default Display id, which is the id of the built-in primary display
106 * that is stored in protected graphics buffers.
117 * in protected graphics buffers may not be composited.
144 * by applications from appearing in screenshots or from being viewed
214 * Display type: Built-in display.
265 * Display state: The display is dozing in a low power state; it is stil
    [all...]
  /frameworks/base/core/java/com/android/internal/backup/
LocalTransport.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
166 Log.w(TAG, "Unable to stat input file in performBackup() on "
174 // Each 'record' in the restore set is kept in its own file, named by
177 // in this update.
209 Log.w(TAG, "Unable to stat input file in performBackup() on "
295 Log.w(TAG, "Exception caught in tearDownFullBackup()", e);
335 Log.e(TAG, "Attempt to initiate full backup while one is in progress");
343 // We know a priori that we run in the system process, so we need to mak
545 FileInputStream in = new FileInputStream(f); local
    [all...]
  /frameworks/base/services/usage/java/com/android/server/usage/
UsageStatsDatabase.java 5 * use this file except in compliance with the License. You may obtain a copy
10 * Unless required by applicable law or agreed to in writing, software
95 // Delete files that are in the future.
107 // Remove in a separate loop because any accesses (valueAt)
108 // will cause a gc in the SparseArray and mess up the order.
122 * for all {@link IntervalStats} that haven't been checked-in.
124 * an exception, the check-in will be aborted.
126 * @param checkinAction The callback to run when checking-in {@link IntervalStats}.
127 * @return true if the check-in succeeded.
135 // We may have holes in the checkin (if there was an error
619 DataInputStream in = new DataInputStream(new ByteArrayInputStream(payload)); local
726 DataInputStream in = new DataInputStream(bais); local
    [all...]
  /libcore/dalvik/src/test/java/dalvik/system/profiler/
SamplingProfilerTest.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
121 // should have nothing in the thread history to start
192 // visible in the current sample, but it will be visible in a
287 InputStream in = new ByteArrayInputStream(bytes); local
288 BinaryHprofReader reader = new BinaryHprofReader(in);
291 in.close();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationStressTest1.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
118 private void readObject(java.io.ObjectInputStream in)
121 in.readObject();
143 public void readObject(java.io.ObjectInputStream in)
146 in.readObject();
156 // This one tests if field names are serialized in the same way (sorting)
178 private void readObject(java.io.ObjectInputStream in)
181 in.defaultReadObject();
278 // A primitive instance variable exposes a bug in the serializatio
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetDecoderTest.java 5 * (the "License"); you may not use this file except in compliance with
10 * Unless required by applicable law or agreed to in writing, software
218 ByteBuffer in = getByteBuffer(); local
219 out = decoder.decode(in);
226 in = getByteBuffer().asReadOnlyBuffer();
227 out = decoder.decode(in);
237 ByteBuffer in; local
243 in = getMalformedByteBuffer();
244 if (in != null) {
246 CharBuffer buffer = decoder.decode(in);
573 ByteBuffer in = ByteBuffer.wrap(new byte[] { 12, 12 }); local
601 ByteBuffer in = ByteBuffer.wrap(new byte[] { 98, 98 }); local
635 ByteBuffer in = getByteBuffer(); local
667 ByteBuffer in = ByteBuffer.wrap(new byte[] { 98, 98 }); local
707 ByteBuffer in = ByteBuffer.wrap(new byte[] { 98, 98 }); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyStore2Test.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
478 InputStream in = new ByteArrayInputStream(keyStore); local
479 keyTest.load(in, pssWord);
480 in.close();
487 in = new ByteArrayInputStream(keyStore);
488 keyTest.load(in, null);
489 in.close();
    [all...]
  /libcore/ojluni/src/main/java/java/util/logging/
LogManager.java 10 * by Oracle in the LICENSE file that accompanied this code.
12 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * version 2 for more details (a copy is included in the LICENSE file that
46 * named Loggers are stored in this namespace.
60 * a properties file "lib/logging.properties" in the JRE directory.
64 * In addition, the LogManager uses two optional system properties that
77 * is responsible for reading in the initial configuration. (That object
80 * to define properties in the LogManager.
84 * to specify a properties file (in java.util.Properties format). The
89 * a properties file "lib/logging.properties" in the JRE directory
1071 InputStream in; local
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
VoicemailProviderTest.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
123 InputStream in = mResolver.openInputStream(uri); local
125 int numBytesRead = in.read(inBuffer);
129 assertEquals(-1, in.read(inBuffer));
130 in.close();
  /platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
AuptTestCase.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
231 BufferedReader in = null; local
233 in = new BufferedReader(new InputStreamReader(new FileInputStream(trackFile)));
234 String processes = in.readLine();
235 in.close();
278 * @return passed in parameter or default value if parameter is not found.
291 * @return time in milliseconds
300 * @return time in milliseconds.
307 * Press back button repeatedly in order to attempt to bring the app back to home screen
    [all...]
  /art/test/004-ThreadStress/src/
Main.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
120 private final static int ALLOC_SIZE = 1024; // Needs to be small enough to not be in LOS.
270 private static Map<Operation, Double> updateFrequencyMap(Map<Operation, Double> in,
308 if (in == null) {
309 in = new HashMap<Operation, Double>();
311 in.put(op, d);
313 return in;
413 // Fill in the Operation[] array for each thread by laying
505 // up threads in Operation.WAI
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter_bridge/
ebtables.h 135 char in[IFNAMSIZ]; member in struct:ebt_entry
  /build/core/
product.mk 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
19 # PRODUCT_MAKEFILES is set up in AndroidProducts.mks.
26 # Search for AndroidProducts.mks in the given dir.
28 define _search-android-products-files-in-dir
40 $(foreach d, device vendor product,$(call _search-android-products-files-in-dir,$(d))) \
46 # variables set in the given AndroidProducts.mk files.
64 # variables set in all AndroidProducts.mk files.
146 # 2. Records the inheritance in the .INHERITS_FROM variable
147 # 3. Records that we've visited this node, in ALL_PRODUCT
    [all...]
  /cts/tests/tests/mediastress/preconditions/src/android/mediastress/cts/preconditions/
MediaPreparer.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
71 * The message printed when the maximum video playback resolution cannot be found in the
97 * These depend on the device's mount point, which is retrieved in the MediaPreparer's run
116 * provided in the arguments
129 * Returns the maximum video playback resolution of the device, in the form of a Dimension
132 * maximum video playback resolution, and is rounded down to the nearest dimension in the
144 // could not find resolution in dumpsysOutput, return largest max playback resolution
159 // dimensions in dumpsys output seem consistently reversed
193 * directory containing 'bbb_short' and 'bbb_full' directories, as it is defined in it
231 InputStream in = conn.getInputStream(); local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.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
565 ByteArray.MyDataInputStream in = bytes.makeDataInputStream(); local
570 int startPc = in.readUnsignedShort();
571 int length = in.readUnsignedShort();
572 int nameIdx = in.readUnsignedShort();
573 int typeIdx = in.readUnsignedShort();
574 int index = in.readUnsignedShort();
  /development/ndk/platforms/android-21/include/linux/netfilter_bridge/
ebtables.h 137 char in[IFNAMSIZ]; member in struct:ebt_entry
  /device/asus/fugu/libaudio/
audio_hal_thunks.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
447 struct atv_stream_in *in = NULL; local
451 in = reinterpret_cast<struct atv_stream_in*>(
453 if (!in) {
458 in->stream.common.get_sample_rate = in_get_sample_rate;
459 in->stream.common.set_sample_rate = in_set_sample_rate;
460 in->stream.common.get_buffer_size = in_get_buffer_size;
461 in->stream.common.get_channels = in_get_channels;
462 in->stream.common.get_format = in_get_format
    [all...]

Completed in 5522 milliseconds

<<41424344454647484950>>