Searched defs:allow (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DGeolocationPermissions.java31 * WebView. For example, it could be used to allow a user to manage Geolocation
53 public void invoke(String origin, boolean allow, boolean remember); argument
259 public void allow(String origin) { method in class:GeolocationPermissions
H A DWebSettings.java462 public void setAllowFileAccess(boolean allow) { argument
463 mAllowFileAccess = allow;
H A DWebViewCore.java326 // client to allow or deny quota is available.
368 public void invoke(String origin, boolean allow, boolean remember) {
371 data.mAllow = allow;
559 * Inform webcore that the user has decided whether to allow or deny new
570 * @param allow Whether Geolocation permissions are allowed.
574 private native void nativeGeolocationPermissionsProvide(String origin, boolean allow, boolean remember); argument
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DLayoutTestController.java67 public void setGeolocationPermission(boolean allow); argument
H A DCallbackProxy.java491 public void setGeolocationPermission(boolean allow) { argument
492 obtainMessage(SET_GEOLOCATION_PERMISSION, allow ? 1 : 0, 0).sendToTarget();
H A DTestShellActivity.java460 public void setGeolocationPermission(boolean allow) { argument
462 mGeolocationPermission = allow;
702 // allow it's content to execute and be recorded by the test
/frameworks/base/libs/utils/
H A DRefBase.cpp403 bool allow; local
409 allow = (impl->mFlags&OBJECT_LIFETIME_WEAK) != OBJECT_LIFETIME_WEAK
416 allow = (impl->mFlags&OBJECT_LIFETIME_WEAK) == OBJECT_LIFETIME_WEAK
419 if (!allow) {
/frameworks/base/core/java/android/net/
H A DUri.java1672 * allow argument.
1675 * @param allow set of additional characters to allow in the encoded form,
1680 public static String encode(String s, String allow) { argument
1700 && isAllowed(s.charAt(nextToEncode), allow)) {
1733 && !isAllowed(s.charAt(nextAllowed), allow)) {
1763 * @param allow characters to allow
1767 private static boolean isAllowed(char c, String allow) { argument
1772 || (allow !
[all...]
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java871 * @param screenOn Supply true to keep the screen on, false to allow it
992 * shorthands to allow/block all or no metadata.
996 * @param allow Is the set of metadata the client is interested
1005 public int setMetadataFilter(Set<Integer> allow, Set<Integer> block) { argument
1017 int capacity = request.dataSize() + 4 * (1 + allow.size() + 1 + block.size());
1023 request.writeInt(allow.size());
1024 for(Integer t: allow) {
/frameworks/base/media/libmediaplayerservice/
H A DMediaPlayerService.cpp953 media::Metadata::Filter allow, drop; local
955 if (unmarshallFilter(filter, &allow, &status) &&
959 mMetadataAllow = allow;

Completed in 814 milliseconds