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

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tests.pas 47 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.Consume; //
    [all...]
  /external/llvm/lib/IR/
DiagnosticPrinter.cpp 24 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 << N
    [all...]
  /external/opencv3/modules/cudaarithm/include/opencv2/
cudaarithm.hpp 82 @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())
    [all...]
  /external/webrtc/webrtc/
stream.h 23 class Stream {
25 // Starts stream activity.
26 // When a stream is active, it can receive, process and deliver packets.
28 // Stops stream activity.
29 // When a stream is stopped, it can't receive, process or deliver packets.
31 // Called to notify that network state has changed, so that the stream can
38 virtual ~Stream() {}
42 class ReceiveStream : public Stream {
51 // A tag class that denotes send stream type.
52 class SendStream : public Stream {};
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
ctor2.cpp 22 struct Stream : public virtual VBase, public StreamBase
24 Stream() {}
25 virtual ~Stream() {}
28 struct DerivedStream : public Stream
  /ndk/tests/device/test-stlport_static-exception/jni/
ctor2.cpp 22 struct Stream : public virtual VBase, public StreamBase
24 Stream() {}
25 virtual ~Stream() {}
28 struct DerivedStream : public Stream
  /external/opencv3/modules/cudawarping/include/opencv2/
cudawarping.hpp 76 @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())
    [all...]
  /external/opencv3/modules/photo/include/opencv2/photo/
cuda.hpp 62 @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())
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRInputStream.cs 35 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/
ANTLRInputStream.cs 36 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/
openssl_stream_bio.h 15 class Stream;
17 // Creates a new BIO that uses the brillo::Stream as the back-end storage.
18 // The created BIO does *NOT* own the |stream| and the stream must out-live
22 // The returned BIO performs *NON-BLOCKING* IO on the underlying stream.
23 BRILLO_EXPORT BIO* BIO_new_stream(brillo::Stream* stream);
stream_utils.h 10 #include <brillo/streams/stream.h>
15 // Generates "Stream closed" error and returns false.
23 // Generates "Read past end of stream" error and returns false.
32 // signed int64_t type. We use uint64_t for absolute stream pointer positions,
45 // Helper function to calculate the stream position based on the current
46 // stream position and offset. Returns true and the new calculated stream
47 // position in |new_position| if successful. In case of invalid stream
55 Stream::Whence whence,
62 inline bool IsReadAccessMode(Stream::AccessMode mode)
    [all...]
  /frameworks/ex/framesequence/jni/
Registry.h 25 class Stream;
30 FrameSequence* (*createFrameSequence)(Stream* stream);
31 Decoder* (*createDecoder)(Stream* stream);
46 static const RegistryEntry* Find(Stream* stream);
  /external/opencv3/modules/cudaimgproc/include/opencv2/
cudaimgproc.hpp 83 @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())
    [all...]
  /external/opencv3/modules/cudalegacy/include/opencv2/
cudalegacy.hpp 73 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())
    [all...]
  /external/clang/test/Sema/
parentheses.cpp 32 class Stream {
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/
cuda_stream_accessor.hpp 65 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/
transpose.hpp 61 __host__ void gridTranspose_(const SrcPtr& src, GpuMat_<DstType>& dst, Stream& stream = Stream::Null())
68 transpose_detail::transpose<Policy>(shrinkPtr(src), shrinkPtr(dst), rows, cols, StreamAccessor::getStream(stream));
72 __host__ void gridTranspose_(const SrcPtr& src, const GlobPtrSz<DstType>& dst, Stream& stream = Stream::Null())
79 transpose_detail::transpose<Policy>(shrinkPtr(src), shrinkPtr(dst), rows, cols, StreamAccessor::getStream(stream));
93 __host__ void gridTranspose(const SrcPtr& src, GpuMat_<DstType>& dst, Stream& stream = Stream::Null()
    [all...]
  /external/vogar/test/vogar/testing/
InterceptOutputStreamsTest.java 27 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.OUT))
    [all...]
  /external/clang/lib/Frontend/
SerializedDiagnosticReader.cpp 32 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)))
    [all...]
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoder.cs 9 System.IO.Stream Stream;
18 public void SetStream(System.IO.Stream stream)
20 Stream = stream;
25 Stream = null;
30 StartPosition = Stream.Position;
46 Stream.Flush();
51 Stream.Close();
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/rangecoder/
Decoder.java 31 java.io.InputStream Stream;
33 public final void SetStream (java.io.InputStream stream) {
34 Stream = stream;
38 Stream = null;
45 Code = (Code << 8) | Stream.read();
57 Code = (Code << 8) | Stream.read();
71 Code = (Code << 8) | Stream.read();
80 Code = (Code << 8) | Stream.read();
  /external/lzma/Java/SevenZip/Compression/RangeCoder/
Decoder.java 15 java.io.InputStream Stream;
17 public final void SetStream(java.io.InputStream stream)
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();
  /hardware/libhardware/modules/usbcamera/
Stream.h 27 // Stream represents a single input or output stream for a camera device.
28 class Stream {
30 Stream(int id, camera3_stream_t *s);
31 ~Stream();
33 // validate that a stream's parameters match this stream's parameters
46 // This stream is being reused. Used in stream configuration passes
50 // The camera device id this stream belongs t
    [all...]
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
SequentialOpTest.java 23 package org.openjdk.tests.java.util.stream;
25 import org.openjdk.testlib.java.util.stream.LambdaTestHelpers;
26 import org.openjdk.testlib.java.util.stream.OpTestCase;
27 import org.openjdk.testlib.java.util.stream.StreamTestDataProvider;
28 import org.openjdk.testlib.java.util.stream.TestData;
39 import java.util.stream.Stream;
56 Supplier<Stream<Integer>>[] suppliers = new Supplier[] { () -> data.stream(), () -> data.parallelStream() };
57 UnaryOperator<Stream<Integer>>[] config
75 Stream<Integer> stream = config.apply(supp.get()); local
    [all...]

Completed in 1019 milliseconds

1 2 3 4 5 6 7 8 91011>>