OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Consumer
(Results
226 - 250
of
735
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/frameworks/support/slices/builders/src/main/java/androidx/slice/builders/
MessagingSliceBuilder.java
31
import androidx.core.util.
Consumer
;
72
public MessagingSliceBuilder add(
Consumer
<MessageBuilder> c) {
ListBuilder.java
34
import androidx.core.util.
Consumer
;
199
public ListBuilder addRow(@NonNull
Consumer
<RowBuilder> c) {
224
public ListBuilder addGrid(@NonNull
Consumer
<GridBuilder> c) {
243
public ListBuilder addGridRow(@NonNull
Consumer
<GridRowBuilder> c) {
288
public ListBuilder setHeader(@NonNull
Consumer
<HeaderBuilder> c) {
395
public ListBuilder setSeeMoreRow(@NonNull
Consumer
<RowBuilder> c) {
468
public ListBuilder addSeeMoreRow(@NonNull
Consumer
<RowBuilder> c) {
532
public ListBuilder addInputRange(@NonNull
Consumer
<InputRangeBuilder> c) {
551
public ListBuilder addRange(@NonNull
Consumer
<RangeBuilder> c) {
562
* @see ListBuilder#addRange(
Consumer
)
[
all
...]
/libcore/ojluni/src/main/java/java/util/
Optional.java
27
import java.util.function.
Consumer
;
41
* {@link #ifPresent(java.util.function.
Consumer
) ifPresent()} (execute a block
146
* If a value is present, invoke the specified
consumer
with the value,
149
* @param
consumer
block to be executed if a value is present
150
* @throws NullPointerException if value is present and {@code
consumer
} is
153
public void ifPresent(
Consumer
<? super T>
consumer
) {
155
consumer
.accept(value);
/libcore/ojluni/src/main/java/java/util/concurrent/
CopyOnWriteArraySet.java
45
import java.util.function.
Consumer
;
419
public void forEach(
Consumer
<? super E> action) {
/libcore/ojluni/src/main/java/java/util/stream/
Sink.java
28
import java.util.function.
Consumer
;
34
* An extension of {@link
Consumer
} used to conduct values through the stages of
88
* {@code
Consumer
}, and re-abstract the appropriate primitive specialization of
118
public interface Sink<T> extends
Consumer
<T> {
Node.java
28
import java.util.function.
Consumer
;
74
* {@code
Consumer
} with each element. Elements are provided in encounter
77
* @param
consumer
a {@code
Consumer
} that is to be invoked with each
80
void forEach(
Consumer
<? super T>
consumer
);
242
* @param action a
consumer
that is to be invoked with each
319
* @param
consumer
a {@code
Consumer
} that is to be invoked with each
325
default void forEach(
Consumer
<? super Integer> consumer)
[
all
...]
/packages/apps/DocumentsUI/src/com/android/documentsui/
ActionHandler.java
36
import java.util.function.
Consumer
;
72
void getRootDocument(RootInfo root, int timeout,
Consumer
<DocumentInfo> callback);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
CachingIconLoader.java
20
import com.android.quicksearchbox.util.
Consumer
;
101
implements
Consumer
<Drawable>{
/prebuilts/jdk/jdk8/darwin-x86/sample/lambda/BulkDataOperations/src/
WC.java
44
import java.util.function.
Consumer
;
169
private static class WCStatistics implements
Consumer
<String> {
/prebuilts/jdk/jdk8/linux-x86/sample/lambda/BulkDataOperations/src/
WC.java
44
import java.util.function.
Consumer
;
169
private static class WCStatistics implements
Consumer
<String> {
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
StreamSpliteratorTest.java
38
import java.util.function.
Consumer
;
88
public boolean tryAdvance(
Consumer
<? super T>
consumer
) {
91
return sp.tryAdvance(
consumer
);
95
public void forEachRemaining(
Consumer
<? super T>
consumer
) {
97
sp.forEachRemaining(
consumer
);
136
public boolean tryAdvance(
Consumer
<? super Integer>
consumer
) {
137
return Spliterator.OfInt.super.tryAdvance(
consumer
);
[
all
...]
/cts/hostsidetests/jvmti/redefining/app/src/android/jvmti/cts/
JvmtiRedefineClassesTest.java
71
interface
Consumer
<T> {
75
static class StringCollector implements
Consumer
<String> {
93
// NB This field has type Landroid/jvmti/cts/JvmtiRedefineClassesTest$
Consumer
;
94
private
Consumer
<String> reporter;
96
public Transform(
Consumer
<String> reporter) {
160
* // NB This field has type Landroid/jvmti/cts/JvmtiRedefineClassesTest$
Consumer
;
161
* private
Consumer
<String> reporter;
162
* public Transform(
Consumer
<String> reporter) {
224
// The
consumer
that we use to observe the changes to the Transform class.
365
* private
Consumer
<String> reporter
[
all
...]
/external/perfetto/src/tracing/core/
service_impl.h
44
class
Consumer
;
110
// The implementation behind the service endpoint exposed to each
consumer
.
113
ConsumerEndpointImpl(ServiceImpl*, base::TaskRunner*,
Consumer
*);
133
Consumer
* const consumer_;
181
Consumer
*) override;
208
// a specific
Consumer
. Each
Consumer
can own one or more sessions.
220
// The
consumer
that started the session.
221
ConsumerEndpointImpl* const
consumer
;
member in struct:perfetto::ServiceImpl::PendingFlush::TracingSession
223
// The original trace config provided by the
Consumer
when callin
[
all
...]
/external/perfetto/src/tracing/ipc/service/
consumer_ipc_service.h
27
#include "perfetto/tracing/core/
consumer
.h"
38
// Implements the
Consumer
port of the IPC service. This class proxies requests
39
// and responses between the core service logic (|svc_|) and remote
Consumer
(s)
60
// Acts like a
Consumer
with the core Service business logic (which doesn't
62
// methods to the remote
Consumer
on the other side of the IPC channel.
63
class RemoteConsumer : public
Consumer
{
77
// specific
Consumer
on the Service business logic.
/frameworks/native/libs/vr/libbufferhubqueue/
buffer_hub_queue_parcelable.cpp
79
BufferHubQueueParcelableMagic::
Consumer
>;
/libcore/luni/src/test/java/libcore/java/util/
PrimitiveIteratorTest.java
25
import java.util.function.
Consumer
;
126
cit.forEachRemaining((
Consumer
<Integer>) null);
173
cit.forEachRemaining((
Consumer
<Long>) null);
220
cit.forEachRemaining((
Consumer
<Double>) null);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
BarrierConsumer.java
25
* A
consumer
that consumes a fixed number of values. When the expected number of values
28
public class BarrierConsumer<A> implements
Consumer
<A> {
/packages/services/BuiltInPrintService/src/com/android/bips/ipp/
Backend.java
42
import java.util.function.
Consumer
;
60
private
Consumer
<JobStatus> mJobStatusListener;
93
final
Consumer
<LocalPrinterCapabilities> capabilitiesConsumer) {
111
Consumer
<JobStatus> listener) {
/external/clang/lib/Frontend/
FrontendAction.cpp
140
std::unique_ptr<ASTConsumer>
Consumer
= CreateASTConsumer(CI, InFile);
141
if (!
Consumer
)
144
// If there are no registered plugins we don't need to wrap the
consumer
146
return
Consumer
;
180
// Add to Consumers the main
consumer
, then all the plugins that go after it
181
Consumers.push_back(std::move(
Consumer
));
235
// Create the AST
consumer
.
329
// Create the AST context and
consumer
unless this is a preprocessor only
336
std::unique_ptr<ASTConsumer>
Consumer
=
338
if (!
Consumer
)
[
all
...]
/libcore/luni/src/test/java/libcore/java/security/
ProviderTest.java
51
import java.util.function.
Consumer
;
[
all
...]
/art/test/1950-unprepared-transform/src/
Main.java
22
import java.util.function.
Consumer
;
58
private static
Consumer
<Class<?>> doRedefine = null;
/cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/ime/
CtsBaseInputMethod.java
41
import java.util.function.
Consumer
;
160
private void executeOnInputConnection(final
Consumer
<InputConnection>
consumer
) {
165
consumer
.accept(ic);
/cts/tests/framework/base/windowmanager/src/android/server/wm/
DialogFrameTestActivity.java
32
import java.util.function.
Consumer
;
113
private void doLayoutParamTest(
Consumer
<LayoutParams> setUp) {
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/
AnnotationDeclaration.java
43
import java.util.function.
Consumer
;
128
public void ifAnnotationDeclaration(
Consumer
<AnnotationDeclaration> action) {
InitializerDeclaration.java
40
import java.util.function.
Consumer
;
165
public void ifInitializerDeclaration(
Consumer
<InitializerDeclaration> action) {
Completed in 1637 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>