HomeSort by relevance Sort by last modified time
    Searched full:producer (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium/base/
weak_ptr_unittest.cc 35 struct Producer : SupportsWeakPtr<Producer> {};
36 struct Consumer { WeakPtr<Producer> producer; }; member in struct:base::__anon2318::Consumer
89 Producer f;
90 WeakPtr<Producer> ptr = f.AsWeakPtr();
119 scoped_ptr<Producer> producer(OffThreadObjectCreator<Producer>::NewObject());
120 WeakPtr<Producer> weak_producer = producer->AsWeakPtr()
129 Producer producer; local
    [all...]
dynamic_annotations.h 122 // Report that the producer-consumer queue (such as ProducerConsumerQueue) at
  /external/qemu/
framebuffer.h 19 * one 'Producer' and one or more 'Clients'
21 * The Producer is in charge of updating the pixel buffer from the state
23 * sent from the producer through qframebuffer_update()/_rotate() and
35 * More about the client/producer relationships below.
126 /* Producer::CheckUpdate is called to let the producer check the
133 /* Producer::Invalidate tells the producer that the next call to
139 /* the Producer::Detach method is used to tell the producer that th
    [all...]
  /external/proguard/src/proguard/evaluation/
TracedStack.java 29 * The stack stores a given producer Value along with each Value it stores.
30 * It then generalizes a given collected Value with the producer Value
31 * of each Value it loads. The producer Value and the initial collected Value
75 * Gets the specified producer Value from the stack, without disturbing it.
78 * @return the producer value at the specified position.
87 * Sets the specified producer Value on the stack, without disturbing it.
90 * @param value the producer value to set.
99 * Gets the specified producer Value from the stack, without disturbing it.
102 * @return the producer value at the specified position.
111 * Sets the specified producer Value on the stack, without disturbing it
    [all...]
TracedVariables.java 29 * The Variables class stores a given producer Value along with each Value it
30 * stores. It then generalizes a given collected Value with the producer Value
31 * of each Value it loads. The producer Value and the initial collected Value
99 * Gets the producer Value for the specified variable, without disturbing it.
101 * @return the producer value of the given variable.
110 * Sets the given producer Value for the specified variable, without
113 * @param value the producer value to set.
178 // Store the producer value in its producer variable.
  /external/qemu/docs/
ANDROID-FRAMEBUFFER.TXT 39 - can have one producer in charge of drawing into the pixel buffer
47 if fb.producer:
48 fb.producer.check_updates()
49 => in producer
56 hw/goldfish_fb.c implements a producer
  /external/kernel-headers/original/linux/
clk.h 27 * clk_get - lookup and obtain a reference to a clock producer.
31 * Returns a struct clk corresponding to the clock producer, or
34 * the clock producer. (IOW, @id may be identical strings, but
  /frameworks/base/libs/rs/
rsLocklessFifo.h 26 // A simple FIFO to be used as a producer / consumer between two
  /external/apache-http/src/org/apache/http/entity/
EntityTemplate.java 40 * content producer.
55 throw new IllegalArgumentException("Content producer may not be null");
ContentProducer.java 38 * An abstract entity content producer.
  /external/elfutils/tests/
run-show-die-info.sh 31 Attrs : name stmt_list low_pc high_pc language comp_dir producer
36 producer : GNU C 2.96 20000731 (Red Hat Linux 7.0)
55 Attrs : name stmt_list low_pc high_pc language comp_dir producer
60 producer : GNU C 2.96 20000731 (Red Hat Linux 7.0)
79 Attrs : name stmt_list low_pc high_pc language comp_dir producer
84 producer : GNU C 2.96 20000731 (Red Hat Linux 7.0)
129 Attrs : name stmt_list low_pc high_pc language comp_dir producer
134 producer : GNU C 2.96-laurel-000912
916 Attrs : name stmt_list low_pc high_pc language comp_dir producer
921 producer : GNU C 2.96-laurel-00091
    [all...]
show-die-info.c 112 { DW_AT_producer, "producer" },
418 printf ("%*s producer : %s\n", n * 5, "", name);
  /external/proguard/src/proguard/optimize/info/
ParameterUsageMarker.java 196 Value producer = local
198 if (producer != null &&
199 producer.instructionOffsetValue().contains(PartialEvaluator.AT_METHOD_ENTRY))
  /libcore/luni/src/main/java/java/util/concurrent/
BlockingQueue.java 76 * primarily for producer-consumer queues, but additionally support
102 * Usage example, based on a typical producer-consumer scenario.
106 * class Producer implements Runnable {
108 * Producer(BlockingQueue q) { queue = q; }
131 * Producer p = new Producer(q);
SynchronousQueue.java 46 * waiting producer and consumer threads. By default, this ordering
148 * offered by producer.
197 /** Node represents an unfulfilled producer */
    [all...]
package-info.java 81 * for producer-consumer, messaging, parallel tasking, and
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationShrinker.java 738 if (DEBUG) System.out.println(" Inserting after marked producer "+instruction.toString(offset));
1700 Value producer = partialEvaluator.getVariablesBefore(offset).getProducerValue(variableIndex); local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/
unwind.h 55 /* @@@ The IA-64 ABI uses a 64-bit word to identify the producer and
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/install-tools/include/
unwind.h 55 /* @@@ The IA-64 ABI uses a 64-bit word to identify the producer and
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/
unwind.h 52 /* @@@ The IA-64 ABI uses a 64-bit word to identify the producer and
  /prebuilt/linux-x86/toolchain/sh-4.3.3/lib/gcc/sh-linux-gnu/4.3.3/include/
unwind.h 55 /* @@@ The IA-64 ABI uses a 64-bit word to identify the producer and
  /frameworks/base/libs/ui/
InputTransport.cpp 33 // Signal sent by the producer to the consumer to inform it that a new message is
37 // Signal sent by the consumer to the producer to inform it that it has finished
  /external/clearsilver/util/
neo_net.c 314 * consumer and the other the producer... and then it switches. So we
  /external/proguard/src/proguard/preverify/
CodePreverifier.java 423 // Does the reference type have a single producer?
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
CoroutineManager.java 75 * <p>"Note: This should not be taken to mean that producer/consumer

Completed in 1917 milliseconds

1 2