Searched defs:Pipeline (Results 1 - 5 of 5) sorted by relevance

/external/llvm/utils/lit/lit/
H A DShCommands.py38 class Pipeline: class in inherits:
45 return 'Pipeline(%r, %r, %r)' % (self.commands, self.negate,
49 if not isinstance(other, Pipeline):
H A DShUtil.py5 from lit.ShCommands import Command, Pipeline, Seq namespace
230 return Pipeline(commands, negate, self.pipefail)
291 Pipeline([Command(['echo', 'hello'], [])], False))
293 Pipeline([Command(['echo', ''], [])], False))
295 Pipeline([Command(['echo', '-DFOO=a'], [])], False))
297 Pipeline([Command(['echo', '-DFOO=a'], [])], False))
301 Pipeline([Command(['echo', 'hello'],
304 Pipeline([Command(['echo', 'hello'], [(('>',), 'c'),
307 Pipeline([Command(['a'], [(('>&',2), '1')])], False))
311 Pipeline([Comman
[all...]
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DPipeline.java43 public class Pipeline extends InputStream { class in inherits:InputStream
59 Pipeline pipeline;
63 protected MyTimer(Pipeline pipeline) {
122 public Pipeline(InputStream pipe, int readTimeout, Timer timer) { method in class:Pipeline
/external/chromium_org/media/base/
H A Dpipeline.cc32 Pipeline::Pipeline(const scoped_refptr<base::MessageLoopProxy>& message_loop, function in class:media::Pipeline
58 Pipeline::~Pipeline() {
60 << "Pipeline must be destroyed on same thread that created it";
69 void Pipeline::Start(scoped_ptr<FilterCollection> collection,
81 &Pipeline::StartTask, base::Unretained(this), base::Passed(&collection),
85 void Pipeline::Stop(const base::Closure& stop_cb) {
88 &Pipeline::StopTask, base::Unretained(this), stop_cb));
91 void Pipeline
[all...]
H A Dpipeline.h35 // Pipeline runs the media pipeline. Filters are created and called on the
36 // message loop injected into this object. Pipeline works like a state
66 class MEDIA_EXPORT Pipeline : public DemuxerHost { class in namespace:media
84 Pipeline(const scoped_refptr<base::MessageLoopProxy>& message_loop,
86 virtual ~Pipeline();
202 // Pipeline states, as described above.
448 DISALLOW_COPY_AND_ASSIGN(Pipeline);

Completed in 162 milliseconds