/cts/tests/tests/openglperf/src/android/openglperf/cts/ |
PlanetsRenderer.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 * whether to use Vertex Buffer Object in rendering or not 350 InputStream in = null; local 352 in = mContext.getAssets().open(TEXTURE_FILE); 353 Bitmap bitmap = BitmapFactory.decodeStream(in); 372 if (in != null) 374 in.close(); 434 Log.i(TAG, description + " time in secs: " + timePassedInSecs);
|
/external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/antlr3-src/org/apache/tools/ant/antlr/ |
ANTLR3.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 112 /** put tags at start/stop of all templates in output */ 375 * <p>Doesn't work for archives in JDK 1.1 as the URL returned by 399 log("Couldn\'t find resource " + resource + " for library " + msg + " in external classpath", Project.MSG_VERBOSE); 406 * stringtemplate-*.jar files in the lib directory and add them 645 log("Antlr libraries not found in external classpath or embedded classpath statement ", Project.MSG_ERR); 664 BufferedReader in = null; local 666 in = new BufferedReader(new FileReader(f)); 669 if (in != null) [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
RemoteDebugEventSocketListener.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 48 BufferedReader in; field in class:RemoteDebugEventSocketListener 174 event = in.readLine(); 178 event = in.readLine(); 200 in = new BufferedReader(isr) [all...] |
/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 168 Log.w(TAG, "Unable to stat input file in performBackup() on " 176 // Each 'record' in the restore set is kept in its own file, named by 179 // in this update. 211 Log.w(TAG, "Unable to stat input file in performBackup() on " 295 Log.w(TAG, "Exception caught in tearDownFullBackup()", e); 317 Log.e(TAG, "Attempt to initiate full backup while one is in progress"); 325 // We know a priori that we run in the system process, so we need to mak 499 FileInputStream in = new FileInputStream(f); 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...] |
/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. 159 // BOMs in UTF-16(BE|LE) and UTF-32(BE|LE) 198 // Strings in legacy encodings that are valid in UTF-8, but 199 // are invalid as UTF-8 in real data. 216 // "abc" with U+201[CD] in windows-125[0-8] 220 // U+0639 U+064E U+0644 U+064E in ISO-8859-6 224 // U+03B3 U+03B5 U+03B9 U+03AC in ISO-8859-7 354 // BOMs in UTF-16(BE|LE) and UTF-32(BE|LE) 366 // Strings in legacy encodings. We can certainly make up string 735 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 | 104 specify "GENCCODE_ASSEMBLY=-a name" in the specific config/mh-* file, 105 where the name is the compiler or platform that you used in this 266 FileStream *in, *out; local 269 in=T_FileStream_open(filename, "rb"); 270 if(in==NULL) { 296 /* turn dashes or dots in the entry name into underscores */ 311 length=T_FileStream_read(in, buffer, sizeof(buffer)); 333 if(T_FileStream_error(in)) { 344 T_FileStream_close(in); 351 FileStream *in, *out local 666 FileStream *in; local 773 FileStream *in, *out; local [all...] |