HomeSort by relevance Sort by last modified time
    Searched refs:Stream (Results 1 - 25 of 1414) 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/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...]
  /external/swiftshader/third_party/subzero/src/
IceGlobalInits.cpp 28 void dumpLinkage(Ice::Ostream &Stream,
34 Stream << "external";
37 Stream << "internal";
114 void FunctionDeclaration::dumpType(Ostream &Stream) const {
117 Stream << Signature;
120 void FunctionDeclaration::dump(Ostream &Stream) const {
124 Stream << "declare ";
125 ::dumpLinkage(Stream, Linkage);
126 ::dumpCallingConv(Stream, CallingConv);
127 Stream << Signature.getReturnType() << " @" << Name << "("
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
gpu_device_context.h 24 class Stream;
35 GPUDeviceContext(int stream_id, gpu::Stream* stream,
36 gpu::Stream* host_to_device_stream,
37 gpu::Stream* device_to_host_stream,
38 gpu::Stream* device_to_device_stream)
40 stream_(stream),
47 gpu::Stream* stream() const override { return stream_; }
48 gpu::Stream* host_to_device_stream() const { return host_to_device_stream_;
    [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);
  /external/tensorflow/tensorflow/stream_executor/
rng.h 28 class Stream;
54 virtual bool DoPopulateRandUniform(Stream *stream,
56 virtual bool DoPopulateRandUniform(Stream *stream,
58 virtual bool DoPopulateRandUniform(Stream *stream,
60 virtual bool DoPopulateRandUniform(Stream *stream,
65 virtual bool DoPopulateRandGaussian(Stream *stream, float mean, float stddev
    [all...]
scratch_allocator.h 29 class Stream;
31 // Interface that allows stream operations (e.g.
32 // Stream::ThenConvolveWithScratch) to optionally request scratch space be
37 // sure to have finished; e.g. at stream synchronization time. This is different
49 virtual int64 GetMemoryLimitInBytes(Stream* stream) = 0;
51 // Returns an allocation on byte_size bytes for use in an operation on stream.
56 Stream* stream, int64 byte_size) = 0;
60 // at the next stream synchronization point after this object has gone out o
    [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);
  /cts/tests/signature/src/android/signature/cts/
ClassProvider.java 18 import java.util.stream.Stream;
38 public abstract Stream<Class<?>> getAllClasses();
43 public abstract Stream<DexMember> getAllMembers(Class<?> klass);
  /external/llvm/lib/DebugInfo/PDB/Raw/
SymbolStream.cpp 1 //===- SymbolStream.cpp - PDB Symbol Stream Access ------------------------===//
27 SymbolStream::SymbolStream(std::unique_ptr<MappedBlockStream> Stream)
28 : Stream(std::move(Stream)) {}
33 codeview::StreamReader Reader(*Stream);
35 if (auto EC = Reader.readArray(SymbolRecords, Stream->getLength()))
  /external/tensorflow/tensorflow/stream_executor/cuda/
cuda_rng.h 30 class Stream;
58 bool DoPopulateRandUniform(Stream *stream, DeviceMemory<float> *v) override;
59 bool DoPopulateRandUniform(Stream *stream, DeviceMemory<double> *v) override;
60 bool DoPopulateRandUniform(Stream *stream,
62 bool DoPopulateRandUniform(Stream *stream,
64 bool DoPopulateRandGaussian(Stream *stream, float mean, float stddev
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
BinaryStreamRef.h 1 //===- BinaryStreamRef.h - A copyable reference to a stream -----*- C++ -*-===//
25 BinaryStreamRefBase() : Stream(nullptr), ViewOffset(0), Length(0) {}
26 BinaryStreamRefBase(StreamType &Stream, uint32_t Offset, uint32_t Length)
27 : Stream(&Stream), ViewOffset(Offset), Length(Length) {}
29 llvm::support::endianness getEndian() const { return Stream->getEndian(); }
32 const StreamType *getStream() const { return Stream; }
36 if (!Stream)
40 return RefType(*Stream, ViewOffset + N, Length - N);
45 if (!Stream)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
BinaryStreamRef.h 1 //===- BinaryStreamRef.h - A copyable reference to a stream -----*- C++ -*-===//
25 BinaryStreamRefBase() : Stream(nullptr), ViewOffset(0), Length(0) {}
26 BinaryStreamRefBase(StreamType &Stream, uint32_t Offset, uint32_t Length)
27 : Stream(&Stream), ViewOffset(Offset), Length(Length) {}
29 llvm::support::endianness getEndian() const { return Stream->getEndian(); }
32 const StreamType *getStream() const { return Stream; }
36 if (!Stream)
40 return RefType(*Stream, ViewOffset + N, Length - N);
45 if (!Stream)
    [all...]
  /external/llvm/include/llvm/DebugInfo/CodeView/
StreamRef.h 1 //===- StreamRef.h - A copyable reference to a stream -----------*- C++ -*-===//
21 StreamRef() : Stream(nullptr), ViewOffset(0), Length(0) {}
22 StreamRef(const StreamInterface &Stream)
23 : Stream(&Stream), ViewOffset(0), Length(Stream.getLength()) {}
24 StreamRef(const StreamInterface &Stream, uint32_t Offset, uint32_t Length)
25 : Stream(&Stream), ViewOffset(Offset), Length(Length) {}
36 return Stream->readBytes(ViewOffset + Offset, Size, Buffer)
    [all...]
  /external/swiftshader/third_party/subzero/pnacl-llvm/
NaClBitCodes.cpp 60 void NaClBitCodeAbbrevOp::Print(raw_ostream& Stream) const {
62 Stream << getValue();
65 Stream << getEncodingName(Enc);
68 Stream << "(" << Val << ")";
71 static void PrintExpression(raw_ostream &Stream,
79 Op.Print(Stream);
81 Stream << "(";
84 if (i > 0) Stream << ",";
85 PrintExpression(Stream, Abbrev, Index);
87 Stream << ")";
    [all...]
  /hardware/interfaces/audio/core/2.0/default/
Stream.cpp 19 #include "core/2.0/default/Stream.h"
25 #include <core/all-versions/default/Stream.impl.h>
  /hardware/interfaces/audio/core/4.0/default/
Stream.cpp 19 #include "core/4.0/default/Stream.h"
25 #include <core/all-versions/default/Stream.impl.h>
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
NamedStreamMap.h 1 //===- NamedStreamMap.h - PDB Named Stream Map ------------------*- C++ -*-===//
35 Error load(BinaryStreamReader &Stream);
40 bool get(StringRef Stream, uint32_t &StreamNo) const;
41 void set(StringRef Stream, uint32_t StreamNo);
42 void remove(StringRef Stream);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/PDB/Native/
NamedStreamMap.h 1 //===- NamedStreamMap.h - PDB Named Stream Map ------------------*- C++ -*-===//
35 Error load(BinaryStreamReader &Stream);
40 bool get(StringRef Stream, uint32_t &StreamNo) const;
41 void set(StringRef Stream, uint32_t StreamNo);
42 void remove(StringRef Stream);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/PDB/Native/
NamedStreamMap.h 1 //===- NamedStreamMap.h - PDB Named Stream Map ------------------*- C++ -*-===//
35 Error load(BinaryStreamReader &Stream);
40 bool get(StringRef Stream, uint32_t &StreamNo) const;
41 void set(StringRef Stream, uint32_t StreamNo);
42 void remove(StringRef Stream);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/PDB/Native/
NamedStreamMap.h 1 //===- NamedStreamMap.h - PDB Named Stream Map ------------------*- C++ -*-===//
39 Error load(BinaryStreamReader &Stream);
44 bool get(StringRef Stream, uint32_t &StreamNo) const;
45 void set(StringRef Stream, uint32_t StreamNo);
46 void remove(StringRef Stream);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/PDB/Native/
NamedStreamMap.h 1 //===- NamedStreamMap.h - PDB Named Stream Map ------------------*- C++ -*-===//
39 Error load(BinaryStreamReader &Stream);
44 bool get(StringRef Stream, uint32_t &StreamNo) const;
45 void set(StringRef Stream, uint32_t StreamNo);
46 void remove(StringRef Stream);

Completed in 1175 milliseconds

1 2 3 4 5 6 7 8 91011>>