/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/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 273 InputStream in = connection.getInputStream(); local 274 assertEquals("ABC", readAscii(in, 3)); 275 assertEquals(-1, in.read()); 276 assertEquals(-1, in.read()); 315 * arrive in time. 443 private String readAscii(InputStream in, int count) throws IOException { 446 int value = in.read(); 448 in.close() [all...] |
/external/robolectric/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/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 " 293 Log.w(TAG, "Exception caught in tearDownFullBackup()", e); 315 Log.e(TAG, "Attempt to initiate full backup while one is in progress"); 323 // We know a priori that we run in the system process, so we need to mak 497 FileInputStream in = new FileInputStream(f); local [all...] |
/frameworks/testing/uiautomator_test_libraries/src/com/android/uiautomator/platform/ |
JankTestBase.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 53 /* can be used to enable/disable systrace in the test */ 78 /* Array to record jankiness data in each test iteration */ 80 /* Array to record frame rate in each test iteration */ 82 /* Array to save max accumulated frame number in each test iteration */ 126 InputStream in = null; local 133 in = p.getInputStream(); 136 while ((n = in.read(buffer)) != -1) { 140 in.close() [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/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/ |
JarFileTest.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 252 * Note only (and all of) the following should be contained in the file 296 assertEquals("Error in returned entry", 311, jarFile.getEntry( 333 assertEquals("Error in returned entry", 311, jarFile.getJarEntry( 369 assertEquals("Error in returned entry", 311, jarFile.getEntry( 374 // test all signed jars in the /Testres/Internal/SignedJars directory 478 // this is used to create jarName3 used in the previous test 549 InputStream in = jar.getInputStream(entry); local 550 in.read() 558 InputStream in = jar.getInputStream(entry); local 571 InputStream in = jar.getInputStream(entry); local 592 InputStream in = jar.getInputStream(entry); local 830 InputStream in = jarFile.getInputStream(zipEntry); local 960 InputStream in = jf.getInputStream(new JarEntry("invalid")); 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...] |
/packages/apps/OMA-DM/DMService/src/com/android/omadm/service/ |
DMIntentReceiver.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 218 // if current state is already "session in progress" - ignore new message; 221 loge("current state is 'Session-in-Progress', ignoring new message."); 245 loge("handleWapPushIntent(): error in parseAndSaveWapPushMessage()"); 275 // in case if required. It may happened only once during first boot. 351 // session in progress; doing nothing. 352 logd("Time alert: session in progress; doing nothing."); 434 logd("handleApnStateActive(): session in progress; doing nothing."); 461 // check and repost notification in case user cancels i 843 FileInputStream in = new FileInputStream(DMHelper.POSTPONED_DATA_PATH); local [all...] |
/bionic/libc/kernel/uapi/linux/netfilter_bridge/ |
ebtables.h | 137 char in[IFNAMSIZ]; member in struct:ebt_entry
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
TestLgamma.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 38 public float in; field in class:TestLgamma.ArgumentsFloatFloat 43 Allocation in = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xe748c67429cab138l, false); local 46 script.forEach_testLgammaFloatFloat(in, out); 47 verifyResultsLgammaFloatFloat(in, out, false); 53 scriptRelaxed.forEach_testLgammaFloatFloat(in, out); 54 verifyResultsLgammaFloatFloat(in, out, true); 60 private void verifyResultsLgammaFloatFloat(Allocation in, Allocation out, boolean relaxed) { 62 in.copyTo(arrayIn) 102 Allocation in = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0x7ca07efd8a327894l, false); local 161 Allocation in = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 3, 0x7ca0899ee9390e2el, false); local 220 Allocation in = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 4, 0x7ca09440483fa3c8l, false); 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-L/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 426 struct atv_stream_in *in = NULL; local 430 in = reinterpret_cast<struct atv_stream_in*>( 432 if (!in) { 437 in->stream.common.get_sample_rate = in_get_sample_rate; 438 in->stream.common.set_sample_rate = in_set_sample_rate; 439 in->stream.common.get_buffer_size = in_get_buffer_size; 440 in->stream.common.get_channels = in_get_channels; 441 in->stream.common.get_format = in_get_format [all...] |
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3string.c | 8 // http://www.linkedin.com/in/jimidle 12 // Redistribution and use in source and binary forms, with or without 17 // 2. Redistributions in binary form must reproduce the above copyright 18 // notice, this list of conditions and the following disclaimer in the 26 // IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 30 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 31 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 125 // UTF16 and 8Bit if I am going to support those encodings in the STRING stuff. 197 /* Structure is allocated, now fill in the API etc. 226 /* Structure is allocated, now fill in the API etc 616 pANTLR3_UINT16 in; local 846 pANTLR3_UINT16 in; local 922 pANTLR3_UINT16 in; local 1099 pANTLR3_UINT16 in; local [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
Interpreter.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 132 CharStream in = (CharStream)this.input; local 133 //System.out.println("scan("+startRule+",'"+in.substring(in.index(),in.size()-1)+"')") [all...] |
/external/chromium_org/base/strings/ |
string_util_unittest.cc | 3 // found in the LICENSE file. 158 // BOMs in UTF-16(BE|LE) and UTF-32(BE|LE) 197 // Strings in legacy encodings that are valid in UTF-8, but 198 // are invalid as UTF-8 in real data. 215 // "abc" with U+201[CD] in windows-125[0-8] 219 // U+0639 U+064E U+0644 U+064E in ISO-8859-6 223 // U+03B3 U+03B5 U+03B9 U+03AC in ISO-8859-7 353 // BOMs in UTF-16(BE|LE) and UTF-32(BE|LE) 365 // Strings in legacy encodings. We can certainly make up string 734 std::vector<std::string> in; local [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
FEConvolveMatrix.cpp | 14 * This library is distributed in the hope that it will be useful, 179 The image rectangle is split in the following way: 207 The regions in this case are the following: 221 to handle pixels outside of the image. In a rare situations, when 225 Although these two functions have lot in common, I decided not to make 255 // Incorrectly diagnosing overwrite of stack in |totals| due to |preserveAlphaValues|. 405 // function, which defined in this C++ source file as well 429 FilterEffect* in = inputEffect(0); local 439 IntRect effectDrawingRect = requestedRegionOfInputImageData(in->absolutePaintRect()); 443 srcPixelArray = in->asUnmultipliedImage(effectDrawingRect) [all...] |
FELighting.cpp | 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 18 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL UNIVERSITY OF SZEGED OR 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 415 FilterEffect* in = inputEffect(0); local 423 IntRect effectDrawingRect = requestedRegionOfInputImageData(in->absolutePaintRect()); 424 in->copyPremultipliedImage(srcPixelArray, effectDrawingRect);
|
/external/chromium_org/third_party/icu/source/tools/toolutil/ |
pkg_genc.c | 108 specify "GENCCODE_ASSEMBLY=-a name" in the specific config/mh-* file, 109 where the name is the compiler or platform that you used in this 251 FileStream *in, *out; local 254 in=T_FileStream_open(filename, "rb"); 255 if(in==NULL) { 281 /* turn dashes or dots in the entry name into underscores */ 296 length=T_FileStream_read(in, buffer, sizeof(buffer)); 318 if(T_FileStream_error(in)) { 329 T_FileStream_close(in); 336 FileStream *in, *out local 645 FileStream *in; local 752 FileStream *in, *out; local [all...] |