Searched refs:available (Results 1 - 25 of 285) sorted by relevance

1234567891011>>

/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/clang/test/Modules/
H A Dsubmodules-preprocess.cpp8 # error HAVE_VECTOR macro is not available (but should be)
12 # error HAVE_TYPE_TRAITS_MAP macro is available (but shouldn't be)
16 # error HAVE_HASH_MAP macro is available (but shouldn't be)
22 # error HAVE_VECTOR macro is not available (but should be)
26 # error HAVE_TYPE_TRAITS_MAP macro is not available (but should be)
30 # error HAVE_HASH_MAP macro is available (but shouldn't be)
38 # error HAVE_VECTOR macro is not available (but should be)
42 # error HAVE_TYPE_TRAITS_MAP macro is not available (but should be)
46 # error HAVE_HASH_MAP macro is available (but shouldn't be)
52 # error HAVE_VECTOR macro is not available (bu
[all...]
/external/skia/src/core/
H A DSkData.cpp27 size_t available = fSize; local
28 if (offset >= available || 0 == length) {
31 available -= offset;
32 if (length > available) {
33 length = available;
89 size_t available = src->size(); local
90 if (offset >= available || 0 == length) {
93 available -= offset;
94 if (length > available) {
95 length = available;
[all...]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
H A DConnector.java60 * Returns true if there is currently data available for
65 public boolean available(); method in interface:Connector
69 * there is no data available. The buffer may only be valid
/external/icu4c/common/
H A Dbytestream.cpp43 int32_t available = capacity_ - size_; local
44 if (n > available) {
45 n = available;
63 int32_t available = capacity_ - size_; local
64 if (available >= min_capacity) {
65 *result_capacity = available;
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
H A DDeflaterInputStreamTest.java36 * @tests DeflaterInputStream#available()
41 assertEquals(1, dis.available());
43 assertEquals(1, dis.available());
45 assertEquals(1, dis.available());
47 assertEquals(0, dis.available());
50 dis.available();
63 assertEquals(1, dis.available());
66 dis.available();
109 assertEquals(1, dis.available());
111 assertEquals(1, dis.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/skia/bench/
H A DBenchGpuTimer_gl.cpp51 GrGLint available = 0; local
52 while (!available) {
55 &available));
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DSSLStreamedInputTest.java38 assertEquals(bis.available(), sslsi.available());
/external/ganymed-ssh2/examples/
H A DSingleThreadStdoutStderr.java63 if ((stdout.available() == 0) && (stderr.available() == 0))
65 /* Even though currently there is no data available, it may be that new data arrives
108 while (stdout.available() > 0)
115 while (stderr.available() > 0)
/external/valgrind/main/drd/tests/
H A Dsem_as_mutex3.stderr.exp7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
H A Dsem_open3.stderr.exp7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
H A Dfp_race.stderr.exp7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
H A Dhg04_race.stderr.exp9 (thread finished, call stack no longer available)
11 (thread finished, call stack no longer available)
19 (thread finished, call stack no longer available)
21 (thread finished, call stack no longer available)
H A Dhg05_race2.stderr.exp9 (thread finished, call stack no longer available)
11 (thread finished, call stack no longer available)
19 (thread finished, call stack no longer available)
21 (thread finished, call stack no longer available)
H A Dsem_as_mutex.stderr.exp7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
H A Dsem_open.stderr.exp7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
H A Dtc21_pthonce.stderr.exp9 (thread finished, call stack no longer available)
11 (thread finished, call stack no longer available)
19 (thread finished, call stack no longer available)
21 (thread finished, call stack no longer available)
/external/guava/guava-tests/test/com/google/common/io/
H A DLimitInputStreamTest.java33 // also test available
35 assertEquals(2, lin.available());
38 assertEquals(1, lin.available());
41 assertEquals(0, lin.available());
85 // also test available
87 assertEquals(2, lin.available());
89 assertEquals(1, lin.available());
92 assertEquals(2, lin.available());
94 assertEquals(0, lin.available());
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
H A DSimpleDERReader.java68 public int available() method in class:SimpleDERReader
103 if ((len < 0) || len > available())
120 if ((len < 0) || len > available())
137 if ((len < 0) || len > available())
152 if ((len < 0) || len > available())
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DFastStringBuffer.java36 * exceeds the space available; we just allocate another chunk and
316 * greater than the amount of storage currently available... and even
489 int available = m_chunkSize - m_firstFree;
496 if (available > strlen)
497 available = strlen;
499 value.getChars(copyfrom, copyfrom + available, m_array[m_lastChunk],
502 strlen -= available;
503 copyfrom += available;
541 available = m_chunkSize;
547 m_firstFree += available;
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_AvailTest.java37 // If the string is formatted correctly, and the available method works
49 int real = myin.available();
75 real = myin.available();
82 // loop to EOF, then check if available = 0
95 real = myin.available();
101 output = "IOException during available() testing";
/external/icu4c/io/
H A Dsprintf.c35 /* u_minstrncpy copies the minimum number of code units of (count or output->available) */
42 int32_t size = ufmt_min(count, output->available);
44 u_strncpy(output->str + (output->len - output->available), str, size);
45 output->available -= size;
59 resultLen = ufmt_min(resultLen, output->available);
64 int32_t outputPos = output->len - output->available;
66 if (paddingLeft + resultLen > output->available) {
67 paddingLeft = output->available - resultLen;
71 /* paddingLeft = output->available - resultLen;*/
79 output->available
[all...]
/external/svox/pico/src/com/svox/pico/
H A DEngineSettings.java51 ArrayList<String> available = data.getStringArrayListExtra(TextToSpeech.Engine.EXTRA_AVAILABLE_VOICES);
56 for (int i = 0; i < available.size(); i++){
57 Log.e("debug", available.get(i));
58 String[] languageCountry = available.get(i).split("-");
60 Preference pref = findPreference(available.get(i));
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DCACFLayerTreeHost.cpp62 static bool available; local
66 return available;
70 // Initialize available to true since this function will be called from a
73 available = true;
77 available = false;
78 return available;
88 available = false;
89 return available;
104 available = false;
105 return available;
[all...]

Completed in 1922 milliseconds

1234567891011>>