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

1 2 34 5 6 7 8 91011>>

  /external/llvm/include/llvm/IR/
DiagnosticPrinter.h 63 raw_ostream &Stream;
66 DiagnosticPrinterRawOStream(raw_ostream &Stream) : Stream(Stream) {}
  /external/llvm/include/llvm/Support/
FormattedStream.h 25 /// boundaries and querying the number of lines written to the stream.
28 /// TheStream - The real stream we output to. We set it to be
46 /// current_pos - Return the current position within the stream,
49 // Our current position in the stream is all the contents which have been
50 // written to the underlying stream (*not* the current position of the
51 // underlying stream).
60 void setStream(raw_ostream &Stream) {
63 TheStream = &Stream;
81 /// put into ErrorInfo, and the stream should be immediately
84 /// As a side effect, the given Stream is set to be Unbuffered
    [all...]
circular_raw_ostream.h 23 /// underlying stream if specified with a buffer of zero.
27 /// TAKE_OWNERSHIP - Tell this stream that it owns the underlying
28 /// stream and is responsible for cleanup, memory management
33 /// REFERENCE_ONLY - Tell this stream it should not manage the
34 /// held stream.
39 /// TheStream - The real stream we output to. We set it to be
45 /// stream?
71 /// flushBuffer - Dump the contents of the buffer to Stream.
85 /// current_pos - Return the current position within the stream,
96 /// circular-buffered stream, handing it an underlying stream t
    [all...]
  /external/opencv3/modules/cudabgsegm/include/opencv2/
cudabgsegm.hpp 85 virtual void apply(InputArray image, OutputArray fgmask, double learningRate, Stream& stream) = 0;
88 virtual void getBackgroundImage(OutputArray backgroundImage, Stream& stream) const = 0;
132 virtual void apply(InputArray image, OutputArray fgmask, double learningRate, Stream& stream) = 0;
134 virtual void getBackgroundImage(OutputArray backgroundImage, Stream& stream) const = 0;
  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/
copy.hpp 64 __host__ void gridCopy_(const SrcPtr& src, GpuMat_<DstType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
73 grid_copy_detail::copy<Policy>(shrinkPtr(src), shrinkPtr(dst), shrinkPtr(mask), rows, cols, StreamAccessor::getStream(stream));
77 __host__ void gridCopy_(const SrcPtr& src, const GlobPtrSz<DstType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
85 grid_copy_detail::copy<Policy>(shrinkPtr(src), shrinkPtr(dst), shrinkPtr(mask), rows, cols, StreamAccessor::getStream(stream));
89 __host__ void gridCopy_(const SrcPtr& src, GpuMat_<DstType>& dst, Stream& stream = Stream::Null()
    [all...]
transform.hpp 64 __host__ void gridTransformUnary_(const SrcPtr& src, GpuMat_<DstType>& dst, const UnOp& op, const MaskPtr& mask, Stream& stream = Stream::Null())
73 grid_transform_detail::transform_unary<Policy>(shrinkPtr(src), shrinkPtr(dst), op, shrinkPtr(mask), rows, cols, StreamAccessor::getStream(stream));
77 __host__ void gridTransformUnary_(const SrcPtr& src, const GlobPtrSz<DstType>& dst, const UnOp& op, const MaskPtr& mask, Stream& stream = Stream::Null())
85 grid_transform_detail::transform_unary<Policy>(shrinkPtr(src), shrinkPtr(dst), op, shrinkPtr(mask), rows, cols, StreamAccessor::getStream(stream));
89 __host__ void gridTransformUnary_(const SrcPtr& src, GpuMat_<DstType>& dst, const UnOp& op, Stream& stream = Stream::Null()
    [all...]
  /frameworks/ex/framesequence/jni/
FrameSequence.cpp 21 FrameSequence* FrameSequence::create(Stream* stream) {
22 const RegistryEntry* entry = Registry::Find(stream);
26 FrameSequence* frameSequence = entry->createFrameSequence(stream);
FrameSequence.h 20 #include "Stream.h"
40 * Creates a FrameSequence using data from the data stream
42 * Type determined by header information in the stream
44 static FrameSequence* create(Stream* stream);
  /external/opencv3/modules/core/src/
cuda_stream.cpp 258 /// Stream::Impl
262 class cv::cuda::Stream::Impl
279 class cv::cuda::Stream::Impl
282 cudaStream_t stream;
286 Impl(cudaStream_t stream);
291 cv::cuda::Stream::Impl::Impl() : stream(0)
293 cudaSafeCall( cudaStreamCreate(&stream) );
295 stackAllocator_ = makePtr<StackAllocator>(stream);
298 cv::cuda::Stream::Impl::Impl(cudaStream_t stream_) : stream(stream_
373 cudaStream_t stream = NULL; local
495 static Stream stream; local
    [all...]
  /external/opencv3/modules/cudaarithm/src/cuda/
countnonzero.cu 62 void countNonZeroImpl(const GpuMat& _src, GpuMat& _dst, Stream& stream)
67 gridCountNonZero(src, dst, stream);
71 void cv::cuda::countNonZero(InputArray _src, OutputArray _dst, Stream& stream)
73 typedef void (*func_t)(const GpuMat& src, GpuMat& dst, Stream& stream);
85 GpuMat src = getInputMat(_src, stream);
90 GpuMat dst = getOutputMat(_dst, 1, 1, CV_32SC1, stream);
93 func(src, dst, stream);
    [all...]
  /external/libbrillo/brillo/streams/
input_stream_set.h 12 #include <brillo/streams/stream.h>
16 // Multiplexer stream allows to bundle a bunch of secondary streams in one
17 // logical stream and simulate a read operation across data concatenated from
21 // reading from the multiplexer stream will read all the data from stream1 until
22 // end-of-stream is reached, then keep reading from stream2, stream3 and so on.
30 // muliplexer stream does not close the referenced streams.
31 class BRILLO_EXPORT InputStreamSet : public Stream {
35 // Generic method that constructs a multiplexer stream on a list of source
36 // streams. |source_streams| is the list of all source stream references
38 // of source stream instances that the multiplexer stream will own
    [all...]
input_stream_set.cc 15 std::vector<Stream*> source_streams,
22 StreamPtr InputStreamSet::Create(std::vector<Stream*> source_streams,
25 StreamPtr stream; local
28 Error::AddTo(error, FROM_HERE, errors::stream::kDomain,
29 errors::stream::kInvalidParameter,
30 "Source stream list is empty");
31 return stream;
35 for (Stream* src_stream : source_streams) {
37 Error::AddTo(error, FROM_HERE, errors::stream::kDomain,
38 errors::stream::kInvalidParameter
118 Stream* stream = source_streams_.front(); local
169 Stream* stream = source_streams_.front(); local
188 Stream* stream = source_streams_.front(); local
199 Stream* stream = source_streams_.front(); local
    [all...]
  /external/lzma/CPP/7zip/Common/
CWrappers.h 21 ISequentialInStream *Stream;
25 CSeqInStreamWrap(ISequentialInStream *stream) throw();
31 IInStream *Stream;
34 CSeekInStreamWrap(IInStream *stream) throw();
40 ISequentialOutStream *Stream;
44 CSeqOutStreamWrap(ISequentialOutStream *stream) throw();
56 ISequentialInStream *Stream;
89 ISequentialOutStream *Stream;
  /libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
StreamReuseTest.java 23 package java.util.stream;
45 S stream = data.stream(); local
46 T fr = first.apply(stream);
48 U sr = second.apply(stream);
63 stream = data.parallelStream();
64 fr = first.apply(stream);
66 U sr = second.apply(stream);
82 // Stream
85 public void testTwoStreams(String name, TestData<Integer, Stream<Integer>> data)
    [all...]
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
StreamTestScenario.java 23 package java.util.stream;
37 * stream (as provided by the data source) to a new stream, and a sink to
39 * stream contents. The test driver will ensure that all scenarios produce
47 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) {
48 Stream<U> s = m.apply(data.stream());
60 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) {
61 for (U t : m.apply(data.stream()).collect(Collectors.toList())) {
70 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m)
    [all...]
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
StreamTestScenario.java 23 package org.openjdk.testlib.java.util.stream;
32 import java.util.stream.*;
34 import org.openjdk.testlib.java.util.stream.FlagDeclaringOp;
40 * stream (as provided by the data source) to a new stream, and a sink to
42 * stream contents. The test driver will ensure that all scenarios produce
50 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m) {
51 Stream<U> s = m.apply(data.stream());
63 void _run(TestData<T, S_IN> data, Consumer<U> b, Function<S_IN, Stream<U>> m)
    [all...]
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
StreamCloseTest.java 23 package org.openjdk.tests.java.util.stream;
25 import org.openjdk.testlib.java.util.stream.OpTestCase;
28 import java.util.stream.Stream;
32 import static org.openjdk.testlib.java.util.stream.LambdaTestHelpers.countTo;
42 try (Stream<Integer> ints = countTo(100).stream()) {
51 try (Stream<Integer> ints = countTo(100).stream()) {
58 try (Stream<Integer> ints = countTo(100).stream().onClose(closer))
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tree.Tests.pas 653 Stream: ITreeNodeStream;
661 Stream := CreateCommonTreeNodeStream(T);
662 CheckEquals(GetStringOfEntireStreamContentsWithNodeTypesOnly(Stream),' 101 102 103 104');
663 CheckEquals(Stream.ToString, ' 101 2 102 2 103 3 104 3');
669 Stream: ITreeNodeStream;
674 Stream := CreateCommonTreeNodeStream(T);
675 CheckEquals(GetStringOfEntireStreamContentsWithNodeTypesOnly(Stream),' 101 102');
676 CheckEquals(Stream.ToString, ' 101 2 102 3');
682 Stream: ITreeNodeStream;
707 Stream := CreateUnBufferedTreeNodeStream(T)
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/expr/
warping.hpp 113 __host__ void assignTo(GpuMat_<T>& dst, Stream& stream = Stream::Null()) const
115 gridPyrDown(src, dst, stream);
135 __host__ void assignTo(GpuMat_<T>& dst, Stream& stream = Stream::Null()) const
137 gridPyrUp(src, dst, stream);
157 __host__ void assignTo(GpuMat_<T>& dst, Stream& stream = Stream::Null()) cons
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/
StreamingVideoActivity.java 51 * Simple storage class for stream information.
53 static class Stream implements Serializable {
55 * Human-readable name for the stream.
65 * URI of the stream
69 public Stream(String name, String code, String uri) {
79 } else if (o == null || !(o instanceof Stream)) {
82 Stream stream = (Stream) o; local
83 return name.equals(stream.name
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 144 unsigned AbbrevToUse, BitstreamWriter &Stream) {
155 Stream.EmitRecord(Code, Vals, AbbrevToUse);
160 BitstreamWriter &Stream) {
164 Stream.EnterSubblock(bitc::PARAMATTR_BLOCK_ID, 3);
175 Stream.EmitRecord(bitc::PARAMATTR_CODE_ENTRY_OLD, Record);
179 Stream.ExitBlock();
184 BitstreamWriter &Stream) {
187 Stream.EnterSubblock(bitc::TYPE_BLOCK_ID_NEW, 4 /*count from # abbrevs */);
197 unsigned PtrAbbrev = Stream.EmitAbbrev(Abbv);
206 unsigned FunctionAbbrev = Stream.EmitAbbrev(Abbv)
    [all...]
  /external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 258 : DiagOpts(Diags), Stream(Buffer), OutputFile(File.str()),
268 llvm::BitstreamWriter Stream;
324 llvm::BitstreamWriter &Stream,
328 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETBID, Record);
339 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_BLOCKNAME, Record);
344 llvm::BitstreamWriter &Stream,
352 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETRECORDNAME, Record);
400 State->Stream.EmitRecordWithBlob(State->Abbrevs.get(RECORD_FILENAME), Record,
411 State->Stream.EmitRecordWithAbbrev(State->Abbrevs.get(RECORD_SOURCE_RANGE),
418 State->Stream.Emit((unsigned)'D', 8)
    [all...]
  /external/google-breakpad/src/processor/
synth_minidump.h 37 // test_assembler::Sections. The file header, stream directory,
91 // the stream directory; memory ranges should be listed in the
103 // memory list stream.
163 // A stream within a minidump file. 'Add'ing a stream to a minidump
164 // creates an entry for it in the minidump's stream directory.
165 class Stream: public Section {
167 // Create a stream of type TYPE. You can append whatever contents
168 // you like to this stream using the test_assembler::Section methods.
169 Stream(const Dump &dump, uint32_t type) : Section(dump), type_(type) {
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
toplevel.ml 9 let rec main_loop the_fpm the_execution_engine stream =
10 match Stream.peek stream with
15 Stream.junk stream;
16 main_loop the_fpm the_execution_engine stream
22 let e = Parser.parse_definition stream in
26 let e = Parser.parse_extern stream in
31 let e = Parser.parse_toplevel stream in
43 with Stream.Error s | Codegen.Error s -
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
toplevel.ml 9 let rec main_loop the_fpm the_execution_engine stream =
10 match Stream.peek stream with
15 Stream.junk stream;
16 main_loop the_fpm the_execution_engine stream
22 let e = Parser.parse_definition stream in
26 let e = Parser.parse_extern stream in
31 let e = Parser.parse_toplevel stream in
43 with Stream.Error s | Codegen.Error s -
    [all...]

Completed in 3829 milliseconds

1 2 34 5 6 7 8 91011>>