/external/llvm/utils/lit/lit/ |
ShCommands.py | 38 class Pipeline: 45 return 'Pipeline(%r, %r, %r)' % (self.commands, self.negate, 49 if not isinstance(other, Pipeline):
|
ShUtil.py | 5 from lit.ShCommands import Command, Pipeline, Seq 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([Command(['a'], []) [all...] |
/external/chromium_org/media/base/ |
pipeline.cc | 5 #include "media/base/pipeline.h" 34 Pipeline::Pipeline(const scoped_refptr<base::MessageLoopProxy>& message_loop, 61 Pipeline::~Pipeline() { 63 << "Pipeline must be destroyed on same thread that created it"; 72 void Pipeline::Start(scoped_ptr<FilterCollection> collection, 79 CHECK(!running_) << "Media pipeline is already running"; 84 &Pipeline::StartTask, base::Unretained(this), base::Passed(&collection), 88 void Pipeline::Stop(const base::Closure& stop_cb) [all...] |
pipeline.h | 37 // Pipeline runs the media pipeline. Filters are created and called on the 38 // message loop injected into this object. Pipeline works like a state 68 class MEDIA_EXPORT Pipeline : public DemuxerHost { 70 // Buffering states the pipeline transitions between during playback. 85 // Constructs a media pipeline that will execute on |message_loop|. 86 Pipeline(const scoped_refptr<base::MessageLoopProxy>& message_loop, 88 virtual ~Pipeline(); 90 // Build a pipeline to using the given filter collection to construct a filter 103 // pipeline's buffering state changes [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
Pipeline.java | 43 public class Pipeline extends InputStream { 59 Pipeline pipeline; field in class:Pipeline.MyTimer 63 protected MyTimer(Pipeline pipeline) { 64 this.pipeline = pipeline; 72 pipeline.close(); 122 public Pipeline(InputStream pipe, int readTimeout, Timer timer) {
|