Searched refs:allow (Results 1 - 11 of 11) sorted by relevance

/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.cpp427 bool allow; local
433 allow = (impl->mFlags&OBJECT_LIFETIME_WEAK) != OBJECT_LIFETIME_WEAK
440 allow = (impl->mFlags&OBJECT_LIFETIME_WEAK) == OBJECT_LIFETIME_WEAK
443 if (!allow) {
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java892 * @param screenOn Supply true to keep the screen on, false to allow it
1013 * shorthands to allow/block all or no metadata.
1017 * @param allow Is the set of metadata the client is interested
1026 public int setMetadataFilter(Set<Integer> allow, Set<Integer> block) { argument
1038 int capacity = request.dataSize() + 4 * (1 + allow.size() + 1 + block.size());
1044 request.writeInt(allow.size());
1045 for(Integer t: allow) {
/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.java466 public void setAllowFileAccess(boolean allow) { argument
467 mAllowFileAccess = allow;
483 public void setAllowContentAccess(boolean allow) { argument
484 mAllowContentAccess = allow;
H A DWebViewCore.java334 // client to allow or deny quota is available.
376 public void invoke(String origin, boolean allow, boolean remember) {
379 data.mAllow = allow;
567 * Inform webcore that the user has decided whether to allow or deny new
578 * @param allow Whether Geolocation permissions are allowed.
582 private native void nativeGeolocationPermissionsProvide(String origin, boolean allow, boolean remember); argument
/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...]
H A DUrlQuerySanitizer.java46 * unregistered parameter sanitizer does not allow any special characters,
413 * one that doesn't allow any special characters, similar to what
474 * Return a value sanitizer that does not allow any special characters,
475 * and also does not allow script URLs.
501 * encoded URLs. Does not allow script URLs.
511 * Does not allow script URLs.
518 * Return a value sanitizer that does not allow any special characters
519 * except ampersand ('&'). Does not allow script URLs.
526 * Return a value sanitizer that does not allow any special characters
527 * except ampersand ('&') and space (' '). Does not allow scrip
[all...]
/frameworks/base/media/libmediaplayerservice/
H A DMediaPlayerService.cpp914 media::Metadata::Filter allow, drop; local
916 if (unmarshallFilter(filter, &allow, &status) &&
920 mMetadataAllow = allow;

Completed in 9756 milliseconds