HomeSort by relevance Sort by last modified time
    Searched refs:available (Results 76 - 100 of 939) sorted by null

1 2 34 5 6 7 8 91011>>

  /development/samples/TtsEngine/src/com/example/android/ttsengine/
CheckVoiceData.java 52 ArrayList<String> available = new ArrayList<String>(); local
61 available.add(lang);
69 if (!checkLanguages.isEmpty() && available.isEmpty()) {
70 // No voices available at all.
73 // Some voices are available, but some have missing
77 // All voices are available.
81 // We now return the list of available and unavailable voices
85 TextToSpeech.Engine.EXTRA_AVAILABLE_VOICES, available);
149 // data file is available.
  /external/apache-http/src/org/apache/http/impl/io/
IdentityInputStream.java 62 public int available() throws IOException { method in class:IdentityInputStream
  /frameworks/ex/variablespeed/jni/
ring_buffer.h 75 int available(int reader) const;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
PipedInputStreamTest.java 73 pis.available();
102 * @tests java.io.PipedInputStream#available()
115 assertTrue("Available returned incorrect number of bytes: "
116 + pis.available(), pis.available() == 1000);
126 assertEquals("Incorrect available count", 1024 , pin.available());
156 assertEquals("Non-conected pipe returned non-zero available bytes", 0,
157 pis.available());
166 assertEquals("Available returned incorrect number of bytes", 1000, pi
    [all...]
BufferedOutputStreamTest.java 135 assertEquals("Bytes written, not buffered", 0, bais.available());
138 assertEquals("Bytes not written after flush", 500, bais.available());
142 bais.available() >= 1000);
653 assertEquals("Byte written, not buffered", 0, bais.available());
656 assertEquals("Byte not written after flush", 1, bais.available());
690 assertEquals("Bytes written, not buffered", 10, byteArrayis.available());
694 .available());
701 assertEquals("Bytes written, not buffered", 20, byteArrayis.available());
705 .available());
715 assertEquals("Bytes written, not buffered", 30, byteArrayis.available());
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
availability_finder.py 68 '''Parses the api/extension_api.json file (available in Chrome versions
145 available on stable, returns the previous version number (the last known
148 available = True
149 while available:
151 # SVN data isn't available below version 5.
153 available = False
171 available = _ExistsInFileSystem(api_name, names_fs)
173 available = available_channel == _STABLE
179 available = _ExistsInFileSystem(api_name, names_fs)
182 # contains namespaces for each API that was available at the time. W
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
AutoTableLayout.cpp 479 int available = tableLogicalWidth; local
506 available -= cellLogicalWidth;
533 if (available > 0 && havePercent) {
538 available += m_layoutStruct[i].computedLogicalWidth - cellLogicalWidth;
553 available += cellLogicalWidth - newLogicalWidth;
561 if (available > 0) {
565 available += m_layoutStruct[i].computedLogicalWidth - logicalWidth.value();
572 if (available > 0 && numAuto) {
573 available += allocAuto; // this gets redistributed
577 int cellLogicalWidth = max<int>(m_layoutStruct[i].computedLogicalWidth, static_cast<int>(available * static_cast<float>(m_layoutStruct[i].effectiveMaxLogicalWidth) / totalAuto))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_dead_code_local.cpp 54 this->available = ir->write_mask;
61 int available; member in class:__anon14992::assignment_entry
80 entry->available, used);
81 entry->available &= ~used;
82 if (!entry->available)
146 * Adds an entry to the available copy list if it's a plain assignment
188 int remove = entry->available & ir->write_mask;
205 entry->available &= ~remove;
258 /* Add this instruction to the assignment list available to be removed. */
269 printf(" %s (0x%01x)\n", entry->lhs->name, entry->available);
    [all...]
  /external/chromium_org/third_party/opus/src/celt/
entdec.c 50 An excellent description of implementation details is available at
227 int available; local
230 available=_this->nend_bits;
231 if((unsigned)available<_bits){
233 window|=(ec_window)ec_read_byte_from_end(_this)<<available;
234 available+=EC_SYM_BITS;
236 while(available<=EC_WINDOW_SIZE-EC_SYM_BITS);
240 available-=_bits;
242 _this->nend_bits=available;
  /external/guava/guava/src/com/google/common/io/
LimitInputStream.java 51 @Override public int available() throws IOException { method in class:LimitInputStream
52 return (int) Math.min(in.available(), left);
MultiInputStream.java 67 @Override public int available() throws IOException { method in class:MultiInputStream
71 return in.available();
  /external/mesa3d/src/glsl/
opt_dead_code_local.cpp 54 this->available = ir->write_mask;
61 int available; member in class:__anon25334::assignment_entry
80 entry->available, used);
81 entry->available &= ~used;
82 if (!entry->available)
146 * Adds an entry to the available copy list if it's a plain assignment
188 int remove = entry->available & ir->write_mask;
205 entry->available &= ~remove;
258 /* Add this instruction to the assignment list available to be removed. */
269 printf(" %s (0x%01x)\n", entry->lhs->name, entry->available);
    [all...]
  /frameworks/base/core/java/com/android/internal/statusbar/
IStatusBar.aidl 37 void setHardKeyboardStatus(boolean available, boolean enabled);
  /hardware/akm/AK8975_FS/libsensors/
InputEventReader.cpp 77 ssize_t available = (mBufferEnd - mBuffer) - mFreeSpace; local
78 return available ? 1 : 0;
  /hardware/invensense/60xx/libsensors_iio/
InputEventReader.cpp 94 ssize_t available = (mBufferEnd - mBuffer) - mFreeSpace;
95 return available ? 1 : 0;
  /libcore/crypto/src/main/java/org/conscrypt/
SSLSocketInputStream.java 75 * Returns the number of bytes available for reading without blocking.
76 * @return the number of available bytes.
80 public int available() throws IOException { method in class:SSLSocketInputStream
96 * available.
126 } while ((available() != 0) && (i<len));
  /libcore/luni/src/main/java/java/io/
LineNumberInputStream.java 62 * {@code available} returns only {@code in.available() / 2} bytes as
66 public int available() throws IOException { method in class:LineNumberInputStream
67 return in.available() / 2 + (lastChar == -1 ? 0 : 1);
SequenceInputStream.java 82 public int available() throws IOException { method in class:SequenceInputStream
84 return in.available();
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
CloseShieldInputStream.java 56 * @see java.io.InputStream#available()
58 public int available() throws IOException { method in class:CloseShieldInputStream
60 return is.available();
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
PositionInputStream.java 40 public int available() throws IOException { method in class:PositionInputStream
41 return inputStream.available();
  /external/qemu/distrib/sdl-1.2.15/src/audio/esd/
SDL_esdaudio.c 123 int available; local
125 available = 0;
127 return available;
131 available = 1;
135 return(available);
  /external/srec/shared/src/
CircularBuffer.c 113 size_t available = buffer->capacity - buffer->size; local
118 if (available < bufSize) /* We need to force an error to be logged here */
120 /* bufSize = available; Throwing data on the floor with no notice is asking for trouble */
151 size_t available = buffer->capacity - buffer->size; local
153 if (available < amount)
154 amount = available;
  /libcore/luni/src/test/java/libcore/java/io/
OldBufferedOutputStreamTest.java 93 0, bais.available());
97 500, bais.available());
101 bais.available() >= 1000);
161 0, bais.available());
165 1, bais.available());
  /external/chromium_org/third_party/skia/src/core/
SkData.cpp 36 size_t available = fSize; local
37 if (offset >= available || 0 == length) {
40 available -= offset;
41 if (length > available) {
42 length = available;
133 size_t available = src->size(); local
134 if (offset >= available || 0 == length) {
137 available -= offset;
138 if (length > available) {
139 length = available;
    [all...]
  /external/skia/src/core/
SkData.cpp 36 size_t available = fSize; local
37 if (offset >= available || 0 == length) {
40 available -= offset;
41 if (length > available) {
42 length = available;
133 size_t available = src->size(); local
134 if (offset >= available || 0 == length) {
137 available -= offset;
138 if (length > available) {
139 length = available;
    [all...]

Completed in 933 milliseconds

1 2 34 5 6 7 8 91011>>