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

  /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/v8/src/compiler/
pipeline.h 25 class Pipeline {
27 explicit Pipeline(CompilationInfo* info) : info_(info) {}
29 // Run the entire pipeline and generate a handle to a code object.
32 // Run the pipeline on a machine graph and generate code. If {schedule}
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
UtilityCode.py 92 import Pipeline, ParseTreeTransforms
99 pipeline = Pipeline.create_pipeline(context, 'pyx', exclude_classes=excludes)
103 for t in pipeline:
108 pipeline = p
114 pipeline = Pipeline.insert_into_pipeline(pipeline, transform,
123 pipeline = Pipeline.insert_into_pipeline(pipeline, scope_transform
    [all...]
Main.py 88 # pipeline creation functions can now be found in Pipeline.py
91 import Pipeline
95 pipeline = Pipeline.create_pyx_as_pxd_pipeline(self, result_sink)
96 result = Pipeline.run_pipeline(pipeline, source)
98 pipeline = Pipeline.create_pxd_pipeline(self, scope, module_name)
99 result = Pipeline.run_pipeline(pipeline, source_desc
    [all...]
  /external/chromium_org/media/base/
pipeline.cc 5 #include "media/base/pipeline.h"
32 Pipeline::Pipeline(
53 Pipeline::~Pipeline() {
55 << "Pipeline must be destroyed on same thread that created it";
64 void Pipeline::Start(Demuxer* demuxer,
80 CHECK(!running_) << "Media pipeline is already running";
94 FROM_HERE, base::Bind(&Pipeline::StartTask, weak_factory_.GetWeakPtr()));
97 void Pipeline::Stop(const base::Closure& stop_cb)
    [all...]
pipeline.h 36 // Metadata describing a pipeline once it has been initialized.
50 // Pipeline runs the media pipeline. Filters are created and called on the
51 // task runner injected into this object. Pipeline works like a state
77 class MEDIA_EXPORT Pipeline : public DemuxerHost {
79 // Constructs a media pipeline that will execute on |task_runner|.
80 Pipeline(const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
82 virtual ~Pipeline();
84 // Build a pipeline to using the given |demuxer| and |renderer| to construct
96 // overall buffering state of the pipeline
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Build/
Inline.py 18 from Cython.Compiler import Pipeline
47 for phase in Pipeline.create_pipeline(context, 'pyx'):
  /external/chromium_org/third_party/cython/src/pyximport/
pyximport.py 521 import Cython.Compiler.Main, Cython.Compiler.Pipeline, Cython.Compiler.Optimize
  /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) {
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsps2.c 52 implemented as a set of curves), matrix-shaper and Pipeline-based.
269 _cmsStageCLutData* Pipeline;
576 // Out[] The Pipeline values, normalized to 0..ffff
580 // Each row contains Pipeline values for all but first component. So, I
646 for (i=0; i < sc -> Pipeline ->Params->nOutputs; i++) {
661 // Writes a Pipeline on memstream. Could be 8 or 16 bits based
676 sc.Pipeline = (_cmsStageCLutData *) mpe ->Data;
688 for (i=0; i < sc.Pipeline->Params->nInputs; i++)
689 _cmsIOPrintf(m, " %d ", sc.Pipeline->Params->nSamples[i]);
771 int EmitCIEBasedDEF(cmsIOHANDLER* m, cmsPipeline* Pipeline, int Intent, cmsCIEXYZ* BlackPoint
    [all...]
cmsvirt.c 293 cmsPipeline* Pipeline;
311 // Creates a Pipeline with prelinearization step only
312 Pipeline = cmsPipelineAlloc(ContextID, nChannels, nChannels);
313 if (Pipeline == NULL) goto Error;
316 // Copy tables to Pipeline
317 if (!cmsPipelineInsertStage(Pipeline, cmsAT_BEGIN, cmsStageAllocToneCurves(ContextID, nChannels, TransferFunctions)))
322 if (!cmsWriteTag(hICC, cmsSigAToB0Tag, (void*) Pipeline)) goto Error;
325 // Pipeline is already on virtual profile
326 cmsPipelineFree(Pipeline);
332 cmsPipelineFree(Pipeline);
    [all...]

Completed in 364 milliseconds