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

1234567891011>>

/external/clang/test/Modules/Inputs/available-is-better/
H A Davailable-is-better.h2 int available; variable
/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/webrtc/webrtc/modules/audio_device/ios/
H A Daudio_device_not_implemented_ios.mm55 int32_t AudioDeviceIOS::SpeakerVolumeIsAvailable(bool& available) {
56 available = false;
95 int32_t AudioDeviceIOS::SpeakerMuteIsAvailable(bool& available) {
96 available = false;
144 int32_t AudioDeviceIOS::MicrophoneMuteIsAvailable(bool& available) {
145 available = false;
159 int32_t AudioDeviceIOS::MicrophoneBoostIsAvailable(bool& available) {
160 available = false;
174 int32_t AudioDeviceIOS::StereoRecordingIsAvailable(bool& available) {
175 available
[all...]
/external/libmojo/third_party/catapult/devil/devil/android/tools/
H A Dscript_common.py20 available = set(str(d) for d in devices)
21 missing = requested.difference(available)
25 for d in available.intersection(requested))
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
H A DCharCache.java33 int available = cache.length - pos;
34 int toWrite = chars.length < available ? chars.length : available;
/external/llvm/test/MC/Mips/
H A Dbranch-pseudos-bad.s7 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
9 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
11 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
13 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
15 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
17 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
19 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
21 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
24 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
26 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
[all...]
/external/icu/icu4c/source/common/
H A Dbytestream.cpp49 int32_t available = capacity_ - size_; local
50 if (n > available) {
51 n = available;
69 int32_t available = capacity_ - size_; local
70 if (available >= min_capacity) {
71 *result_capacity = available;
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
H A DRandomAccessFileInputStream.java127 public int available() throws IOException { method in class:RandomAccessFileInputStream
152 if (available() <= 0) {
163 int available = available();
164 if (available <= 0) {
167 int result = raf.read(b, off, Math.min(len, available));
181 int available = available();
182 if (available <= 0) {
185 int skipAmount = (int) Math.min(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/webrtc/webrtc/modules/audio_device/mac/
H A Daudio_mixer_manager_mac.h31 int32_t SpeakerVolumeIsAvailable(bool& available);
32 int32_t SpeakerMuteIsAvailable(bool& available);
35 int32_t StereoPlayoutIsAvailable(bool& available);
36 int32_t StereoRecordingIsAvailable(bool& available);
37 int32_t MicrophoneMuteIsAvailable(bool& available);
40 int32_t MicrophoneBoostIsAvailable(bool& available);
43 int32_t MicrophoneVolumeIsAvailable(bool& available);
/external/chromium-trace/catapult/devil/devil/android/tools/
H A Dscript_common.py21 available = set(str(d) for d in devices)
22 missing = requested.difference(available)
26 for d in available.intersection(requested))
/external/webrtc/webrtc/modules/audio_device/test/
H A Dfunc_test_manager.cc98 // choose enter out of all available keys
1014 (b == true) ? (sprintf(str, " %-17s: available\n", #a)) : (sprintf(str, " %-17s: NA\n", #a)); \
1023 bool available(false);
1039 EXPECT_EQ(0, audioDevice->PlayoutIsAvailable(&available));
1040 PRINT_STR(Playout, available);
1041 if (available)
1043 EXPECT_EQ(0, audioDevice->StereoPlayoutIsAvailable(&available));
1044 PRINT_STR(Stereo Playout, available);
1050 EXPECT_EQ(0, audioDevice->SpeakerVolumeIsAvailable(&available));
1051 PRINT_STR(Speaker Volume, available);
[all...]
H A Daudio_device_test_api.cc269 FAIL() << "API Test is not available on ALSA on Linux!";
465 bool available; local
469 EXPECT_EQ(0, audio_device_->PlayoutIsAvailable(&available));
475 EXPECT_EQ(0, audio_device_->PlayoutIsAvailable(&available));
482 EXPECT_EQ(0, audio_device_->PlayoutIsAvailable(&available));
488 bool available; local
492 EXPECT_EQ(0, audio_device_->RecordingIsAvailable(&available));
497 EXPECT_EQ(0, audio_device_->RecordingIsAvailable(&available));
504 EXPECT_EQ(0, audio_device_->RecordingIsAvailable(&available));
520 bool available; local
571 bool available; local
610 bool available; local
667 bool available; local
789 bool available; local
823 bool available; local
846 bool available; local
884 bool available; local
990 bool available; local
1034 bool available; local
1123 bool available; local
1149 bool available; local
1175 bool available; local
1201 bool available; local
1259 bool available; local
1308 bool available; local
1384 bool available; local
1453 bool available; local
1504 bool available; local
[all...]
/external/valgrind/drd/tests/
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 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 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)
/external/llvm/test/MC/Mips/mips32r6/
H A Dinvalid.s1 # Instructions that are available for the current ISA but should be rejected by
/external/llvm/test/MC/Mips/mips64r6/
H A Dinvalid.s1 # Instructions that are available for the current ISA but should be rejected by
/external/webrtc/webrtc/modules/audio_device/linux/
H A Daudio_mixer_manager_pulse_linux.h42 int32_t SpeakerVolumeIsAvailable(bool& available);
43 int32_t SpeakerMuteIsAvailable(bool& available);
45 int32_t StereoPlayoutIsAvailable(bool& available);
46 int32_t StereoRecordingIsAvailable(bool& available);
48 int32_t MicrophoneMuteIsAvailable(bool& available);
51 int32_t MicrophoneBoostIsAvailable(bool& available);
54 int32_t MicrophoneVolumeIsAvailable(bool& available);
H A Daudio_mixer_manager_alsa_linux.h34 int32_t SpeakerVolumeIsAvailable(bool& available);
35 int32_t SpeakerMuteIsAvailable(bool& available);
38 int32_t MicrophoneMuteIsAvailable(bool& available);
41 int32_t MicrophoneBoostIsAvailable(bool& available);
44 int32_t MicrophoneVolumeIsAvailable(bool& available);
/external/protobuf/src/google/protobuf/stubs/
H A Dbytestream.cc71 size_t available = capacity_ - size_; local
72 if (n > available) {
73 n = available;
96 size_t available = capacity_ - size_; local
103 if (n > available) {
104 Expand(n - available);
165 size_t available = source_->Available(); local
166 if (available > limit_) {
167 available = limit_;
170 return available;
[all...]
/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...]

Completed in 625 milliseconds

1234567891011>>