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

1 2 3 4 56 7 8 91011>>

  /external/curl/src/
tool_cb_see.c 10 * This software is licensed as described in the file COPYING, which
49 struct InStruct *in = userdata; local
67 if(LSEEK_ERROR == lseek(in->fd, 0, SEEK_SET))
73 if(LSEEK_ERROR == lseek(in->fd, step, SEEK_CUR))
82 if(LSEEK_ERROR == lseek(in->fd, offset, whence))
83 /* couldn't rewind, the reason is in errno but errno is just not portable
  /external/fio/
fifo.h 13 * This program is distributed in the hope that it will be useful,
28 unsigned int in; /* data is added at offset (in % size) */ member in struct:fifo
39 return fifo->in - fifo->out;
44 return fifo->size - fifo->in + fifo->out;
  /external/google-breakpad/src/common/
md5.h 16 u8 in[64]; member in struct:google_breakpad::MD5Context
  /external/guava/guava-testlib/src/com/google/common/testing/
Platform.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 * Methods factored out so that they can be emulated differently in GWT.
46 ObjectInputStream in = new ObjectInputStream( local
48 return (T) in.readObject();
  /external/guava/guava-tests/test/com/google/common/io/
TestReader.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
32 private final TestInputStream in; field in class:TestReader
38 public TestReader(TestInputStream in) {
39 super(new InputStreamReader(checkNotNull(in), UTF_8));
40 this.in = in;
44 return in.closed();
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/
InputStreamSourceFileLocator.java 36 * tab width in source files as number of blanks
47 final InputStream in; local
49 in = getSourceStream(packageName + "/" + fileName);
51 in = getSourceStream(fileName);
54 if (in == null) {
59 return new InputStreamReader(in);
61 return new InputStreamReader(in, encoding);
76 * in case of problems while opening the stream
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/
LocalEntityResolver.java 38 final InputStream in = resourceDelegate.getResourceAsStream(systemId); local
39 if (in == null) {
42 return new InputSource(in);
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.get/
in_avail.pass.cpp 48 char in[5]; local
49 t.setg(in, in+2, in+5);
sbumpc.pass.cpp 49 char in[] = "ABC"; local
50 t.setg(in, in, in+sizeof(in));
sgetc.pass.cpp 49 char in[] = "ABC"; local
50 t.setg(in, in, in+sizeof(in));