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

1 2 3 4 5 6 7 8 91011>>

  /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/libbrillo/brillo/streams/
stream_errors.cc 5 #include <brillo/streams/stream_errors.h>
  /hardware/libhardware/modules/camera/3_4/
static_properties_test.cpp 103 void ExpectConfigurationSupported(std::vector<camera3_stream_t>& streams,
106 for (size_t i = 0; i < streams.size(); ++i) {
107 stream_addresses.push_back(&streams[i]);
382 std::vector<camera3_stream_t> streams; local
383 streams.push_back(MakeStream(output_multisize_non_stalling_));
384 ExpectConfigurationSupported(streams, true);
388 std::vector<camera3_stream_t> streams; local
390 streams.push_back(MakeStream(bidirectional_raw_));
392 streams.push_back(MakeStream(output_multisize_non_stalling_,
397 ExpectConfigurationSupported(streams, true)
401 std::vector<camera3_stream_t> streams; local
414 std::vector<camera3_stream_t> streams; local
422 std::vector<camera3_stream_t> streams; local
460 std::vector<camera3_stream_t> streams; local
467 std::vector<camera3_stream_t> streams; local
474 std::vector<camera3_stream_t> streams; local
481 std::vector<camera3_stream_t> streams; local
489 std::vector<camera3_stream_t> streams; local
497 std::vector<camera3_stream_t> streams; local
504 std::vector<camera3_stream_t> streams; local
527 std::vector<camera3_stream_t> streams; local
546 std::vector<camera3_stream_t> streams; local
565 std::vector<camera3_stream_t> streams; local
584 std::vector<camera3_stream_t> streams; local
592 std::vector<camera3_stream_t> streams; local
604 std::vector<camera3_stream_t> streams; local
    [all...]
  /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/kotlinc/lib/
kotlin-stdlib-jdk8.jar 
kotlin-stdlib-jre8.jar 
  /external/pdfium/core/fxcrt/
cfx_seekablemultistream_unittest.cpp 18 std::vector<CPDF_Stream*> streams; local
19 auto fileread = pdfium::MakeRetain<CFX_SeekableMultiStream>(streams);
28 std::vector<CPDF_Stream*> streams; local
30 streams.push_back(stream1.get());
31 auto fileread = pdfium::MakeRetain<CFX_SeekableMultiStream>(streams);
40 std::vector<CPDF_Stream*> streams; local
53 streams.push_back(stream1.get());
54 streams.push_back(stream2.get());
55 streams.push_back(stream3.get());
56 auto fileread = pdfium::MakeRetain<CFX_SeekableMultiStream>(streams);
    [all...]
  /external/webrtc/webrtc/call/
call_unittest.cc 68 std::list<AudioSendStream*> streams; local
75 streams.push_back(stream);
77 streams.push_front(stream);
80 for (auto s : streams) {
83 streams.clear();
91 std::list<AudioReceiveStream*> streams; local
98 streams.push_back(stream);
100 streams.push_front(stream);
103 for (auto s : streams) {
106 streams.clear()
    [all...]
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
mixing_test.cc 46 // amplitude of |input_value|. The local streams manifest as "anonymous"
53 // |num_remote_streams_using_mono| of the remote streams use mono, with the
78 TEST_LOG("Playing %d local streams.\n", num_local_streams);
87 TEST_LOG("Playing %d remote streams.\n", num_remote_streams);
144 // Start up local streams ("anonymous" participants).
145 void StartLocalStreams(const std::vector<int>& streams) {
146 for (size_t i = 0; i < streams.size(); ++i) {
147 EXPECT_EQ(0, voe_base_->StartPlayout(streams[i]));
148 EXPECT_EQ(0, voe_file_->StartPlayingFileLocally(streams[i],
153 void StopLocalStreams(const std::vector<int>& streams) {
    [all...]
  /art/
CPPLINT.cfg 30 filter=-readability/function,-readability/streams,-readability/todo
  /external/adhd/cras/src/server/
stream_list.c 13 struct cras_rstream *streams; member in struct:stream_list
74 return list->streams;
87 DL_APPEND(list->streams, *stream);
90 DL_DELETE(list->streams, *stream);
101 DL_SEARCH_SCALAR(list->streams, to_remove, stream_id, id);
104 DL_DELETE(list->streams, to_remove);
121 DL_FOREACH(list->streams, to_remove) {
123 DL_DELETE(list->streams, to_remove);
  /external/libopus/include/
opus_multistream.h 79 * the <code>streams</code> parameter used
92 * the <code>streams</code> parameter used
106 * The multistream API allows individual Opus streams to be combined into a
119 * <code>streams</code> to <code>1</code> when initializing the encoder or
122 * Multistream Opus streams can contain up to 255 elementary Opus streams.
125 * The streams are ordered so that all coupled streams appear at the
139 * be the special value 255 or be less than <code>streams + coupled_streams</code>.
189 * @param streams <tt>int</tt>: The total number of streams to encode from th
    [all...]
  /external/vogar/test/vogar/testing/
InterceptOutputStreams.java 37 * The streams that can be intercepted.
69 * The streams to intercept.
71 private final EnumSet<Stream> streams; field in class:InterceptOutputStreams
75 * The streams to intercept.
77 public InterceptOutputStreams(Stream... streams) {
78 this.streams = EnumSet.of(streams[0], streams);
91 if (!streams.contains(stream)) {
92 EnumSet<Stream> extra = streams.clone()
    [all...]
  /hardware/interfaces/camera/device/3.3/
types.hal 56 vec<HalStream> streams;
  /external/webrtc/talk/media/webrtc/
simulcast.cc 70 // possible number of simulcast streams |kMaxSimulcastStreams|. The array
178 int GetTotalMaxBitrateBps(const std::vector<webrtc::VideoStream>& streams) {
180 for (size_t s = 0; s < streams.size() - 1; ++s) {
181 total_max_bitrate_bps += streams[s].target_bitrate_bps;
183 total_max_bitrate_bps += streams.back().max_bitrate_bps;
197 // number of simulcast streams for current resolution, switch down
204 std::vector<webrtc::VideoStream> streams; local
205 streams.resize(simulcast_layers);
211 // Add simulcast sub-streams from lower resolution to higher resolutions.
212 // Add simulcast streams, from highest resolution (|s| = number_streams -1
    [all...]
  /external/webrtc/talk/media/base/
streamparams.h 34 // E.x: Consider a source that is sent as 3 simulcast streams
155 // For 1:1 calls, should be left empty (which means remote streams
156 // and local streams should not be mixed together).
204 // A collection of audio and video and data streams. Most of the
270 // A request for several streams in various formats.
276 const StreamParams* GetStream(const StreamParamsVec& streams,
279 std::find_if(streams.begin(), streams.end(), condition);
280 return found == streams.end() ? nullptr : &(*found);
283 inline const StreamParams* GetStreamBySsrc(const StreamParamsVec& streams,
    [all...]
  /art/test/151-OpenFileLimit/src/
Main.java 30 List<OutputStream> streams = new ArrayList<OutputStream>(); local
35 streams.add(Files.newOutputStream(file.toPath(), CREATE, APPEND));
58 for (int i = 0; i < streams.size(); i++) {
59 streams.get(i).close();
  /external/webrtc/webrtc/video/
video_send_stream.cc 301 const std::vector<VideoStream>& streams = config.streams; local
302 RTC_DCHECK(!streams.empty());
303 RTC_DCHECK_GE(config_.rtp.ssrcs.size(), streams.size());
323 if (config.streams.size() == 1 &&
324 config.streams[0].temporal_layer_thresholds_bps.size() == 1) {
326 config.streams[0].temporal_layer_thresholds_bps[0] / 1000;
346 streams.back().temporal_layer_thresholds_bps.size() + 1);
360 streams.back().temporal_layer_thresholds_bps.size() + 1);
378 static_cast<unsigned char>(streams.size())
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
execution_tracker.cc 28 std::vector<Backend::StreamPtr> streams,
32 streams_(std::move(streams)),
50 Backend* backend, std::vector<Backend::StreamPtr> streams,
56 MakeUnique<AsyncExecution>(backend, std::move(streams), profile, result));
  /hardware/interfaces/camera/device/3.4/
types.hal 84 * parameters, and the streams vector contains @3.4::Stream.
91 vec<Stream> streams;
151 vec<HalStream> streams;
173 * it is not present among the last configured streams, Hal should fail the process
224 * visual effect on any Hal streams attached to the logical camera is undefined.
270 * streams, the physicalCameraMetadata field of the CaptureResult being returned
272 * streams from one of the physical camera, the physicalCameraMetadata field
  /external/libbrillo/brillo/http/
http_form_data.cc 16 #include <brillo/streams/file_stream.h>
17 #include <brillo/streams/input_stream_set.h>
18 #include <brillo/streams/memory_stream.h>
86 bool TextFormField::ExtractDataStreams(std::vector<StreamPtr>* streams) {
87 streams->push_back(MemoryStream::OpenCopyOf(data_, nullptr));
108 bool FileFormField::ExtractDataStreams(std::vector<StreamPtr>* streams) {
111 streams->push_back(std::move(stream_));
127 bool MultiPartFormField::ExtractDataStreams(std::vector<StreamPtr>* streams) {
130 streams->push_back(MemoryStream::OpenCopyOf(data, nullptr));
131 if (!part->ExtractDataStreams(streams))
    [all...]
  /hardware/interfaces/camera/device/3.3/default/
convert.cpp 53 dst->streams.resize(src.num_streams);
55 convertToHidl(static_cast<Camera3Stream*>(src.streams[i]), &dst->streams[i]);
  /hardware/interfaces/camera/device/3.4/default/
convert.cpp 40 dst->streams.resize(src.num_streams);
42 convertToHidl(static_cast<Camera3Stream*>(src.streams[i]), &dst->streams[i]);
  /hardware/libhardware/modules/usbcamera/
Camera.h 95 // Destroy all streams in a stream array, and the array itself. Must be called with
97 void destroyStreamsLocked(android::Vector<Stream *> &streams);
98 // Verify a set of streams is valid in aggregate. Must be called with mDeviceLock held.
99 bool isValidStreamSetLocked(const android::Vector<Stream *> &streams);
101 void setupStreamsLocked(android::Vector<Stream *> &streams);
121 // Array of handles to streams currently in use by the device
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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++];

Completed in 538 milliseconds

1 2 3 4 5 6 7 8 91011>>