HomeSort by relevance Sort by last modified time
    Searched refs:Realm (Results 26 - 50 of 54) sorted by null

12 3

  /frameworks/opt/net/wifi/tests/wifitests/assets/
r2.PerProviderSubscription.conf 59 5:Realm=9:wi-fi.org
88 5:Realm=6:rr.com
ruckus.PerProviderSubscription.conf 59 5:Realm=9:wi-fi.org
  /external/v8/test/mjsunit/
array-constructor-feedback.js 187 var contextB = Realm.create();
188 Realm.eval(contextB, "function bar2() { return new Array(); };");
189 Realm.eval(contextB, "bar2(); bar2();");
190 Realm.eval(contextB, "%OptimizeFunctionOnNextCall(bar2);");
191 Realm.eval(contextB, "bar2();");
192 assertFalse(Realm.eval(contextB, "bar2();") instanceof Array);
193 assertTrue(Realm.eval(contextB, "bar2() instanceof Array"));
array-constructor.js 121 var b = Realm.create();
122 var bArray = Realm.eval(b, "Array");
123 var bError = Realm.eval(b, "RangeError");
array-feedback.js 190 var realmA = Realm.current();
191 var realmB = Realm.create();
201 var realmBArray = Realm.eval(realmB, "Array");
error-constructors.js 74 // in a browser setting. Use Realm.eval as a proxy for loading scripts. We
89 assertThrows(()=>Realm.eval(0, error_triggers[i]));
allocation-site-info.js 302 var realmA = Realm.current();
303 var realmB = Realm.create();
319 var realmBArray = Realm.eval(realmB, "Array");
  /external/v8/test/mjsunit/harmony/
array-species.js 56 // Cross-realm Arrays build same-realm arrays
58 var realm = Realm.create(); variable
61 Realm.eval(realm, "[]"), ()=>{}).constructor);
62 assertFalse(Array === Realm.eval(realm, "[]").map(()=>{}).constructor);
63 assertFalse(Array === Realm.eval(realm, "[].map(()=>{}).constructor"))
    [all...]
reflect-construct.js 289 var realm1 = Realm.create();
290 var realm2 = Realm.create();
341 var own = Realm.eval(realm1, name);
353 function function_with_non_instance_prototype(realm) {
354 var f = Realm.eval(realm, "(function(){})");
359 function test_intrinsic_default(realm, name, args, convert) {
360 var own = Realm.eval(realm1, name);
361 var other = Realm.eval(realm, name)
    [all...]
block-conflicts-sloppy.js 47 // TODO(littledan): Add tests using Realm.eval to ensure that global eval
  /external/v8/test/mjsunit/regress/
regress-crbug-243868.js 36 // Create an object with a constant function in another realm.
37 var realm = Realm.create(); variable
38 var realmObject = Realm.eval(realm, "function g() {}; var o = { val:g }; o;")
  /external/v8/test/mjsunit/strong/
literals.js 25 Realm.eval(Realm.current(), "({f: function(){}})"));
89 // but currently only on the toplevel (using Realm.eval to emulate that).
92 Realm.eval(Realm.current(), "'use strong'; ({f: function(){}})"));
  /external/v8/test/mjsunit/es6/
