HomeSort by relevance Sort by last modified time
    Searched defs:Stream (Results 1 - 10 of 10) sorted by null

  /external/clang/test/Sema/
parentheses.cpp 20 class Stream {
23 Stream &operator<<(int);
24 Stream &operator<<(const char*);
27 void f(Stream& s, bool b) {
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
Logger.java 32 public static class Stream extends PrintStream {
36 public Stream(String name) {
102 public static Stream getStream(String name) {
105 return new Stream(name);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/
StreamingVideoActivity.java 39 * Simple storage class for stream information.
41 static class Stream implements Serializable {
43 * Human-readable name for the stream.
53 * URI of the stream
57 public Stream(String name, String code, String uri) {
67 } else if (o == null || !(o instanceof Stream)) {
70 Stream stream = (Stream) o; local
71 return name.equals(stream.name
    [all...]
  /frameworks/base/media/libstagefright/mpeg2ts/
ATSParser.cpp 76 KeyedVector<unsigned, sp<Stream> > mStreams;
85 struct ATSParser::Stream : public RefBase {
86 Stream(Program *program, unsigned elementaryPID, unsigned streamType);
104 virtual ~Stream();
129 DISALLOW_EVIL_CONSTRUCTORS(Stream);
285 LOGI("uh oh. stream PIDs have changed.");
295 sp<Stream> stream = mStreams.editValueAt(i);
297 LOGI("PID 0x%08x => type 0x%02x", stream->pid(), stream->type())
354 sp<Stream> stream = new Stream(this, info.mPID, info.mType); local
    [all...]
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 411 llvm::OwningPtr<llvm::raw_fd_ostream> Stream;
412 Stream.reset(new llvm::raw_fd_ostream(Filename.c_str(), ErrMsg));
417 return new UbigraphViz(Stream.take(), Dir, Filename);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginView.cpp 86 class PluginView::Stream : public RefCounted<PluginView::Stream>, NetscapePlugInStreamLoaderClient {
88 static PassRefPtr<Stream> create(PluginView* pluginView, uint64_t streamID, const ResourceRequest& request)
90 return adoptRef(new Stream(pluginView, streamID, request));
92 ~Stream();
100 Stream(PluginView* pluginView, uint64_t streamID, const ResourceRequest& request)
118 // True if the stream was explicitly cancelled by calling cancel().
125 PluginView::Stream::~Stream()
130 void PluginView::Stream::start(
670 RefPtr<Stream> stream = PluginView::Stream::create(this, request->requestID(), request->request()); local
888 RefPtr<Stream> stream = m_streams.get(streamID).get(); local
    [all...]
  /external/clang/include/clang/Serialization/
Module.h 88 llvm::BitstreamCursor Stream;
ASTWriter.h 75 /// output stream, plus those deserialized from a chained PCH.
79 /// stored in the stream, the ID number is shifted by 2 bits to
88 llvm::BitstreamWriter &Stream;
134 /// the output stream, as well as those deserialized from a chained PCH.
152 /// output stream, plus those deserialized from a chained PCH.
156 /// stored in the stream, the ID number is shifted by 2 bits to
173 /// the output stream.
390 ASTWriter(llvm::BitstreamWriter &Stream);
642 llvm::BitstreamWriter Stream;
  /bionic/libc/netbsd/isc/
eventlib_p.h 172 enum { Accept, File, Stream, Timer, Wait, Free, Null } type;
176 struct { evStream *this; } stream; member in union:evEvent_p::__anon552
  /external/clang/lib/Serialization/
ASTReader.cpp 955 // the stream. This cursor will be used to read the contents of th
    [all...]

Completed in 243 milliseconds