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));
snextc.pass.cpp 49 char in[] = "ABC"; local
50 t.setg(in, in, in+sizeof(in));
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.pback/
sputbackc.pass.cpp 49 char in[] = "ABC"; local
50 t.setg(in, in+1, in+sizeof(in));
sungetc.pass.cpp 49 char in[] = "ABC"; local
50 t.setg(in, in+1, in+sizeof(in));
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.get.area/
gbump.pass.cpp 49 char in[] = "ABCDE"; local
50 t.setg(in, in+1, in+sizeof(in)/sizeof(in[0]));
55 wchar_t in[] = L"ABCDE"; local
56 t.setg(in, in+1, in+sizeof(in)/sizeof(in[0]))
    [all...]
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
pbump.pass.cpp 49 char in[] = "ABCDE"; local
50 t.setp(in, in+sizeof(in)/sizeof(in[0]));
56 wchar_t in[] = L"ABCDE"; local
57 t.setp(in, in+sizeof(in)/sizeof(in[0]))
    [all...]
  /external/libcxx/test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/
get_date.pass.cpp 41 const char in[] = "5/5/5"; local
44 I i = f.get_date(I(in), I(in+sizeof(in)-1), ios, err, &t);
45 assert(i.base() == in+sizeof(in)-1);
get_date_wide.pass.cpp 41 const wchar_t in[] = L"5/5/5"; local
44 I i = f.get_date(I(in), I(in+sizeof(in)/sizeof(in[0])-1), ios, err, &t);
45 assert(i.base() == in+sizeof(in)/sizeof(in[0])-1);
get_many.pass.cpp 41 const char in[] = "2009 May 9, 10:27pm"; local
45 I i = f.get(I(in), I(in+sizeof(in)-1), ios, err, &t, fmt, fmt+sizeof(fmt)-1);
46 assert(i.base() == in+sizeof(in)-1);
55 const char in[] = "10:27PM May 9, 2009"; local
59 I i = f.get(I(in), I(in+sizeof(in)-1), ios, err, &t, fmt, fmt+sizeof(fmt)-1)
    [all...]