Searched refs:accept (Results 1 - 25 of 224) sorted by relevance

123456789

/frameworks/support/compat/src/main/java/androidx/core/util/
H A DConsumer.java30 void accept(T t); method in interface:Consumer
/frameworks/rs/rsov/compiler/spirit/
H A Dvisitor.cpp25 void DoNothingVisitor::visit(Entity *e) { e->accept(this); }
27 void DoNothingVisitor::visit(Module *m) { m->accept(this); }
30 entry->accept(this);
33 void DoNothingVisitor::visit(DebugInfoSection *dinfo) { dinfo->accept(this); }
35 void DoNothingVisitor::visit(AnnotationSection *a) { a->accept(this); }
37 void DoNothingVisitor::visit(GlobalSection *g) { g->accept(this); }
39 fdecl->accept(this);
41 void DoNothingVisitor::visit(Block *b) { b->accept(this); }
42 void DoNothingVisitor::visit(FunctionDefinition *fdef) { fdef->accept(this); }
43 void DoNothingVisitor::visit(Instruction *inst) { inst->accept(thi
[all...]
H A Dtransformer.cpp37 m->accept(this);
50 // TODO fix Module::accept() to have the header serialization code there
52 m->accept(this);
H A Dinstructions.cpp28 void Instruction::accept(IVisitor *v) { v->visit(this); } function in class:android::spirit::Instruction
H A Dtest_utils.h39 e->accept(&v);
/frameworks/base/core/java/com/android/internal/util/function/
H A DTriConsumer.java28 void accept(A a, B b, C c); method in interface:TriConsumer
H A DHexConsumer.java27 void accept(A a, B b, C c, D d, E e, F f); method in interface:HexConsumer
H A DQuadConsumer.java28 void accept(A a, B b, C c, D d); method in interface:QuadConsumer
H A DQuintConsumer.java27 void accept(A a, B b, C c, D d, E e); method in interface:QuintConsumer
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
H A DUiAutomatorTestCaseFilter.java31 public boolean accept(Method method) { method in class:UiAutomatorTestCaseFilter
38 public boolean accept(Class<?> clazz) { method in class:UiAutomatorTestCaseFilter
H A DTestCaseCollector.java90 if (mFilter.accept(method)) {
106 if (!(mFilter.accept(clazz))) {
143 public boolean accept(Method method); method in interface:TestCaseCollector.TestCaseFilter
150 public boolean accept(Class<?> clazz); method in interface:TestCaseCollector.TestCaseFilter
/frameworks/base/core/java/android/webkit/
H A DCookieManager.java45 * accept cookies.
53 * @param accept whether {@link WebView} instances should send and accept
56 public abstract void setAcceptCookie(boolean accept); argument
59 * Gets whether the application's {@link WebView} instances send and accept
62 * @return {@code true} if {@link WebView} instances send and accept cookies
77 * @param accept whether the {@link WebView} instance should accept
80 public abstract void setAcceptThirdPartyCookies(WebView webview, boolean accept); argument
235 * Gets whether the application's {@link WebView} instances send and accept
266 setAcceptFileSchemeCookies(boolean accept) argument
276 setAcceptFileSchemeCookiesImpl(boolean accept) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DIPinItemRequest.aidl27 boolean accept(in Bundle options);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DExpressionVisitor.java98 lambdaCtx.args.accept(this);
99 return prev.lambdaExpr(lambdaCtx.expression().accept(this), callbackModel);
167 return mModel.bindingExpr(ctx.expression().accept(this));
183 return ctx.children.get(1).accept(this);
196 return mModel.field(ctx.expression().accept(this),
213 return mModel.methodReference(ctx.expression().accept(this),
225 final Expr left = ctx.left.accept(this);
227 ctx.right.accept(this), left);
276 return mModel.comparison(ctx.op.getText(), ctx.left.accept(this), ctx.right.accept(thi
[all...]
/frameworks/base/core/java/android/net/
H A DLocalServerSocket.java87 public LocalSocket accept() throws IOException method in class:LocalServerSocket
91 impl.accept(acceptedImpl);
/frameworks/base/core/java/com/android/internal/util/
H A DFunctionalUtils.java55 handler.accept(t);
104 default void accept(T t) { method in interface:FunctionalUtils.ThrowingConsumer
124 default void accept(T t) { method in interface:FunctionalUtils.RemoteExceptionIgnoringConsumer
/frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/type/
H A DLibraryMapGenerator.kt39 library.accept(this)
50 archive.files.forEach { it.accept(this) }
65 reader.accept(visitor, 0 /* flags */)
/frameworks/base/cmds/interrupter/
H A Dinterrupter.c52 DEFINE_INTERCEPT(accept, int, int, struct sockaddr*, socklen_t*);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothServerSocket.java45 * {@link #accept()} to listen for incoming connection requests. This call
140 * <p>Once this call returns, it can be called again to accept subsequent
147 public BluetoothSocket accept() throws IOException { method in class:BluetoothServerSocket
148 return accept(-1);
154 * <p>Once this call returns, it can be called again to accept subsequent
161 public BluetoothSocket accept(int timeout) throws IOException { method in class:BluetoothServerSocket
162 return mSocket.accept(timeout);
170 * close any {@link BluetoothSocket} received from {@link #accept()}.
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DLifecycle.java39 consumer.accept(mObservers.get(i));
/frameworks/base/core/proto/android/server/
H A Dfingerprint.proto54 optional int32 accept = 1;
59 // Total number of acquisitions. Should be >= accept+reject due to poor
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDockedStackExistsListener.java81 if (l != null) l.accept(exists);
88 callback.accept(mLastExists);
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
H A DWindowContainerTraversalTests.java60 verify(c).accept(eq(mDockedDividerWindow));
61 verify(c).accept(eq(mImeWindow));
/frameworks/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DClassHasNativeVisitorTest.java40 cr.accept(cv, 0 /* flags */);
52 cr.accept(cv, 0 /* flags */);
/frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/archive/
H A DArchiveItem.kt51 fun accept(visitor: ArchiveItemVisitor)

Completed in 530 milliseconds

123456789