HomeSort by relevance Sort by last modified time
    Searched full:consumer (Results 126 - 150 of 929) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/1.12/
gradle-tooling-api-1.12-sources.jar 
  /libcore/ojluni/src/main/java/java/util/stream/
DoublePipeline.java 370 public void forEach(DoubleConsumer consumer) {
371 evaluate(ForEachOps.makeDouble(consumer, false));
375 public void forEachOrdered(DoubleConsumer consumer) {
376 evaluate(ForEachOps.makeDouble(consumer, true));
560 public void forEach(DoubleConsumer consumer) {
562 adapt(sourceStageSpliterator()).forEachRemaining(consumer);
565 super.forEach(consumer);
570 public void forEachOrdered(DoubleConsumer consumer) {
572 adapt(sourceStageSpliterator()).forEachRemaining(consumer);
575 super.forEachOrdered(consumer);
    [all...]
  /libcore/ojluni/src/main/java/java/util/
OptionalDouble.java 128 * Have the specified consumer accept the value if a value is present,
131 * @param consumer block to be executed if a value is present
132 * @throws NullPointerException if value is present and {@code consumer} is
135 public void ifPresent(DoubleConsumer consumer) {
137 consumer.accept(value);
OptionalInt.java 129 * Have the specified consumer accept the value if a value is present,
132 * @param consumer block to be executed if a value is present
133 * @throws NullPointerException if value is present and {@code consumer} is
136 public void ifPresent(IntConsumer consumer) {
138 consumer.accept(value);
OptionalLong.java 128 * Have the specified consumer accept the value if a value is present,
131 * @param consumer block to be executed if a value is present
132 * @throws NullPointerException if value is present and {@code consumer} is
135 public void ifPresent(LongConsumer consumer) {
137 consumer.accept(value);
SplittableRandom.java     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalSource.java 192 public void mapMediaItems(ArrayList<PathId> list, ItemConsumer consumer) {
208 processMapMediaItems(imageList, consumer, true);
209 processMapMediaItems(videoList, consumer, false);
213 ItemConsumer consumer, boolean isImage) {
239 consumer.consume(pid2.id, items[k - i]);
  /prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/2.0/
gradle-tooling-api-2.0-sources.jar 
  /prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/1.10/
gradle-tooling-api-1.10-sources.jar 
  /prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/1.11/
gradle-tooling-api-1.11-sources.jar 
  /prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/1.9/
gradle-tooling-api-1.9-sources.jar 
  /external/clang/include/clang/Frontend/
CompilerInstance.h 99 /// The AST consumer.
100 std::unique_ptr<ASTConsumer> Consumer;
102 /// The code completion consumer.
473 bool hasASTConsumer() const { return (bool)Consumer; }
476 assert(Consumer && "Compiler instance has no AST consumer!");
477 return *Consumer;
480 /// takeASTConsumer - Remove the current AST consumer and give ownership to
482 std::unique_ptr<ASTConsumer> takeASTConsumer() { return std::move(Consumer); }
484 /// setASTConsumer - Replace the current AST consumer; the compiler instanc
    [all...]
FrontendAction.h 51 /// \brief Create the AST consumer object for this action, if supported.
54 /// fail if the AST consumer cannot be created. This will not be called if the
63 /// \return The new AST consumer, or null on failure.
223 /// \brief Abstract base class to use for AST consumer-based frontend actions.
227 /// the already-initialized AST consumer.
229 /// This will also take care of instantiating a code completion consumer if
  /external/clang/lib/Frontend/
FrontendAction.cpp 140 std::unique_ptr<ASTConsumer> Consumer = CreateASTConsumer(CI, InFile);
141 if (!Consumer)
145 return Consumer;
147 // Make sure the non-plugin consumer is first, so that plugins can't
150 Consumers.push_back(std::move(Consumer));
217 // Create the AST consumer.
311 // Create the AST context and consumer unless this is a preprocessor only
318 std::unique_ptr<ASTConsumer> Consumer =
320 if (!Consumer)
325 CI.getASTContext().setASTMutationListener(Consumer->GetASTMutationListener())
    [all...]
  /frameworks/base/core/java/android/view/
SurfaceControl.java 44 private static native void nativeScreenshot(IBinder displayToken, Surface consumer,
733 * @param consumer The {@link Surface} to take the screenshot into.
746 public static void screenshot(IBinder display, Surface consumer,
749 screenshot(display, consumer, new Rect(), width, height, minLayer, maxLayer,
757 * @param consumer The {@link Surface} to take the screenshot into.
763 public static void screenshot(IBinder display, Surface consumer,
765 screenshot(display, consumer, new Rect(), width, height, 0, 0, true, false);
772 * @param consumer The {@link Surface} to take the screenshot into.
774 public static void screenshot(IBinder display, Surface consumer) {
775 screenshot(display, consumer, new Rect(), 0, 0, 0, 0, true, false)
    [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadLocalRandom.java 737 public boolean tryAdvance(IntConsumer consumer) {
738 if (consumer == null) throw new NullPointerException();
741 consumer.accept(ThreadLocalRandom.current().internalNextInt(origin, bound));
748 public void forEachRemaining(IntConsumer consumer) {
749 if (consumer == null) throw new NullPointerException();
756 consumer.accept(rng.internalNextInt(o, b));
792 public boolean tryAdvance(LongConsumer consumer) {
793 if (consumer == null) throw new NullPointerException();
796 consumer.accept(ThreadLocalRandom.current().internalNextLong(origin, bound));
803 public void forEachRemaining(LongConsumer consumer) {
    [all...]
  /docs/source.android.com/src/devices/graphics/
arch-tv.jd 32 <p>Recall that the SurfaceTexture is a "GL consumer", consuming buffers of graphics
46 and consumer are in the same process, and they might even be handled on a single
50 available until the consumer acquires one for rendering, but that also happens
58 three buffers are acquired by the consumer, then there's nothing to dequeue and
59 the buffer swap call must hang or fail. So we need to prevent the consumer from
62 producer and consumer are in the same process.</p>
arch-st.jd 33 your app is the consumer. When a new buffer is queued by the producer, your app
48 BufferQueue, it sets the consumer usage flags to
61 just a buffer handle to the consumer. Each buffer is accompanied by a timestamp
65 might be in the incorrect orientation for the consumer; but instead of rotating
87 reflects its role as the owner and consumer of a BufferQueue. When you create a
95 <code>setPreviewDisplay()</code>, and let the producer (camera) and consumer
171 is done by setting the correct protected consumer bits
198 composer) as long as the consumer usage bits contain
  /external/skia/src/ports/
SkImageDecoder_CG.cpp 257 // we don't own/reference the stream, so it our consumer must not live
264 CGDataConsumerRef consumer = SkStreamToCGDataConsumer(stream); local
265 if (nullptr == consumer) {
268 SkAutoTCallVProc<const void, CFRelease> arconsumer(consumer);
270 return CGImageDestinationCreateWithDataConsumer(consumer, type, 1, nullptr);
285 to our SkWStream. Since we don't reference/own the SkWStream, our consumer
  /frameworks/av/media/libstagefright/omx/
GraphicBufferSource.h 60 const sp<IGraphicBufferConsumer> &consumer = NULL
180 // in onFrameAvailable() if the actual consumer object is no longer valid.
184 // consumer around.
188 const wp<IGraphicBufferConsumer> &consumer,
246 // Release buffer to the consumer
286 // Number of frames acquired from consumer (debug only)
  /frameworks/base/core/jni/android/graphics/
SurfaceTexture.cpp 259 sp<IGraphicBufferConsumer> consumer; local
260 BufferQueue::createBufferQueue(&producer, &consumer);
263 consumer->setMaxBufferCount(1);
268 surfaceTexture = new GLConsumer(consumer, GL_TEXTURE_EXTERNAL_OES,
271 surfaceTexture = new GLConsumer(consumer, texName,
287 consumer->setConsumerUsageBits(GRALLOC_USAGE_PROTECTED);
  /frameworks/native/libs/gui/tests/
SRGB_test.cpp 78 sp<IGraphicBufferConsumer> consumer; local
79 BufferQueue::createBufferQueue(&producer, &consumer);
80 ASSERT_EQ(NO_ERROR, consumer->setDefaultBufferSize(
82 mCpuConsumer = new CpuConsumer(consumer, 1);
233 // Primary producer and consumer
471 // Make sure we actually got the SRGB buffer on the consumer side
  /frameworks/native/include/gui/
IGraphicBufferProducer.h 52 * calls queueBuffer() to make it available to the consumer.
89 // (i.e. they are not owned by the producer or consumer). Calling this may
167 // both the producer and consumer are controlled by the app, then this call
185 // since both the producer/consumer are controlled by app
258 // disabled since both the producer/consumer are
301 // crop - a crop rectangle that's used as a hint to the consumer
304 // fence - a fence that the consumer must wait on before reading the buffer,
396 // The buffer is not queued for use by the consumer.
422 // called except for getAllocator. A consumer must be already connected.
428 // the producer wants to be notified when the consumer releases a buffe
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/hardware/
ConsumerIr.java 38 * Hardware / Consumer IR
44 * <td>Consumer IR demo</td>

Completed in 657 milliseconds

1 2 3 4 56 7 8 91011>>