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

/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/net/
H A DLocalServerSocket.java86 public LocalSocket accept() throws IOException method in class:LocalServerSocket
90 impl.accept (acceptedImpl);
H A DLocalSocketImpl.java202 private native FileDescriptor accept method in class:LocalSocketImpl
237 // need this for LocalServerSocket.accept()
325 protected void accept(LocalSocketImpl s) throws IOException method in class:LocalSocketImpl
331 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.java44 * {@link #accept()} to listen for incoming connection requests. This call
108 * <p>Once this call returns, it can be called again to accept subsequent
115 public BluetoothSocket accept() throws IOException { method in class:BluetoothServerSocket
116 return accept(-1);
122 * <p>Once this call returns, it can be called again to accept subsequent
129 public BluetoothSocket accept(int timeout) throws IOException { method in class:BluetoothServerSocket
130 return mSocket.accept(timeout);
138 * close any {@link BluetoothSocket} received from {@link #accept()}.
H A DBluetoothSocket.java392 /*package*/ BluetoothSocket accept(int timeout) throws IOException { method in class:BluetoothSocket
396 Log.d(TAG, "accept() set timeout (ms):" + timeout);
/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.java47 * accept cookies.
55 * @param accept whether {@link WebView} instances should send and accept
58 public abstract 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
79 * @param accept whether the {@link WebView} instance should accept
82 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...]
H A DWebSettings.java452 public abstract void setAcceptThirdPartyCookies(boolean accept); argument
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DCookieManagerAdapter.java39 public synchronized void setAcceptCookie(boolean accept) { argument
40 mChromeCookieManager.setAcceptCookie(accept);
49 public synchronized void setAcceptThirdPartyCookies(WebView webView, boolean accept) { argument
50 webView.getSettings().setAcceptThirdPartyCookies(accept);
148 protected void setAcceptFileSchemeCookiesImpl(boolean accept) { argument
149 mChromeCookieManager.setAcceptFileSchemeCookies(accept);
H A DContentSettingsAdapter.java123 public void setAcceptThirdPartyCookies(boolean accept) { argument
124 if (TRACE) Log.d(LOGTAG, "setAcceptThirdPartyCookies=" + accept);
125 mAwSettings.setAcceptThirdPartyCookies(accept);
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DInteractionController.java80 public boolean accept(AccessibilityEvent t) { method in class:InteractionController.WaitForAnyEventPredicate
106 public boolean accept(AccessibilityEvent t) { method in class:InteractionController.EventCollectingPredicate
129 public boolean accept(AccessibilityEvent t) { method in class:InteractionController.WaitForAllEventPredicate
/frameworks/base/core/java/android/app/
H A DUiAutomation.java156 public boolean accept(AccessibilityEvent event); method in interface:UiAutomation.AccessibilityEventFilter
533 if (filter.accept(event)) {
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DFusedPrintersProvider.java606 if (!accept(parser, XmlPullParser.START_TAG, TAG_PRINTER)) {
645 if (!accept(parser, type, tag)) {
654 while (accept(parser, XmlPullParser.TEXT, null)
660 private boolean accept(XmlPullParser parser, int type, String tag) method in class:FusedPrintersProvider.PersistenceManager.ReadTask
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
H A DImsCallSession.java668 public void accept(int callType, ImsStreamMediaProfile profile) { method in class:ImsCallSession
674 miSession.accept(callType, profile);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DPrintSpoolerService.java987 if (!accept(parser, XmlPullParser.START_TAG, TAG_JOB)) {
1019 if (accept(parser, XmlPullParser.START_TAG, TAG_PRINTER_ID)) {
1032 while (accept(parser, XmlPullParser.START_TAG, TAG_PAGE_RANGE)) {
1053 if (accept(parser, XmlPullParser.START_TAG, TAG_ATTRIBUTES)) {
1063 if (accept(parser, XmlPullParser.START_TAG, TAG_MEDIA_SIZE)) {
1085 if (accept(parser, XmlPullParser.START_TAG, TAG_RESOLUTION)) {
1101 if (accept(parser, XmlPullParser.START_TAG, TAG_MARGINS)) {
1126 if (accept(parser, XmlPullParser.START_TAG, TAG_DOCUMENT_INFO)) {
1146 if (accept(parser, XmlPullParser.START_TAG, TAG_ADVANCED_OPTIONS)) {
1150 while (accept(parse
1200 private boolean accept(XmlPullParser parser, int type, String tag) method in class:PrintSpoolerService.PersistenceManager
[all...]
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsCall.java417 // Call profile to be updated after the application's action (accept/reject)
418 // to the call update. After the application's action (accept/reject) is done,
907 * @throws ImsException if the IMS service fails to accept the call
909 public void accept(int callType) throws ImsException { method in class:ImsCall
911 log("accept ::");
914 accept(callType, new ImsStreamMediaProfile());
923 * @throws ImsException if the IMS service fails to accept the call
925 public void accept(int callType, ImsStreamMediaProfile profile) throws ImsException { method in class:ImsCall
927 log("accept :: callType=" + callType + ", profile=" + profile);
937 mSession.accept(callTyp
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java413 boolean accept, Message response) {
412 handleCallSetupRequestFromSim( boolean accept, Message response) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java414 boolean accept, Message response) {
413 handleCallSetupRequestFromSim( boolean accept, Message response) argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java539 public void handleCallSetupRequestFromSim(boolean accept, Message response) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java869 boolean accept, Message response) {
868 handleCallSetupRequestFromSim( boolean accept, Message response) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCommandsInterface.java1477 * @param accept true if the call is to be accepted, false otherwise.
1480 public void handleCallSetupRequestFromSim(boolean accept, Message response); argument
H A DRIL.java2024 boolean accept, Message response) {
2033 param[0] = accept ? 1 : 0;
2023 handleCallSetupRequestFromSim( boolean accept, Message response) argument

Completed in 339 milliseconds