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

/frameworks/testing/uiautomator/library/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)) {
107 if (!(mFilter.accept(clazz))) {
133 public boolean accept(Method method); method in interface:TestCaseCollector.TestCaseFilter
140 public boolean accept(Class<?> clazz); method in interface:TestCaseCollector.TestCaseFilter
/frameworks/base/core/java/android/net/
H A DLocalServerSocket.java90 public LocalSocket accept() throws IOException method in class:LocalServerSocket
94 impl.accept (acceptedImpl);
H A DLocalSocketImpl.java176 private native FileDescriptor accept method in class:LocalSocketImpl
211 // need this for LocalServerSocket.accept()
273 protected void accept(LocalSocketImpl s) throws IOException method in class:LocalSocketImpl
279 s.fd = accept(fd, s);
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
H A DA3DSelector.java42 public boolean accept(File file) { method in class:A3DSelector.A3DFilter
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
H A DFileSelector.java42 public boolean accept(File file) { method in class:FileSelector.DAEFilter
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothServerSocket.java45 * {@link #accept()} to listen for incoming connection requests. This call
109 * <p>Once this call returns, it can be called again to accept subsequent
116 public BluetoothSocket accept() throws IOException { method in class:BluetoothServerSocket
117 return accept(-1);
123 * <p>Once this call returns, it can be called again to accept subsequent
130 public BluetoothSocket accept(int timeout) throws IOException { method in class:BluetoothServerSocket
131 return mSocket.accept(timeout);
139 * close any {@link BluetoothSocket} received from {@link #accept()}.
H A DBluetoothSocket.java388 /*package*/ BluetoothSocket accept(int timeout) throws IOException { method in class:BluetoothSocket
/frameworks/base/core/java/android/text/method/
H A DNumberKeyListener.java39 * You can say which characters you can accept.
49 char[] accept = getAcceptedChars();
54 if (!ok(accept, source.charAt(i))) {
77 if (!ok(accept, source.charAt(j))) {
85 protected static boolean ok(char[] accept, char c) { argument
86 for (int i = accept.length - 1; i >= 0; i--) {
87 if (accept[i] == c) {
/frameworks/base/core/java/android/webkit/
H A DCookieManager.java51 * accept cookies.
53 * @param accept whether {@link WebView} instances should send and accept
56 public synchronized void setAcceptCookie(boolean accept) { argument
61 * Gets whether the application's {@link WebView} instances send and accept
64 * @return true if {@link WebView} instances send and accept cookies
172 * Gets whether the application's {@link WebView} instances send and accept
175 * @return true if {@link WebView} instances send and accept cookies for
194 * accept cookies for file scheme URLs.
203 public static void setAcceptFileSchemeCookies(boolean accept) { argument
212 setAcceptFileSchemeCookiesImpl(boolean accept) argument
[all...]
H A DCookieManagerClassic.java43 public synchronized void setAcceptCookie(boolean accept) { argument
44 nativeSetAcceptCookie(accept);
168 protected void setAcceptFileSchemeCookiesImpl(boolean accept) { argument
169 nativeSetAcceptFileSchemeCookies(accept);
179 private static native void nativeSetAcceptCookie(boolean accept); argument
183 private static native void nativeSetAcceptFileSchemeCookies(boolean accept); argument
/frameworks/testing/androidtestlib/src/com/android/test/runner/
H A DClassPathScanner.java46 boolean accept(String className); method in interface:ClassPathScanner.ClassNameFilter
58 public boolean accept(String className) { method in class:ClassPathScanner.AcceptAllFilter
78 public boolean accept(String className) { method in class:ClassPathScanner.ChainedClassNameFilter
80 if (!filter.accept(className)) {
96 public boolean accept(String pathName) { method in class:ClassPathScanner.ExternalClassNameFilter
120 public boolean accept(String pathName) { method in class:ClassPathScanner.InclusivePackageNameFilter
144 public boolean accept(String pathName) { method in class:ClassPathScanner.ExcludePackageNameFilter
169 if (filter.accept(apkClassName)) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java314 boolean accept, Message response) {
313 handleCallSetupRequestFromSim( boolean accept, Message response) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java824 boolean accept, Message response) {
823 handleCallSetupRequestFromSim( boolean accept, Message response) argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java524 public void handleCallSetupRequestFromSim(boolean accept, Message response) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRIL.java1848 boolean accept, Message response) {
1857 param[0] = accept ? 1 : 0;
1847 handleCallSetupRequestFromSim( boolean accept, Message response) argument
H A DCommandsInterface.java1356 * @param accept true if the call is to be accepted, false otherwise.
1359 public void handleCallSetupRequestFromSim(boolean accept, Message response); argument

Completed in 321 milliseconds