Searched defs:Pipeline (Results 1 - 12 of 12) 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/chromium_org/v8/src/compiler/
H A Dpipeline.h25 class Pipeline { class in namespace:v8::internal::compiler
27 explicit Pipeline(CompilationInfo* info) : info_(info) {} function in class:v8::internal::compiler::Pipeline
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DUtilityCode.py92 import Pipeline, ParseTreeTransforms namespace
99 pipeline = Pipeline.create_pipeline(context, 'pyx', exclude_classes=excludes)
114 pipeline = Pipeline.insert_into_pipeline(pipeline, transform,
123 pipeline = Pipeline.insert_into_pipeline(pipeline, scope_transform,
126 (err, tree) = Pipeline.run_pipeline(pipeline, tree, printtree=False)
H A DMain.py88 # pipeline creation functions can now be found in Pipeline.py
91 import Pipeline namespace
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)
394 import Pipeline namespace
428 pipeline = Pipeline.create_py_pipeline(context, options, result)
430 pipeline = Pipeline.create_pyx_pipeline(context, options, result)
433 err, enddata = Pipeline
[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( function in class:media::Pipeline
53 Pipeline::~Pipeline() {
55 << "Pipeline must be destroyed on same thread that created it";
64 void Pipeline::Start(Demuxer* demuxer,
94 FROM_HERE, base::Bind(&Pipeline::StartTask, weak_factory_.GetWeakPtr()));
97 void Pipeline::Stop(const base::Closure& stop_cb) {
101 base::Bind(&Pipeline::StopTask, weak_factory_.GetWeakPtr(), stop_cb));
104 void Pipeline
[all...]
H A Dpipeline.h50 // 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 { class in namespace:media
80 Pipeline(const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
82 virtual ~Pipeline();
184 // Pipeline states, as described above.
222 // methods are run as the result of posting a task to the Pipeline's
363 base::WeakPtrFactory<Pipeline> weak_factory_;
365 DISALLOW_COPY_AND_ASSIGN(Pipeline);
/external/chromium_org/third_party/cython/src/Cython/Build/
H A DInline.py18 from Cython.Compiler import Pipeline namespace
47 for phase in Pipeline.create_pipeline(context, 'pyx'):
/external/chromium_org/third_party/cython/src/pyximport/
H A Dpyximport.py521 import Cython.Compiler.Main, Cython.Compiler.Pipeline, Cython.Compiler.Optimize namespace
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsps2.c52 implemented as a set of curves), matrix-shaper and Pipeline-based.
269 _cmsStageCLutData* Pipeline; member in struct:__anon28690
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, in argument
[all...]
H A Dcmsvirt.c293 cmsPipeline* Pipeline; local
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);
736 cmsPipeline* Pipeline; local
[all...]

Completed in 262 milliseconds