Searched defs:consumer (Results 1 - 25 of 92) sorted by last modified time

1234

/external/valgrind/main/drd/tests/
H A Dcircular_buffer.c1 /* Test program that performs producer-consumer style communication through
167 static void consumer(int* id) function
216 (void * (*)(void *)) consumer, &thread_arg[i]);
/external/skia/src/ports/
H A DSkImageDecoder_CG.cpp150 // we don't own/reference the stream, so it our consumer must not live
157 CGDataConsumerRef consumer = SkStreamToCGDataConsumer(stream); local
158 if (NULL == consumer) {
161 SkAutoTCallVProc<const void, CFRelease> arconsumer(consumer);
163 return CGImageDestinationCreateWithDataConsumer(consumer, type, 1, NULL);
178 to our SkWStream. Since we don't reference/own the SkWStream, our consumer
/external/proguard/src/proguard/optimize/evaluation/
H A DEvaluationShrinker.java765 if (DEBUG) System.out.println(" Inserting before marked consumer "+instruction.toString(offset));
864 if (DEBUG) System.out.println(" Replacing unmarked consumer "+instruction.toString(offset));
1410 * Marks the producing instructions of the variable consumer at the given
1412 * @param consumerOffset the offset of the variable consumer.
1437 * Marks the initializing instructions of the variable consumer at the given
1439 * @param consumerOffset the offset of the variable consumer.
1473 * consumer at the given offset.
1475 * @param consumerOffset the offset of the consumer.
1476 * @param consumer the consumer o
1478 markStackProducers(Clazz clazz, int consumerOffset, Instruction consumer) argument
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/dom4j/bean/ org/dom4j/datatype/ org/ ...
/external/oauth/core/src/main/java/net/oauth/
H A DOAuthAccessor.java38 public final OAuthConsumer consumer; field in class:OAuthAccessor
43 public OAuthAccessor(OAuthConsumer consumer) { argument
44 this.consumer = consumer;
68 * consumer.getProperty("httpMethod") or (if that's null)
77 method = (String) this.consumer.getProperty("httpMethod");
85 Object accepted = consumer.getProperty(OAuthConsumer.ACCEPT_ENCODING);
/external/mesa3d/src/glsl/
H A Dlinker.cpp632 gl_shader *producer, gl_shader *consumer)
654 /* Find all shader inputs in the "consumer" stage. Any variables that have
658 foreach_list(node, consumer->ir) {
1949 * (the "producer") and consumed in the next stage (the "consumer").
1951 * \param input_var is the input variable declaration in the consumer.
1956 * locations in the consumer.
1963 * consumed by the consumer).
2030 * (the "producer") and consumed in the next stage (the "consumer").
2044 * When num_tfeedback_decls is nonzero, it is permissible for the consumer to
2051 gl_shader *producer, gl_shader *consumer,
631 cross_validate_outputs_to_inputs(struct gl_shader_program *prog, gl_shader *producer, gl_shader *consumer) argument
2049 assign_varying_locations(struct gl_context *ctx, struct gl_shader_program *prog, gl_shader *producer, gl_shader *consumer, unsigned num_tfeedback_decls, tfeedback_decl *tfeedback_decls) argument
[all...]
/external/llvm/tools/llvm-diff/
H A DDiffLog.h30 Consumer &consumer; member in class:llvm::LogBuilder
42 : consumer(c), Format(Format) {}
61 Consumer &consumer; member in class:llvm::DiffLogBuilder
64 DiffLogBuilder(Consumer &c) : consumer(c) {}
H A DDifferenceEngine.h39 Engine.consumer.enterContext(L, R);
43 Engine.consumer.exitContext();
61 DifferenceEngine(Consumer &consumer) argument
62 : consumer(consumer), globalValueOracle(nullptr) {}
67 consumer.log(text);
70 return LogBuilder(consumer, text);
72 Consumer& getConsumer() const { return consumer; }
86 Consumer &consumer; member in class:llvm::DifferenceEngine
/external/kernel-headers/original/uapi/linux/
H A Dpps.h120 int consumer; /* selected kernel consumer */ member in struct:pps_bind_args
/external/harfbuzz_ng/util/
H A Dmain-font-text.hh41 consumer (&options) {}
58 consumer.init (&font_opts);
64 consumer.consume_line (buffer, text, text_len, input.text_before, input.text_after);
67 consumer.finish (&font_opts);
69 return consumer.failed ? 1 : 0;
76 consumer_t consumer; member in struct:main_font_text_t
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/deqp/framework/delibs/dethread/
H A DdeThreadTest.c438 /* Producer-consumer test. */
442 deThread consumer; local
452 consumer = deThread_create(consumerThread, &testBuffer, DE_NULL);
455 DE_TEST_ASSERT(consumer && producer);
457 ret = deThread_join(consumer) &&
462 deThread_destroy(consumer);
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp221 ObjCMigrator(ObjCMigrateASTConsumer &consumer, ParentMap &PMap) argument
222 : Consumer(consumer), PMap(PMap) { }
259 BodyMigrator(ObjCMigrateASTConsumer &consumer) : Consumer(consumer) { } argument
/external/clang/lib/Frontend/
H A DChainedIncludesSource.cpp161 std::unique_ptr<ASTConsumer> consumer; local
162 consumer.reset(new PCHGenerator(Clang->getPreprocessor(), "-", nullptr,
165 consumer->GetASTMutationListener());
166 Clang->setASTConsumer(consumer.release());
/external/clang/lib/Sema/
H A DSema.cpp76 Sema::Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer, argument
81 LangOpts(pp.getLangOpts()), PP(pp), Context(ctxt), Consumer(consumer),
142 // Tell the AST consumer about this Sema object.
760 // Notify the consumer that we've completed a tentative definition.
/external/chromium_org/third_party/skia/src/ports/
H A DSkImageDecoder_CG.cpp203 // we don't own/reference the stream, so it our consumer must not live
210 CGDataConsumerRef consumer = SkStreamToCGDataConsumer(stream); local
211 if (NULL == consumer) {
214 SkAutoTCallVProc<const void, CFRelease> arconsumer(consumer);
216 return CGImageDestinationCreateWithDataConsumer(consumer, type, 1, NULL);
231 to our SkWStream. Since we don't reference/own the SkWStream, our consumer
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlinker.cpp632 gl_shader *producer, gl_shader *consumer)
654 /* Find all shader inputs in the "consumer" stage. Any variables that have
658 foreach_list(node, consumer->ir) {
1949 * (the "producer") and consumed in the next stage (the "consumer").
1951 * \param input_var is the input variable declaration in the consumer.
1956 * locations in the consumer.
1963 * consumed by the consumer).
2030 * (the "producer") and consumed in the next stage (the "consumer").
2044 * When num_tfeedback_decls is nonzero, it is permissible for the consumer to
2051 gl_shader *producer, gl_shader *consumer,
631 cross_validate_outputs_to_inputs(struct gl_shader_program *prog, gl_shader *producer, gl_shader *consumer) argument
2049 assign_varying_locations(struct gl_context *ctx, struct gl_shader_program *prog, gl_shader *producer, gl_shader *consumer, unsigned num_tfeedback_decls, tfeedback_decl *tfeedback_decls) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebMediaStreamSource.cpp171 static ConsumerWrapper* create(WebAudioDestinationConsumer* consumer) argument
173 return new ConsumerWrapper(consumer);
179 WebAudioDestinationConsumer* consumer() { return m_consumer; } function in class:blink::FINAL
182 explicit ConsumerWrapper(WebAudioDestinationConsumer* consumer) : m_consumer(consumer) { } argument
207 void WebMediaStreamSource::addAudioConsumer(WebAudioDestinationConsumer* consumer) argument
210 ASSERT(!m_private.isNull() && consumer);
212 m_private->addAudioConsumer(ConsumerWrapper::create(consumer));
215 bool WebMediaStreamSource::removeAudioConsumer(WebAudioDestinationConsumer* consumer) argument
218 ASSERT(!m_private.isNull() && consumer);
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/mediastream/
H A DMediaStreamSource.cpp72 void MediaStreamSource::addAudioConsumer(AudioDestinationConsumer* consumer) argument
76 m_audioConsumers.add(consumer);
79 bool MediaStreamSource::removeAudioConsumer(AudioDestinationConsumer* consumer) argument
83 HeapHashSet<Member<AudioDestinationConsumer> >::iterator it = m_audioConsumers.find(consumer);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathBlender.cpp299 bool SVGPathBlender::addAnimatedPath(SVGPathSource* fromSource, SVGPathSource* toSource, SVGPathConsumer* consumer, unsigned repeatCount) argument
302 return blendAnimatedPath(0, fromSource, toSource, consumer);
305 bool SVGPathBlender::blendAnimatedPath(float progress, SVGPathSource* fromSource, SVGPathSource* toSource, SVGPathConsumer* consumer) argument
309 ASSERT(consumer);
312 m_consumer = consumer;
H A DSVGPathParser.h42 void setCurrentConsumer(SVGPathConsumer* consumer) { m_consumer = consumer; } argument

Completed in 384 milliseconds

1234