Searched refs:Stream (Results 1 - 25 of 363) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Tests.pas47 Stream: IANTLRStringStream;
49 Stream := TANTLRStringStream.Create('One'#13#10'Two');
50 CheckEquals(0, Stream.Index);
51 CheckEquals(0, Stream.CharPositionInLine);
52 CheckEquals(1, Stream.Line);
54 Stream.Consume; // O
55 CheckEquals(1, Stream.Index);
56 CheckEquals(1, Stream.CharPositionInLine);
57 CheckEquals(1, Stream.Line);
59 Stream
[all...]
/external/llvm/lib/IR/
H A DDiagnosticPrinter.cpp24 Stream << C;
29 Stream << C;
34 Stream << C;
39 Stream << Str;
44 Stream << Str;
50 Stream << Str;
55 Stream << N;
59 Stream << N;
65 Stream << N;
70 Stream <<
[all...]
/external/opencv3/modules/cudaarithm/include/opencv2/
H A Dcudaarithm.hpp82 @param stream Stream for the asynchronous version.
86 CV_EXPORTS void add(InputArray src1, InputArray src2, OutputArray dst, InputArray mask = noArray(), int dtype = -1, Stream& stream = Stream::Null());
97 @param stream Stream for the asynchronous version.
101 CV_EXPORTS void subtract(InputArray src1, InputArray src2, OutputArray dst, InputArray mask = noArray(), int dtype = -1, Stream& stream = Stream::Null());
111 @param stream Stream for the asynchronous version.
115 CV_EXPORTS void multiply(InputArray src1, InputArray src2, OutputArray dst, double scale = 1, int dtype = -1, Stream& stream = Stream::Null());
125 @param stream Stream fo
330 scaleAdd(InputArray src1, double alpha, InputArray src2, OutputArray dst, Stream& stream = Stream::Null()) argument
[all...]
/external/opencv3/modules/cudawarping/include/opencv2/
H A Dcudawarping.hpp76 @param stream Stream for the asynchronous version.
88 Stream& stream = Stream::Null());
104 @param stream Stream for the asynchronous version.
108 CV_EXPORTS void resize(InputArray src, OutputArray dst, Size dsize, double fx=0, double fy=0, int interpolation = INTER_LINEAR, Stream& stream = Stream::Null());
122 @param stream Stream for the asynchronous version.
127 int borderMode = BORDER_CONSTANT, Scalar borderValue = Scalar(), Stream& stream = Stream::Null());
136 @param stream Stream fo
[all...]
/external/opencv3/modules/photo/include/opencv2/photo/
H A Dcuda.hpp62 @param stream Stream for the asynchronous version.
72 Stream& stream = Stream::Null());
87 @param stream Stream for the asynchronous invocations.
99 Stream& stream = Stream::Null());
114 @param stream Stream for the asynchronous invocations.
126 Stream& stream = Stream::Null());
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRInputStream.cs35 using Stream = System.IO.Stream;
45 public ANTLRInputStream(Stream input)
49 public ANTLRInputStream(Stream input, int size)
53 public ANTLRInputStream(Stream input, Encoding encoding)
57 public ANTLRInputStream(Stream input, int size, Encoding encoding)
61 public ANTLRInputStream(Stream input, int size, int readBufferSize, Encoding encoding)
65 private static StreamReader GetStreamReader(Stream input, Encoding encoding) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DANTLRInputStream.cs36 using Stream = System.IO.Stream;
47 public ANTLRInputStream( Stream input )
52 public ANTLRInputStream( Stream input, int size )
57 public ANTLRInputStream( Stream input, Encoding encoding )
62 public ANTLRInputStream( Stream input, int size, Encoding encoding )
67 public ANTLRInputStream( Stream input, int size, int readBufferSize, Encoding encoding )
72 private static StreamReader GetStreamReader(Stream input, Encoding encoding)
/external/libbrillo/brillo/streams/
H A Dopenssl_stream_bio.h15 class Stream;
17 // Creates a new BIO that uses the brillo::Stream as the back-end storage.
23 BRILLO_EXPORT BIO* BIO_new_stream(brillo::Stream* stream);
H A Dstream_utils.h15 // Generates "Stream closed" error and returns false.
55 Stream::Whence whence,
62 inline bool IsReadAccessMode(Stream::AccessMode mode) {
63 return mode == Stream::AccessMode::READ ||
64 mode == Stream::AccessMode::READ_WRITE;
68 inline bool IsWriteAccessMode(Stream::AccessMode mode) {
69 return mode == Stream::AccessMode::WRITE ||
70 mode == Stream::AccessMode::READ_WRITE;
74 inline Stream::AccessMode MakeAccessMode(bool read, bool write) {
77 return Stream
[all...]
/external/opencv3/modules/cudaimgproc/include/opencv2/
H A Dcudaimgproc.hpp83 @param stream Stream for the asynchronous version.
90 CV_EXPORTS void cvtColor(InputArray src, OutputArray dst, int code, int dcn = 0, Stream& stream = Stream::Null());
118 @param stream Stream for the asynchronous version.
136 CV_EXPORTS void demosaicing(InputArray src, OutputArray dst, int code, int dcn = -1, Stream& stream = Stream::Null());
144 @param stream Stream for the asynchronous version.
148 CV_EXPORTS void swapChannels(InputOutputArray image, const int dstOrder[4], Stream& stream = Stream::Null());
155 @param stream Stream fo
[all...]
/external/webrtc/webrtc/
H A Dstream.h23 class Stream { class in namespace:webrtc
38 virtual ~Stream() {}
42 class ReceiveStream : public Stream {
52 class SendStream : public Stream {};
/external/opencv3/modules/cudalegacy/include/opencv2/
H A Dcudalegacy.hpp73 virtual void getLayer(OutputArray outImg, Size outRoi, Stream& stream = Stream::Null()) const = 0;
76 CV_EXPORTS Ptr<ImagePyramid> createImagePyramid(InputArray img, int nLayers = -1, Stream& stream = Stream::Null());
92 virtual void apply(InputArray image, OutputArray fgmask, double learningRate, Stream& stream) = 0;
197 Stream& stream = Stream::Null());
202 void operator ()(const GpuMat& I0, const GpuMat& I1, GpuMat& flowx, GpuMat& flowy, int search_window = 21, int block_window = 7, Stream& s = Stream::Null());
224 @param stream Stream fo
[all...]
/external/clang/test/Sema/
H A Dparentheses.cpp32 class Stream { class
35 Stream &operator<<(int);
36 Stream &operator<<(const char*);
37 Stream &operator>>(int);
38 Stream &operator>>(const char*);
41 void f(Stream& s, bool b) {
98 Stream() << b + c;
99 Stream() >> b + c; // expected-warning {{operator '>>' has lower precedence than '+'; '+' will be evaluated first}} \
/external/opencv3/modules/core/include/opencv2/core/
H A Dcuda_stream_accessor.hpp65 class Stream;
68 /** @brief Class that enables getting cudaStream_t from cuda::Stream
72 CV_EXPORTS static cudaStream_t getStream(const Stream& stream);
/external/opencv3/modules/cudev/include/opencv2/cudev/grid/
H A Dtranspose.hpp61 __host__ void gridTranspose_(const SrcPtr& src, GpuMat_<DstType>& dst, Stream& stream = Stream::Null()) argument
72 __host__ void gridTranspose_(const SrcPtr& src, const GlobPtrSz<DstType>& dst, Stream& stream = Stream::Null()) argument
93 __host__ void gridTranspose(const SrcPtr& src, GpuMat_<DstType>& dst, Stream& stream = Stream::Null()) argument
99 __host__ void gridTranspose(const SrcPtr& src, const GlobPtrSz<DstType>& dst, Stream& stream = Stream::Null()) argument
/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoder.cs9 System.IO.Stream Stream; field in class:SevenZip.Compression.RangeCoder.Encoder
18 public void SetStream(System.IO.Stream stream)
20 Stream = stream;
25 Stream = null;
30 StartPosition = Stream.Position;
46 Stream.Flush();
51 Stream.Close();
72 Stream.WriteByte((byte)(temp + (Low >> 32)));
117 Stream
128 public System.IO.Stream Stream; field in class:SevenZip.Compression.RangeCoder.Decoder
[all...]
/external/vogar/test/vogar/testing/
H A DInterceptOutputStreamsTest.java27 import vogar.testing.InterceptOutputStreams.Stream;
40 public InterceptOutputStreams iosRule = new InterceptOutputStreams(Stream.OUT, Stream.ERR);
52 assertTrue(iosRule.contents(Stream.OUT).endsWith("\nAfter Tests OUT\n"));
53 assertTrue(iosRule.contents(Stream.ERR).endsWith("\nAfter Tests ERR\n"));
59 final InterceptOutputStreams ios = new InterceptOutputStreams(Stream.OUT, Stream.ERR);
66 assertEquals("Hello\n", ios.contents(Stream.OUT));
67 assertEquals("World\n", ios.contents(Stream.ERR));
70 assertEquals("Before Tests OUT\n", iosRule.contents(Stream
[all...]
/external/clang/lib/Frontend/
H A DSerializedDiagnosticReader.cpp32 llvm::BitstreamCursor Stream(StreamFile);
35 if (Stream.Read(8) != 'D' ||
36 Stream.Read(8) != 'I' ||
37 Stream.Read(8) != 'A' ||
38 Stream.Read(8) != 'G')
42 while (!Stream.AtEndOfStream()) {
43 if (Stream.ReadCode() != llvm::bitc::ENTER_SUBBLOCK)
47 switch (Stream.ReadSubBlockID()) {
49 if (Stream.ReadBlockInfoBlock())
53 if ((EC = readMetaBlock(Stream)))
76 skipUntilRecordOrBlock( llvm::BitstreamCursor &Stream, unsigned &BlockOrRecordID) argument
111 readMetaBlock(llvm::BitstreamCursor &Stream) argument
149 readDiagnosticBlock(llvm::BitstreamCursor &Stream) argument
[all...]
/external/opencv3/modules/cudev/include/opencv2/cudev/expr/
H A Dreduction.hpp69 __host__ void assignTo(GpuMat_<T>& dst, Stream& stream = Stream::Null()) const
91 __host__ void assignTo(GpuMat_<T>& dst, Stream& stream = Stream::Null()) const
113 __host__ void assignTo(GpuMat_<T>& dst, Stream& stream = Stream::Null()) const
135 __host__ void assignTo(GpuMat_<T>& dst, Stream& stream = Stream::Null()) const
157 __host__ void assignTo(GpuMat_<T>& dst, Stream& stream = Stream
[all...]
/external/lzma/Java/SevenZip/Compression/RangeCoder/
H A DDecoder.java15 java.io.InputStream Stream; field in class:Decoder
19 Stream = stream;
24 Stream = null;
32 Code = (Code << 8) | Stream.read();
47 Code = (Code << 8) | Stream.read();
64 Code = (Code << 8) | Stream.read();
76 Code = (Code << 8) | Stream.read();
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DStream.pm1 package ANTLR::Runtime::Stream;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRMismatchedTreeNodeException.h38 + (id) newANTLRMismatchedTreeNodeException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRMismatchedTreeNodeException.h38 + (id) newANTLRMismatchedTreeNodeException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRMismatchedTreeNodeException.h38 + (id) newANTLRMismatchedTreeNodeException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRMismatchedTreeNodeException.h38 + (id) newException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;

Completed in 1106 milliseconds

1234567891011>>