/frameworks/base/core/java/android/webkit/ |
D | CookieManagerClassic.java | 43 public synchronized void setAcceptCookie(boolean accept) { in setAcceptCookie() argument 44 nativeSetAcceptCookie(accept); in setAcceptCookie() 168 protected void setAcceptFileSchemeCookiesImpl(boolean accept) { in setAcceptFileSchemeCookiesImpl() argument 169 nativeSetAcceptFileSchemeCookies(accept); in setAcceptFileSchemeCookiesImpl() 179 private static native void nativeSetAcceptCookie(boolean accept); in nativeSetAcceptCookie() argument 183 private static native void nativeSetAcceptFileSchemeCookies(boolean accept); in nativeSetAcceptFileSchemeCookies() argument
|
D | CookieManager.java | 56 public synchronized void setAcceptCookie(boolean accept) { in setAcceptCookie() argument 203 public static void setAcceptFileSchemeCookies(boolean accept) { in setAcceptFileSchemeCookies() argument 204 getInstance().setAcceptFileSchemeCookiesImpl(accept); in setAcceptFileSchemeCookies() 212 protected void setAcceptFileSchemeCookiesImpl(boolean accept) { in setAcceptFileSchemeCookiesImpl() argument
|
/frameworks/base/core/java/android/text/method/ |
D | NumberKeyListener.java | 49 char[] accept = getAcceptedChars(); in filter() local 54 if (!ok(accept, source.charAt(i))) { in filter() 77 if (!ok(accept, source.charAt(j))) { in filter() 85 protected static boolean ok(char[] accept, char c) { in ok() argument 86 for (int i = accept.length - 1; i >= 0; i--) { in ok() 87 if (accept[i] == c) { in ok()
|
/frameworks/base/core/java/android/bluetooth/ |
D | BluetoothServerSocket.java | 98 public BluetoothSocket accept() throws IOException { in accept() method in BluetoothServerSocket 99 return accept(-1); in accept() 112 public BluetoothSocket accept(int timeout) throws IOException { in accept() method in BluetoothServerSocket 113 return mSocket.accept(timeout); in accept()
|
D | BluetoothDeviceProfileState.java | 1048 private boolean handleIncomingConnection(int command, boolean accept) { in handleIncomingConnection() argument 1050 Log.i(TAG, "handleIncomingConnection:" + command + ":" + accept); in handleIncomingConnection() 1053 if (!accept) { in handleIncomingConnection() 1067 if (!accept) { in handleIncomingConnection() 1078 if (!accept) { in handleIncomingConnection()
|
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/testrunner/ |
D | TestCaseCollector.java | 89 if (mFilter.accept(method)) { in addTestClass() 106 if (!(mFilter.accept(clazz))) { in addSingleTestMethod() 132 public boolean accept(Method method); in accept() method 139 public boolean accept(Class<?> clazz); in accept() method
|
D | UiAutomatorTestCaseFilter.java | 30 public boolean accept(Method method) { in accept() method in UiAutomatorTestCaseFilter 37 public boolean accept(Class<?> clazz) { in accept() method in UiAutomatorTestCaseFilter
|
/frameworks/base/core/java/android/net/ |
D | LocalServerSocket.java | 90 public LocalSocket accept() throws IOException in accept() method in LocalServerSocket 94 impl.accept (acceptedImpl); in accept()
|
D | LocalSocketImpl.java | 176 private native FileDescriptor accept in accept() method in LocalSocketImpl 273 protected void accept(LocalSocketImpl s) throws IOException in accept() method in LocalSocketImpl 279 s.fd = accept(fd, s); in accept()
|
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/ |
D | DelegateClassAdapterTest.java | 94 cr.accept(cv, 0 /* flags */); in testNoOp() 151 cr.accept(cv, 0 /* flags */); in testConstructorsNotSupported() 165 cr.accept(cv, 0 /* flags */); in testDelegateNative() 213 cr.accept(cvOuter, 0 /* flags */); in testDelegateInner() 221 cr.accept(cvInner, 0 /* flags */); in testDelegateInner() 332 cr.accept(cw, 0); in findClass() 448 cr2.accept((ClassVisitor) tcv, 0 /* flags */); in dumpGeneratedClass()
|
D | ClassHasNativeVisitorTest.java | 40 cr.accept(cv, 0 /* flags */); in testHasNative() 52 cr.accept(cv, 0 /* flags */); in testHasNoNative()
|
D | AsmAnalyzerTest.java | 194 cr.accept(visitor, 0 /* flags */); in testDependencyVisitor() 207 cr2.accept(visitor, 0 /* flags */); in testDependencyVisitor() 222 cr2.accept(visitor, 0 /* flags */); in testDependencyVisitor()
|
/frameworks/base/tests/CoreTests/android/core/ |
D | SocketTest.java | 75 s1 = ss.accept(); in testSocketSimple() 122 Socket sock = serverSock.accept(); in testSetReuseAddress() 169 s.accept(); in testTimeoutException()
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/ |
D | FileSelector.java | 42 public boolean accept(File file) { in accept() method in FileSelector.DAEFilter
|
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/forwarder/ |
D | Forwarder.java | 65 localSocket = mServerSocket.accept(); in run()
|
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/ |
D | A3DSelector.java | 42 public boolean accept(File file) { in accept() method in A3DSelector.A3DFilter
|
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/ |
D | ForwardServer.java | 95 Socket localSocket = socket.accept(); in run()
|
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
D | AsmGenerator.java | 332 cr.accept(cv, 0 /* flags */); 366 cr.accept(cv, 0 /* flags */); in hasNativeMethods()
|
D | AsmAnalyzer.java | 286 cr.accept(visitor, 0 /* flags */); in findDeps() 302 cr.accept(visitor, 0 /* flags */); in findDeps() 420 sr.accept(new MySignatureVisitor()); in considerSignature()
|
/frameworks/native/opengl/libs/GLES_trace/src/ |
D | gltrace_transport.cpp | 65 int clientSocket = accept(serverSocket, (struct sockaddr *)&client, &sockaddr_len); in acceptClientConnection()
|
/frameworks/base/core/tests/coretests/src/android/net/ |
D | LocalSocketTest.java | 44 ls1 = ss.accept(); in testBasic()
|
/frameworks/base/docs/html/guide/topics/ui/notifiers/ |
D | index.jd | 40 out, and does not accept interaction events. Because a toast can be created from a background 45 to the screen. A toast can not accept user interaction events; if you'd like
|
/frameworks/base/docs/html/guide/topics/ui/ |
D | drag-drop.jd | 154 methods can use the metadata to decide if they want to accept the data when it is dropped. 156 method has previously told the system that it wants to accept the drop, then the system sends 203 View object to show that the listener can accept a drop event. 210 does not want to accept the dragged data. 229 The user releases the drag shadow within the bounding box of a View that can accept the 704 {@link android.content.ClipDescription} to see if the listener can accept the data being 712 If the listener can accept a drop, it should return <code>true</code>. This tells 714 If it can't accept a drop, it should return <code>false</code>, and the system 791 reported that it could accept the content being dragged, the system dispatches a drag event 891 // Determines if this View can accept the dragged data [all …]
|
/frameworks/base/services/java/com/android/server/wm/ |
D | ViewServer.java | 166 Socket client = mServer.accept(); in run()
|
/frameworks/base/docs/html/sdk/ |
D | terms.jd | 21 …t agree to this License Agreement. You may not use the SDK if you do not accept this License Agree… 24 2.2 You can accept this License Agreement by: 27 …(A) clicking to accept or agree to this License Agreement, where this option is made available to … 33 …2.3 You may not use the SDK and may not accept the Licensing Agreement if you are a person barred … 36 …cense Agreement. If you do not have the requisite authority, you may not accept the Licensing Agre…
|