HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 526 - 550 of 1097) sorted by null

<<21222324252627282930>>

  /external/openssl/crypto/srp/
srp_vfy.c 9 * Redistribution and use in source and binary forms, with or without
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in
24 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
32 * nor may "OpenSSL" appear in their names without prior written
38 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
43 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
50 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
375 BIO *in = BIO_new(BIO_s_file()) local
    [all...]
  /external/glide/third_party/disklrucache/
disklrucache-2.0.2.jar 
  /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...]
  /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...]
ucbuf.c 46 FileStream* in; member in struct:UCHARBUF
53 ucbuf_autodetect_fs(FileStream* in, const char** cp, UConverter** conv, int32_t* signatureLength, UErrorCode* error){
62 numRead=T_FileStream_read(in, start, sizeof(start));
67 T_FileStream_rewind(in);
69 T_FileStream_read(in, start, *signatureLength);
133 FileStream* in=NULL; local
142 in= T_FileStream_open(fileName,"rb");
144 if(in == NULL){
149 if(ucbuf_autodetect_fs(in,cp,conv,signatureLength,error)) {
150 return in;
451 FileStream* in = NULL; local
    [all...]
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_reader.cpp 3 // recognized in your jurisdiction.
57 in( Reader::Char c, Reader::Char c1, Reader::Char c2, Reader::Char c3, Reader::Char c4 ) function in namespace:Json
63 in( Reader::Char c, Reader::Char c1, Reader::Char c2, Reader::Char c3, Reader::Char c4, Reader::Char c5 ) function in namespace:Json
173 // Set error location to start of doc, ideally should be first token found in doc
449 !in( *current_, '.', 'e', 'E', '+', '-' ) )
513 return addErrorAndRecover( "Missing ',' or '}' in object declaration",
552 // Accept Comment after last item in the array.
562 return addErrorAndRecover( "Missing ',' or ']' in array declaration",
580 || in( *inspect, '.', 'e', 'E', '+' )
606 // c) it's small enough to fit in that rounding delta, we're okay
    [all...]
  /external/chromium_org/third_party/libwebp/utils/
quant_levels_dec.c 4 // that can be found in the COPYING file in the root of the source
6 // in the file PATENTS. All contributing project authors may
7 // be found in the AUTHORS file in the root of the source tree.
35 { 0, 8, 2, 10 }, // coefficients are in DFIX fixed-point precision
52 int scale_; // normalization factor, in FIX bits precision
109 const uint16_t* const in = p->end_; local
117 const uint16_t delta = in[x + r - 1] + in[r - x]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/translate/
translate_generic.c 8 * "Software"), to deal in the Software without restriction, including
15 * next paragraph) shall be included in all copies or substantial portions
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
69 * in this case, u_format is used to do a full conversion
71 * this value is set to the format size in bytes if output_format == input_format or for 32-bit instance ids:
72 * in this case, memcpy is used to copy this amount of bytes
99 SRCTYPE *in = (SRCTYPE *)attrib;
241 float *in = (float *)attrib; local
252 float *in = (float *)attrib; local
    [all...]

Completed in 1784 milliseconds

<<21222324252627282930>>