HomeSort by relevance Sort by last modified time
    Searched refs:Allow (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/nist-sip/java/gov/nist/javax/sip/header/
AllowList.java 36 * List of ALLOW headers. The sip message can have multiple Allow headers
43 public class AllowList extends SIPHeaderList<Allow> {
62 super(Allow.class, AllowHeader.NAME);
68 * Iterator if no methods are defined in this Allow Header.
82 for ( Iterator<Allow> it = this.hlist.iterator(); it.hasNext();) {
83 Allow a = (Allow)it.next();
108 Allow allow = new Allow() local
    [all...]
Allow.java 32 * Allow SIPHeader.
40 public final class Allow extends
53 public Allow() {
54 super(ALLOW);
60 public Allow(String m) {
61 super(ALLOW);
80 + ", Allow, setMethod(), the method parameter is null.");
NameMap.java 87 putNameMap(Allow.NAME, Allow.class.getName()); // 5
  /external/nist-sip/java/gov/nist/javax/sip/parser/
AllowParser.java 33 * Parser for Allow header.
45 * @param allow the header to parse
47 public AllowParser(String allow) {
48 super(allow);
60 * parse the Allow String header
71 headerName(TokenTypes.ALLOW);
73 Allow allow = new Allow(); local
74 allow.setHeaderName(SIPHeaderNames.ALLOW)
    [all...]
  /external/chromium/chrome/browser/ssl/
ssl_host_state.cc 37 cert_policy_for_host_[host].Allow(cert);
  /external/chromium/chrome/browser/ui/webui/
collected_cookies_ui_delegate.h 71 // JS callback to block/allow cookies from given site.
73 void Allow(const ListValue* args);
collected_cookies_ui_delegate.cc 207 web_ui_->RegisterMessageCallback("Allow",
208 NewCallback(this, &CollectedCookiesUIDelegate::Allow));
265 void CollectedCookiesUIDelegate::Allow(const ListValue* args) {
  /external/chromium_org/content/browser/ssl/
ssl_host_state.cc 54 cert_policy_for_host_[host].Allow(cert, error);
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/browser_dynamic_library/
nacl.scons 20 # Allow resolving a URL to the toolchain/ directory (instead of staging).
  /external/chromium/net/base/
x509_cert_types.h 107 // Causes the policy to allow this certificate.
108 void Allow(X509Certificate* cert);
x509_cert_types.cc 76 void CertPolicy::Allow(X509Certificate* cert) {
  /external/chromium_org/chrome/browser/policy/
url_blacklist_manager.h 37 // Contains a set of filters to block and allow certain URLs, and matches GURLs
44 // Allows or blocks URLs matching one of the filters, depending on |allow|.
45 void AddFilters(bool allow, const base::ListValue* filters);
53 // Blocked and Allowed, Allow takes precedence.
54 void Allow(const base::ListValue* filters);
159 // |block| and |allow|. Protected for testing.
161 scoped_ptr<base::ListValue> allow);
url_blacklist_manager_unittest.cc 45 scoped_ptr<base::ListValue> allow(new base::ListValue);
46 URLBlacklistManager::UpdateOnIO(block.Pass(), allow.Pass());
388 blacklist.Allow(allowed.get());
415 blacklist.Allow(allowed.get());
423 blacklist.Allow(allowed.get());
434 blacklist.Allow(allowed.get());
446 blacklist.Allow(allowed.get());
460 blacklist.Allow(allowed.get());
475 blacklist.Allow(allowed.get());
  /external/chromium_org/net/cert/
x509_cert_types.h 97 // Causes the policy to allow this certificate for a given |error|.
98 void Allow(X509Certificate* cert, CertStatus error);
x509_cert_types.cc 87 void CertPolicy::Allow(X509Certificate* cert, CertStatus error) {
  /external/chromium_org/v8/test/mjsunit/
date-parse.js 84 // Allow missing space between month and day.
87 // Allow year/month/day format.
89 // Allow month/day/year format.
91 // Allow month/day year format.
93 // Allow comma instead of space after day, month and year.
102 // Allow AM/PM after the time.
198 // Allow missing time.
210 // Allow timezone ommision.
newline-in-string.js 38 // Allow CR+LF in multiline string literals.
42 // Allow LF+CR in multiline string literals.
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
PAssociatedURIParser.java 40 import gov.nist.javax.sip.header.Allow;
  /external/v8/test/mjsunit/
date-parse.js 84 // Allow missing space between month and day.
87 // Allow year/month/day format.
89 // Allow month/day/year format.
91 // Allow month/day year format.
93 // Allow comma instead of space after day, month and year.
102 // Allow AM/PM after the time.
198 // Allow missing time.
210 // Allow timezone ommision.
newline-in-string.js 38 // Allow CR+LF in multiline string literals.
42 // Allow LF+CR in multiline string literals.
  /external/chromium_org/chrome/common/extensions/docs/server2/
app_yaml_helper.py 35 Allow overriding the key to parse e.g. the cron file ('target').
  /external/chromium/chrome/browser/resources/
collected_cookies.js 21 $('allow-button').disabled =
22 $('allow-this-session-button').disabled = !blockedCookies.children.length ||
42 chrome.send('Allow', [selected.pathId]);
61 $('allow-button').addEventListener('click', handleAllowButtonClick);
62 $('allow-this-session-button').addEventListener('click',
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/
chrome_stubs.js 7 * regular web pages, to allow tests to run.
43 'allowRule': 'Allow',
  /external/chromium/chrome/browser/download/
download_request_limiter_unittest.cc 88 TEST_F(DownloadRequestLimiterTest, Allow) {
105 // Ask again. This triggers asking the delegate for allow/disallow.
135 // Do two downloads, allowing the second so that we end up with allow all.
144 // Navigate to a new URL with the same host, which shouldn't reset the allow
156 // Do a user gesture, because we're at allow all, this shouldn't change the
180 // Do a user gesture, which should reset back to allow one.
186 // Ask twice, which triggers calling the delegate. Don't allow the download
  /external/nist-sip/java/gov/nist/javax/sip/message/
ListMap.java 44 // Entries in this table allow you to look up the list form of a header
97 headerListTable.put(Allow.class, AllowList.class);

Completed in 670 milliseconds

1 2 3