HomeSort by relevance Sort by last modified time
    Searched refs:streams (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /external/opencv/cv/include/
cvstreams.h 46 #include <streams.h> /* !!! IF YOU'VE GOT AN ERROR HERE, PLEASE READ BELOW !!! */
47 /***************** How to get Visual Studio understand streams.h ****************\
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
__init__.py 27 @section streams Streams
29 Each recognizer pulls its input from one of the stream classes below. Streams
151 from streams import *
  /external/chromium/net/tools/spdyshark/
packet-spdy.h 44 GArray *streams; member in struct:_spdy_conv_t
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SequenceInputStreamTest.java 69 InputStream streams[] = new InputStream[2]; field in class:SequenceInputStreamTest.StreamEnumerator
74 streams[0] = new ByteArrayInputStream(s1.getBytes("UTF-8"));
75 streams[1] = new ByteArrayInputStream(s2.getBytes("UTF-8"));
79 return count < streams.length;
83 return streams[count++];
  /cts/tests/tests/media/src/android/media/cts/
AudioManagerTest.java 317 int[] streams = { AudioManager.STREAM_ALARM, local
327 for (int i = 0; i < streams.length; i++) {
331 int maxVolume = mAudioManager.getStreamMaxVolume(streams[i]);
333 mAudioManager.setStreamVolume(streams[i], 1, 0);
335 assertEquals(maxVolume, mAudioManager.getStreamVolume(streams[i]));
338 assertEquals(1, mAudioManager.getStreamVolume(streams[i]));
340 if (streams[i] == AudioManager.STREAM_MUSIC && mAudioManager.isWiredHeadsetOn()) {
350 mAudioManager.adjustStreamVolume(streams[i], ADJUST_RAISE, 0);
351 curvol = mAudioManager.getStreamVolume(streams[i]);
355 mAudioManager.setStreamVolume(streams[i], maxVolume, 0)
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_smf.c 296 /* parse the next event from all the streams */
328 /* find next event in all streams */
333 if (pSMFData->streams[i].ticks < temp)
335 temp = pSMFData->streams[i].ticks;
336 pSMFData->nextStream = &pSMFData->streams[i];
426 /* close all the streams */
429 if (pSMFData->streams[i].fileHandle != NULL)
431 if ((result = EAS_HWCloseFile(pEASData->hwInstData, pSMFData->streams[i].fileHandle)) != EAS_SUCCESS)
446 if (pSMFData->streams)
447 EAS_HWFree(pEASData->hwInstData, pSMFData->streams);
    [all...]
eas_public.c 286 if (pEASData->streams[0].handle != NULL)
288 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_ERROR, "Attempt to open multiple streams in static model\n"); */ }
296 if (pEASData->streams[streamNum].handle == NULL)
300 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_ERROR, "Exceeded maximum number of open streams\n"); */ }
478 /* if there are streams open, close them */
482 if (pEASData->streams[i].pParserModule && pEASData->streams[i].handle)
484 if ((result = (*((S_FILE_PARSER_INTERFACE*)(pEASData->streams[i].pParserModule))->pfClose)(pEASData, pEASData->streams[i].handle)) != EAS_SUCCESS)
591 EAS_InitStream(&pEASData->streams[streamNum], pParserModule, streamHandle)
    [all...]
eas_data.h 113 S_EAS_STREAM streams[MAX_NUMBER_STREAMS]; member in struct:s_eas_data_tag
eas_miditypes.h 101 S_SMF_STREAM *streams; /* pointer to individual streams in file */ member in struct:s_smf_data_tag
108 EAS_U16 numStreams; /* actual number of streams */
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_smf.c 296 /* parse the next event from all the streams */
328 /* find next event in all streams */
333 if (pSMFData->streams[i].ticks < temp)
335 temp = pSMFData->streams[i].ticks;
336 pSMFData->nextStream = &pSMFData->streams[i];
426 /* close all the streams */
429 if (pSMFData->streams[i].fileHandle != NULL)
431 if ((result = EAS_HWCloseFile(pEASData->hwInstData, pSMFData->streams[i].fileHandle)) != EAS_SUCCESS)
446 if (pSMFData->streams)
447 EAS_HWFree(pEASData->hwInstData, pSMFData->streams);
    [all...]
eas_public.c 286 if (pEASData->streams[0].handle != NULL)
288 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_ERROR, "Attempt to open multiple streams in static model\n"); */ }
296 if (pEASData->streams[streamNum].handle == NULL)
300 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_ERROR, "Exceeded maximum number of open streams\n"); */ }
478 /* if there are streams open, close them */
482 if (pEASData->streams[i].pParserModule && pEASData->streams[i].handle)
484 if ((result = (*((S_FILE_PARSER_INTERFACE*)(pEASData->streams[i].pParserModule))->pfClose)(pEASData, pEASData->streams[i].handle)) != EAS_SUCCESS)
591 EAS_InitStream(&pEASData->streams[streamNum], pParserModule, streamHandle)
    [all...]
