Searched defs:Producer (Results 1 - 17 of 17) sorted by relevance

/external/dagger2/producers/src/main/java/dagger/producers/
H A DProducer.java23 * {@code Producer<T>} instead of {@code T}, which will delay the execution of any code that
26 * <p>For example, you might inject {@code Producer} to lazily choose between several different
30 * {@literal @Electric Producer<Heater>} electricHeater,
31 * {@literal @Gas Producer<Heater>} gasHeater) {
56 * {@literal @Produces @Delayed ListenableFuture<C>} delayedC(A a, {@literal Producer<C>} c) {
93 public interface Producer<T> { interface
/external/mockito/src/test/java/org/mockitousage/misuse/
H A DSpyStubbingMisuseTest.java20 Producer out = spy(new Producer(mfoo));
45 public class Producer { class in class:SpyStubbingMisuseTest
47 Producer(Strategy f) { method in class:SpyStubbingMisuseTest.Producer
/external/deqp/framework/delibs/decpp/
H A DdeThreadSafeRingBuffer.cpp96 class Producer : public Thread class in namespace:de::__anon4197
99 Producer (ThreadSafeRingBuffer<Message>& buffer, deUint16 threadId, int dataSize) function in class:de::__anon4197::Producer
134 vector<Producer*> producers;
138 producers.push_back(new Producer(buffer, (deUint16)i, dataSize));
148 for (vector<Producer*>::iterator i = producers.begin(); i != producers.end(); i++)
152 for (vector<Producer*>::iterator i = producers.begin(); i != producers.end(); i++)
177 for (vector<Producer*>::iterator i = producers.begin(); i != producers.end(); i++)
H A DdeBlockBuffer.cpp122 class Producer : public Thread class in namespace:de::BlockBufferBasicTest
125 Producer (MessageBuffer& buffer, deUint16 threadId, int numMessages) function in class:de::BlockBufferBasicTest::Producer
171 vector<Producer*> producers;
175 producers.push_back(new Producer(buffer, (deUint16)i, dataSize));
185 for (vector<Producer*>::iterator i = producers.begin(); i != producers.end(); i++)
189 for (vector<Producer*>::iterator i = producers.begin(); i != producers.end(); i++)
216 for (vector<Producer*>::iterator i = producers.begin(); i != producers.end(); i++)
228 class Producer : public Thread class in namespace:de::BlockBufferCancelTest
231 Producer (BlockBuffer<deUint8>* buffer, deUint32 seed) function in class:de::BlockBufferCancelTest::Producer
316 threads.push_back(new Producer(
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DQueuesTest.java64 // notice that if a Producer is interrupted (a bug), the Producer will go into an infinite
87 threadPool.submit(new Producer(q, 20));
88 threadPool.submit(new Producer(q, 20));
89 threadPool.submit(new Producer(q, 20));
90 threadPool.submit(new Producer(q, 20));
91 threadPool.submit(new Producer(q, 20));
112 Future<?> submitter = threadPool.submit(new Producer(q, 1));
160 threadPool.submit(new Producer(q, 1));
197 new Producer(
277 private static class Producer implements Runnable { class in class:QueuesTest
281 Producer(BlockingQueue<Object> q, int elements) { method in class:QueuesTest.Producer
[all...]
/external/llvm/bindings/go/llvm/
H A DDIBuilderBindings.cpp39 const char *Producer,
43 return wrap(D->createCompileUnit(Lang, File, Dir, Producer, Optimized, Flags,
36 LLVMDIBuilderCreateCompileUnit(LLVMDIBuilderRef Dref, unsigned Lang, const char *File, const char *Dir, const char *Producer, int Optimized, const char *Flags, unsigned RuntimeVersion) argument
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCCodeEmitter.cpp91 static bool RegisterMatches(unsigned Consumer, unsigned Producer, argument
93 if (Consumer == Producer)
98 if (Producer >= Hexagon::W0 && Producer <= Hexagon::W15)
100 return ((Consumer - Hexagon::V0) >> 1) == (Producer - Hexagon::W0);
168 // Producer is unpredicated
174 // Producer predicate sense matched ours
H A DHexagonMCInstrInfo.cpp793 unsigned Producer,
797 if (Producer >= Hexagon::W0 && Producer <= Hexagon::W15)
792 SubregisterBit(unsigned Consumer, unsigned Producer, unsigned Producer2) argument
/external/llvm/lib/IR/
H A DDebugInfoMetadata.cpp360 MDString *Producer, bool IsOptimized, MDString *Flags,
366 assert(isCanonical(Producer) && "Expected canonical MDString");
371 File, Producer, Flags, SplitDebugFilename,
358 getImpl( LLVMContext &Context, unsigned SourceLanguage, Metadata *File, MDString *Producer, bool IsOptimized, MDString *Flags, unsigned RuntimeVersion, MDString *SplitDebugFilename, unsigned EmissionKind, Metadata *EnumTypes, Metadata *RetainedTypes, Metadata *GlobalVariables, Metadata *ImportedEntities, Metadata *Macros, uint64_t DWOId, StorageType Storage, bool ShouldCreate) argument
H A DDIBuilder.cpp112 unsigned Lang, StringRef Filename, StringRef Directory, StringRef Producer,
124 VMContext, Lang, DIFile::get(VMContext, Filename, Directory), Producer,
111 createCompileUnit( unsigned Lang, StringRef Filename, StringRef Directory, StringRef Producer, bool isOptimized, StringRef Flags, unsigned RunTimeVer, StringRef SplitName, DICompileUnit::DebugEmissionKind Kind, uint64_t DWOId) argument
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DDIBuilder.cpp76 StringRef Directory, StringRef Producer,
106 MDString::get(VMContext, Producer),
75 createCompileUnit(unsigned Lang, StringRef Filename, StringRef Directory, StringRef Producer, bool isOptimized, StringRef Flags, unsigned RunTimeVer) argument
/external/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h1014 StringRef Producer, bool IsOptimized, StringRef Flags,
1021 Context, SourceLanguage, File, getCanonicalMDString(Context, Producer),
1029 MDString *Producer, bool IsOptimized, MDString *Flags,
1050 (unsigned SourceLanguage, DIFile *File, StringRef Producer,
1057 (SourceLanguage, File, Producer, IsOptimized, Flags, RuntimeVersion,
1062 (unsigned SourceLanguage, Metadata *File, MDString *Producer,
1067 (SourceLanguage, File, Producer, IsOptimized, Flags, RuntimeVersion,
1013 getImpl(LLVMContext &Context, unsigned SourceLanguage, DIFile *File, StringRef Producer, bool IsOptimized, StringRef Flags, unsigned RuntimeVersion, StringRef SplitDebugFilename, unsigned EmissionKind, DICompositeTypeArray EnumTypes, DIScopeArray RetainedTypes, DIGlobalVariableArray GlobalVariables, DIImportedEntityArray ImportedEntities, DIMacroNodeArray Macros, uint64_t DWOId, StorageType Storage, bool ShouldCreate = true) argument
/external/llvm/lib/Target/Hexagon/Disassembler/
H A DHexagonDisassembler.cpp374 unsigned Producer = local
376 assert(Producer != Hexagon::NoRegister);
377 MCO.setReg(Producer);
379 unsigned Producer = local
381 if (Producer >= Hexagon::W0 && Producer <= Hexagon::W15)
382 Producer = ((Producer - Hexagon::W0) << 1) + SubregBit + Hexagon::V0;
387 assert(Producer != Hexagon::NoRegister);
388 MCO.setReg(Producer);
[all...]
/external/llvm/unittests/IR/
H A DMetadataTest.cpp1320 StringRef Producer = "some producer"; local
1333 Context, SourceLanguage, File, Producer, IsOptimized, Flags,
1341 EXPECT_EQ(Producer, N->getProducer());
1358 EXPECT_EQ(Producer, Temp->getProducer());
1380 StringRef Producer = "some producer"; local
1391 Context, SourceLanguage, File, Producer, IsOptimized, Flags,
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp433 std::string Producer = getClangFullVersion(); local
459 Producer, LO.Optimize, CGM.getCodeGenOpts().DwarfDebugFlags, RuntimeVers,
/external/swiftshader/third_party/subzero/src/
H A DIceTargetLoweringMIPS32.cpp3109 const Inst *Producer = Computations.getProducerOf(Boolean); local
3110 if (Producer == nullptr) {
3118 if (Producer->getKind() == Inst::Icmp) {
3119 const InstIcmp *CompareInst = llvm::cast<InstIcmp>(Producer);
/external/pdfium/xfa/fxfa/
H A Dfxfa_basic.h767 Producer, member in class:XFA_Element

Completed in 818 milliseconds