Searched defs:available (Results 1 - 25 of 195) sorted by relevance

12345678

/external/clang/test/Modules/Inputs/available-is-better/
H A Davailable-is-better.h2 int available; variable
/external/apache-http/src/org/apache/http/impl/io/
H A DIdentityInputStream.java67 public int available() throws IOException { method in class:IdentityInputStream
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLBIOSink.java36 public int available() { method in class:OpenSSLBIOSink
46 int maxLength = Math.min(available(), (int) byteCount);
H A DOpenSSLBIOSource.java72 public int available() throws IOException { method in class:OpenSSLBIOSource.ByteBufferInputStream
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DLocaleAliasCollationTest.java37 private static ULocale[] available = null; field in class:LocaleAliasCollationTest
49 available = ULocale.getAvailableLocales();
50 for(int i=0; i<available.length;i++){
51 availableMap.put(available[i].toString(),"");
62 logln(_LOCALES[i][1]+" is not available. Skipping!");
H A DLocaleAliasTest.java46 private static ULocale[] available = null; field in class:LocaleAliasTest
53 available = ULocale.getAvailableLocales();
54 for(int i=0; i<available.length;i++){
55 availableMap.put(available[i].toString(),"");
68 logln(_LOCALES[i][1]+" is not available. Skipping!");
107 logln(_LOCALES[i][1]+" is not available. Skipping!");
146 logln(_LOCALES[i][1]+" is not available. Skipping!");
169 for(int j=0; j<available.length; j++){
170 String oldCountry = oldLoc.getDisplayCountry(available[j]);
171 String newCountry = newLoc.getDisplayCountry(available[
[all...]
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/util/
H A DLocaleAliasCollationTest.java33 private static ULocale[] available = null; field in class:LocaleAliasCollationTest
45 available = ULocale.getAvailableLocales();
46 for(int i=0; i<available.length;i++){
47 availableMap.put(available[i].toString(),"");
58 logln(_LOCALES[i][1]+" is not available. Skipping!");
/external/jetty/src/java/org/eclipse/jetty/server/
H A DHttpInput.java6 // are made available under the terms of the Eclipse Public License v1.0
9 // The Eclipse Public License is available at
12 // The Apache License v2.0 is available at
71 public int available() throws IOException method in class:HttpInput
73 return _parser.available();
/external/jsilver/src/com/google/clearsilver/jsilver/output/
H A DThreadLocalOutputBufferProvider.java25 private final ThreadLocal<Boolean> available; field in class:ThreadLocalOutputBufferProvider
33 available = new ThreadLocal<Boolean>() {
42 if (!available.get()) {
46 available.set(false);
57 available.set(true);
/external/pdfium/xfa/src/fxbarcode/datamatrix/
H A DBC_X12Encoder.cpp67 int32_t available = local
76 if (available > 1) {
/external/smali/util/src/main/java/org/jf/util/
H A DRandomAccessFileInputStream.java69 int skipBytes = Math.min((int)l, available());
74 @Override public int available() throws IOException { method in class:RandomAccessFileInputStream
/external/emma/core/java12/com/vladium/util/
H A DByteArrayIStream.java3 * This program and the accompanying materials are made available under
5 * and is available at http://www.eclipse.org/legal/cpl-v10.html
79 public final int available () method in class:ByteArrayIStream
/external/guava/guava/src/com/google/common/io/
H A DMultiInputStream.java70 @Override public int available() throws IOException { method in class:MultiInputStream
74 return in.available();
/external/guava/guava-tests/test/com/google/common/io/
H A DTestInputStream.java76 public int available() throws IOException { method in class:TestInputStream
78 return options.contains(TestOption.AVAILABLE_ALWAYS_ZERO) ? 0 : in.available();
/external/icu/icu4c/source/common/
H A Dbytestream.cpp47 int32_t available = capacity_ - size_; local
48 if (n > available) {
49 n = available;
67 int32_t available = capacity_ - size_; local
68 if (available >= min_capacity) {
69 *result_capacity = available;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DLocaleAliasTest.java42 private static ULocale[] available = null; field in class:LocaleAliasTest
49 available = ULocale.getAvailableLocales();
50 for(int i=0; i<available.length;i++){
51 availableMap.put(available[i].toString(),"");
64 logln(_LOCALES[i][1]+" is not available. Skipping!");
103 logln(_LOCALES[i][1]+" is not available. Skipping!");
142 logln(_LOCALES[i][1]+" is not available. Skipping!");
165 for(int j=0; j<available.length; j++){
166 String oldCountry = oldLoc.getDisplayCountry(available[j]);
167 String newCountry = newLoc.getDisplayCountry(available[
[all...]
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvreader.cpp86 int MkvReader::Length(long long* total, long long* available) { argument
93 if (available)
94 *available = m_length;
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
H A DDeltaInputStream.java117 * Calls <code>in.available()</code>.
119 * @return the value returned by <code>in.available()</code>
121 public int available() throws IOException { method in class:DeltaInputStream
128 return in.available();
H A DXZInputStream.java94 * less than 12 bytes of input was available
127 * less than 12 bytes of input was available
180 * less than 12 bytes of input was available
315 // three more available in a valid file.
340 * thrown before the number of bytes claimed to be available have
346 public int available() throws IOException { method in class:XZInputStream
353 return xzIn == null ? 0 : xzIn.available();
/external/skia/src/core/
H A DSkData.cpp48 size_t available = fSize; local
49 if (offset >= available || 0 == length) {
52 available -= offset;
53 if (length > available) {
54 length = available;
159 size_t available = src->size();
160 if (offset >= available || 0 == length) {
163 available -= offset;
164 if (length > available) {
165 length = available;
[all...]
/external/speex/libspeex/
H A Dbuffer.c48 int available; member in struct:SpeexBuffer_
58 st->available = 0;
88 st->available += len;
89 if (st->available > st->size)
91 st->available = st->size;
120 st->available += len;
121 if (st->available > st->size)
123 st->available = st->size;
136 if (len > st->available)
138 SPEEX_MEMSET(data+st->available,
[all...]
/external/apache-http/src/org/apache/http/conn/
H A DEofSensorInputStream.java196 public int available() throws IOException { method in class:EofSensorInputStream
201 a = wrappedStream.available();
202 // no checkEOF() here, available() can't trigger EOF
/external/freetype/src/base/
H A Dmd5.c214 unsigned long used, available; local
224 available = 64 - used;
226 if (size < available) {
231 memcpy(&ctx->buffer[used], data, available);
232 data = (const unsigned char *)data + available;
233 size -= available;
247 unsigned long used, available; local
253 available = 64 - used;
255 if (available < 8) {
256 memset(&ctx->buffer[used], 0, available);
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/util/
H A DExceptionCatchingInputStream.java51 public int available() throws IOException { method in class:ExceptionCatchingInputStream
52 return wrapped.available();
/external/icu/icu4c/source/io/
H A Duprintf.h72 int32_t available;/* Number of codeunits available to write to */ member in struct:u_localized_print_string
86 * to the buffer when space is available. It's done this way because

Completed in 2742 milliseconds

12345678