eas_data.h 113 S_EAS_STREAM streams[MAX_NUMBER_STREAMS]; member in struct:s_eas_data_tag
eas_miditypes.h 101 S_SMF_STREAM *streams; /* pointer to individual streams in file */ member in struct:s_smf_data_tag
108 EAS_U16 numStreams; /* actual number of streams */
  /external/sonivox/arm-wt-22k/lib_src/
eas_smf.c 301 /* parse the next event from all the streams */
333 /* find next event in all streams */
338 if (pSMFData->streams[i].ticks < temp)
340 temp = pSMFData->streams[i].ticks;
341 pSMFData->nextStream = &pSMFData->streams[i];
431 /* close all the streams */
434 if (pSMFData->streams[i].fileHandle != NULL)
436 if ((result = EAS_HWCloseFile(pEASData->hwInstData, pSMFData->streams[i].fileHandle)) != EAS_SUCCESS)
451 if (pSMFData->streams)
452 EAS_HWFree(pEASData->hwInstData, pSMFData->streams);
    [all...]
eas_public.c 286 if (pEASData->streams[0].handle != NULL)
288 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_ERROR, "Attempt to open multiple streams in static model\n"); */ }
296 if (pEASData->streams[streamNum].handle == NULL)
300 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_ERROR, "Exceeded maximum number of open streams\n"); */ }
479 /* if there are streams open, close them */
483 if (pEASData->streams[i].pParserModule && pEASData->streams[i].handle)
485 if ((result = (*((S_FILE_PARSER_INTERFACE*)(pEASData->streams[i].pParserModule))->pfClose)(pEASData, pEASData->streams[i].handle)) != EAS_SUCCESS)
592 EAS_InitStream(&pEASData->streams[streamNum], pParserModule, streamHandle)
    [all...]
eas_data.h 115 S_EAS_STREAM streams[MAX_NUMBER_STREAMS]; member in struct:s_eas_data_tag
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyConnection.java 38 * A socket connection to a remote peer. A connection hosts streams which can
56 // spdyWriter (to do blocking I/O) and this (to create streams). Such
95 private final Map<Integer, SpdyStream> streams = new HashMap<Integer, SpdyStream>(); field in class:SpdyConnection
123 * Returns the number of {@link SpdyStream#isOpen() open streams} on this
127 return streams.size();
131 return streams.get(id);
135 SpdyStream stream = streams.remove(streamId);
136 if (stream != null && streams.isEmpty()) {
182 streams.put(streamId, stream);
291 * Degrades this connection such that new streams can neither be create
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/
mkdoxy.sh 10 for f in __init__ exceptions constants dfa tokens streams recognizers; do
  /bionic/libc/upstream-netbsd/libc/isc/
ev_streams.c 85 if (ctx->streams != NULL)
86 ctx->streams->prev = new;
88 new->next = ctx->streams;
89 ctx->streams = new;
119 if (ctx->streams != NULL)
120 ctx->streams->prev = new;
122 new->next = ctx->streams;
123 ctx->streams = new;
161 * The streams list is doubly threaded. First, there's ctx->streams
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3recognizersharedstate.h 191 /** Input stream stack, which allows the C programmer to switch input streams
195 pANTLR3_STACK streams; member in struct:ANTLR3_RECOGNIZER_SHARED_STATE_struct
197 /// A stack of token/tree rewrite streams that are available for use
200 /// allocate and deallocate rewtire streams on entry and exit. As
202 /// of the maximum number of allocated streams, which instead of
204 /// reuse. The streams are then all finally freed when this stack
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pcm_oss.h 68 struct snd_pcm_substream *streams[2]; member in struct:snd_pcm_oss_file
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pcm_oss.h 68 struct snd_pcm_substream *streams[2]; member in struct:snd_pcm_oss_file
  /external/chromium/third_party/libjingle/source/talk/base/
diskcache.cc 147 entry->streams = stdmax(entry->streams, index + 1);
176 if (index >= entry->streams)
190 return (NULL != entry) && (entry->streams > 0);
195 if ((NULL == entry) || (index >= entry->streams))
212 for (size_t index = 0; index < entry->streams; ++index) {
325 e.streams = 0;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/
StreamingVideoActivity.java 33 * Tests for verifying the quality of streaming videos. Plays streams of different formats over
163 private void addStreamToTests(ArrayTestListAdapter streams, Stream stream) {
166 streams.add(TestListItem.newTest(stream.name, PlayVideoActivity.getTestId(stream.code),
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3lexer.c 345 // there might be more input streams to POP before the
357 if (lexer->rec->state->streams != NULL && lexer->rec->state->streams->size(lexer->rec->state->streams) > 0)
368 // There were no more streams on the input stack
424 /** Default lexer error handler (works for 8 bit streams only!!!)
554 * Pointer to the lexer instance to switch input streams for.
568 if (lexer->rec->state->streams == NULL)
573 lexer->rec->state->streams = antlr3StackNew(0);
575 if (lexer->rec->state->streams == NULL
    [all...]

Completed in 1021 milliseconds

1 2 3 4