classes.js 630 var realmIndex = Realm.create();
631 var otherTypeError = Realm.eval(realmIndex, "TypeError");
632 var A = Realm.eval(realmIndex, '"use strict"; class A {}');
635 var otherTypeError = Realm.eval(realmIndex, 'TypeError');
640 // ES6 9.2.1[[Call]] throws a TypeError in the caller context/Realm when the
642 assertThrows(function() { Realm.eval(realmIndex, "A()") }, otherTypeError);
648 // Realm.
649 assertThrows(function() { Realm.eval(realmIndex, "A.call()") },
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
NAIRealmData.java 17 * The NAI Realm Data ANQP sub-element, IEEE802.11-2012 section 8.4.4.10 figure 8-418
34 String realm = Constants.getPrefixedString(payload, 1, utf8 ? local
37 String[] realms = realm.split(";");
64 for (String realm : mRealms) {
65 List<String> labels = Utils.splitDomain(realm);
67 realmMatch = AuthMatch.Realm;
74 // else there is a realm match and one or more EAP methods - check them.
97 sb.append(" NAI Realm(s)");
98 for (String realm : mRealms) {
99 sb.append(' ').append(realm);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_urllib2.py 118 >>> add("Some Realm", "http://example.com/", "joe", "password")
119 >>> add("Some Realm", "http://example.com/ni", "ni", "ni")
125 >>> add("Some Realm", "http://c.example.com:3128", "3", "c")
126 >>> add("Some Realm", "d.example.com", "4", "d")
127 >>> add("Some Realm", "e.example.com:3128", "5", "e")
129 >>> mgr.find_user_password("Some Realm", "example.com")
131 >>> mgr.find_user_password("Some Realm", "http://example.com")
133 >>> mgr.find_user_password("Some Realm", "http://example.com/")
135 >>> mgr.find_user_password("Some Realm", "http://example.com/spam")
137 >>> mgr.find_user_password("Some Realm", "http://example.com/spam/spam"
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_urllib2.py 118 >>> add("Some Realm", "http://example.com/", "joe", "password")
119 >>> add("Some Realm", "http://example.com/ni", "ni", "ni")
125 >>> add("Some Realm", "http://c.example.com:3128", "3", "c")
126 >>> add("Some Realm", "d.example.com", "4", "d")
127 >>> add("Some Realm", "e.example.com:3128", "5", "e")
129 >>> mgr.find_user_password("Some Realm", "example.com")
131 >>> mgr.find_user_password("Some Realm", "http://example.com")
133 >>> mgr.find_user_password("Some Realm", "http://example.com/")
135 >>> mgr.find_user_password("Some Realm", "http://example.com/spam")
137 >>> mgr.find_user_password("Some Realm", "http://example.com/spam/spam"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib2.py 118 >>> add("Some Realm", "http://example.com/", "joe", "password")
119 >>> add("Some Realm", "http://example.com/ni", "ni", "ni")
125 >>> add("Some Realm", "http://c.example.com:3128", "3", "c")
126 >>> add("Some Realm", "d.example.com", "4", "d")
127 >>> add("Some Realm", "e.example.com:3128", "5", "e")
129 >>> mgr.find_user_password("Some Realm", "example.com")
131 >>> mgr.find_user_password("Some Realm", "http://example.com")
133 >>> mgr.find_user_password("Some Realm", "http://example.com/")
135 >>> mgr.find_user_password("Some Realm", "http://example.com/spam")
137 >>> mgr.find_user_password("Some Realm", "http://example.com/spam/spam"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib2.py 118 >>> add("Some Realm", "http://example.com/", "joe", "password")
119 >>> add("Some Realm", "http://example.com/ni", "ni", "ni")
125 >>> add("Some Realm", "http://c.example.com:3128", "3", "c")
126 >>> add("Some Realm", "d.example.com", "4", "d")
127 >>> add("Some Realm", "e.example.com:3128", "5", "e")
129 >>> mgr.find_user_password("Some Realm", "example.com")
131 >>> mgr.find_user_password("Some Realm", "http://example.com")
133 >>> mgr.find_user_password("Some Realm", "http://example.com/")
135 >>> mgr.find_user_password("Some Realm", "http://example.com/spam")
137 >>> mgr.find_user_password("Some Realm", "http://example.com/spam/spam"
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/client/security/
SecurityListener.java 175 Realm realm = realmResolver.getRealm( details.get("realm"), _destination, pathSpec ); // TODO work our realm correctly local
177 if ( realm == null )
179 LOG.warn( "Unknown Security Realm: " + details.get("realm") );
183 _destination.addAuthorization("/",new DigestAuthentication(realm,details));
188 _destination.addAuthorization(pathSpec,new BasicAuthentication(realm));
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
HomeSP.java 174 else if ((authMatch & AuthMatch.Realm) == 0) {
175 // No realm match, return sp match as is.
179 // Realm match, promote sp match to roaming if necessary.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
http.h 478 PWSTR Realm;
483 PWSTR Realm;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jar 
  /prebuilts/gdb/darwin-x86/lib/python2.7/
urllib2.py 60 authinfo.add_password(realm='PDQ Application',
758 def add_password(self, realm, uri, user, passwd):
762 if not realm in self.passwd:
763 self.passwd[realm] = {}
767 self.passwd[realm][reduced_uri] = (user, passwd)
769 def find_user_password(self, realm, authuri):
770 domains = self.passwd.get(realm, {})
819 def find_user_password(self, realm, authuri):
820 user, password = HTTPPasswordMgr.find_user_password(self, realm,
830 # the last one with a realm specified
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
urllib2.py 60 authinfo.add_password(realm='PDQ Application',
758 def add_password(self, realm, uri, user, passwd):
762 if not realm in self.passwd:
763 self.passwd[realm] = {}
767 self.passwd[realm][reduced_uri] = (user, passwd)
769 def find_user_password(self, realm, authuri):
770 domains = self.passwd.get(realm, {})
819 def find_user_password(self, realm, authuri):
820 user, password = HTTPPasswordMgr.find_user_password(self, realm,
830 # the last one with a realm specified
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urllib2.py 60 authinfo.add_password(realm='PDQ Application',
758 def add_password(self, realm, uri, user, passwd):
762 if not realm in self.passwd:
763 self.passwd[realm] = {}
767 self.passwd[realm][reduced_uri] = (user, passwd)
769 def find_user_password(self, realm, authuri):
770 domains = self.passwd.get(realm, {})
819 def find_user_password(self, realm, authuri):
820 user, password = HTTPPasswordMgr.find_user_password(self, realm,
830 # the last one with a realm specified
    [all...]

Completed in 1728 milliseconds

12 3