/external/v8/test/mjsunit/ |
cross-realm-filtering.js | 5 var realms = [Realm.current(), Realm.create()]; 9 "(function () { Realm.eval(Realm.current(), 'throw Error()') })"; 10 Realm.shared = { 11 thrower_0: Realm.eval(realms[0], thrower_script), 12 thrower_1: Realm.eval(realms[1], thrower_script), 18 Realm.shared.thrower_0(); \ 20 Realm.shared.error_0 = e.stack; \ 23 Realm.shared.thrower_1(); [all...] |
call-cross-realm.js | 5 Realm.create(); 6 var object = Realm.eval(1, "Object"); 7 var f = Realm.eval(1, "function f() { return this }; f"); 13 assertEquals(Realm.global(1), f());
|
contextual-calls.js | 28 var realms = [Realm.current(), Realm.create()]; 29 globals = [Realm.global(0), Realm.global(1)]; 30 Realm.shared = {} 33 Realm.shared[name] = value; 35 Realm.eval(realms[i], name + " = Realm.shared['" + name + "'];"); 44 Realm.shared.results = []; 47 Realm.eval(realms[i]," [all...] |
cross-realm-global-prototype.js | 8 var realm = Realm.create(); variable 9 var test = Realm.eval(realm, 10 "() => { return Realm.global(0) instanceof Object }"); 15 // other realm. 16 __proto__ = Realm.eval(realm, "this");
|
elide-double-hole-check-12.js | 11 var other_realm = Realm.create(); 18 Realm.shared = arr.__proto__; 21 // other realm. 22 Realm.eval(other_realm, "Array.prototype.push.call(Realm.shared, 1);");
|
/external/jetty/src/java/org/eclipse/jetty/client/security/ |
SimpleRealmResolver.java | 26 * Simple Realm Resolver. 27 * <p> A Realm Resolver that wraps a single realm. 33 private Realm _realm; 35 public SimpleRealmResolver( Realm realm ) 37 _realm=realm; 40 public Realm getRealm( String realmName, HttpDestination destination, String path ) throws IOException
|
HashRealmResolver.java | 29 private Map<String, Realm>_realmMap; 31 public void addSecurityRealm( Realm realm ) 35 _realmMap = new HashMap<String, Realm>(); 37 _realmMap.put( realm.getId(), realm ); local 40 public Realm getRealm( String realmName, HttpDestination destination, String path ) throws IOException
|
Realm.java | 22 * Simple security realm interface. 24 public interface Realm
|
RealmResolver.java | 27 public Realm getRealm( String realmName, HttpDestination destination, String path ) throws IOException;
|
BasicAuthentication.java | 40 public BasicAuthentication(Realm realm) throws IOException 42 String authenticationString = "Basic " + B64Code.encode( realm.getPrincipal() + ":" + realm.getCredentials(), StringUtil.__ISO_8859_1);
|
DigestAuthentication.java | 34 Realm securityRealm; 37 public DigestAuthentication(Realm realm, Map details) 39 this.securityRealm=realm; 51 buffer.append(", ").append("realm").append('=').append('"').append(String.valueOf(details.get("realm"))).append('"'); 75 protected String newResponse(String cnonce, HttpExchange exchange, Realm securityRealm, Map details) 83 md.update(String.valueOf(details.get("realm")).getBytes(StringUtil.__ISO_8859_1)); 116 protected String newCnonce(HttpExchange exchange, Realm securityRealm, Map details)
|
/external/v8/test/mjsunit/harmony/ |
proxies-cross-realm-exception.js | 7 // Do not read out the prototype from a cross-realm object. 8 var realm = Realm.create(); variable 12 Realm.eval(realm, "3; Reflect.getPrototypeOf(Realm.global(0))")); 13 assertFalse(Realm.eval(realm, "3; Realm.global(0) instanceof Object")); 17 Realm.eval(realm, "1; Reflect.getPrototypeOf(Realm.global(0))")) [all...] |
proxies-accesschecks.js | 7 var realm = Realm.create(); variable 14 var other_type_error = Realm.eval(realm, "TypeError"); 15 assertThrows(() => Realm.eval(realm, "Realm.global(0).foo"), other_type_error);
|
proxies-construct.js | 100 var realm1 = Realm.create(); 106 var OtherProxy = Realm.eval(realm1, "Proxy"); 107 var otherArrayPrototype = Realm.eval(realm1, 'Array.prototype'); 109 // Proxy and handler are from this realm. 114 // Proxy is from this realm, handler is from realm1. 120 var otherProxy2 = Realm.eval(realm1, 'new Proxy('+ 127 var realm1 = Realm.create(); 128 var realm2 = Realm.create(); 129 var realm3 = Realm.create(); 130 var realm4 = Realm.create() [all...] |
/frameworks/base/packages/Osu/src/com/android/hotspot2/ |
AuthMatch.java | 5 * None means that there is a distinct mismatch, i.e. realm, method or parameter is defined 14 public static final int Realm = 0x04; 18 public static final int Exact = Realm | Method | Param; 28 if ((match & Realm) != 0) { 29 sb.append("Realm");
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/ |
AuthMatch.java | 5 * None means that there is a distinct mismatch, i.e. realm, method or parameter is defined 14 public static final int Realm = 0x04; 18 public static final int Exact = Realm | Method | Param; 29 if ((match & Realm) != 0) { 30 sb.append("Realm");
|
/external/v8/test/mjsunit/bugs/ |
bug-proto.js | 28 var realmA = Realm.current(); 29 var realmB = Realm.create(); 34 assertSame(this, Realm.global(realmA)); 35 assertSame(Realm.eval(realmB, "this"), Realm.global(realmB)); 36 assertFalse(this === Realm.global(realmB)); 38 // The global object is not accessible cross-realm. 40 Realm.shared = this; 41 assertThrows("Realm.eval(realmB, 'x')"); 42 assertSame(undefined, Realm.eval(realmB, "this.x")) [all...] |
/external/v8/test/mjsunit/regress/ |
regress-crbug-501711.js | 12 Realm.create();
|
regress-crbug-501808.js | 5 var r = Realm.create();
|
cross-script-vars.js | 29 var desc = Realm.eval(test_realm, code); 36 Realm.shared = {counters: counters}; 37 test_realm = Realm.create(); 38 Realm.eval(test_realm, 'var global = Realm.global(Realm.current());'); 40 print("Test realm: " + test_realm); 45 Realm.dispose(test_realm); 55 Realm.eval(test_realm, 'global.x = {}; global.x = undefined;'); 60 return Realm.eval(test_realm, AddStrict(code, cfg)) [all...] |
regress-280531.js | 28 var contextA = Realm.create(); 29 var date1 = Realm.eval(contextA, "new Date('Thu, 29 Aug 2013 00:00:00 UTC')"); 31 var date2 = Realm.eval(contextA, "new Date('Thu, 29 Aug 2013 00:00:00 UTC')");
|
regress-cr-344285.js | 33 Realm.eval(__v_2, "Realm.global(0).y = 1");
|
/external/v8/test/mjsunit/es6/ |
symbols.js | 479 var realm = Realm.create() 480 assertFalse(Symbol === Realm.eval(realm, "Symbol")) 481 assertFalse(Symbol.for === Realm.eval(realm, "Symbol.for")) 482 assertFalse(Symbol.keyFor === Realm.eval(realm, "Symbol.keyFor")) 483 assertSame(Symbol.create, Realm.eval(realm, "Symbol.create") [all...] |
/external/chromium-trace/catapult/third_party/Paste/paste/auth/ |
multi.py | 21 >>> def authfunc(environ, realm, user): 22 ... return digest.digest_password(realm, user, user) 23 >>> multi.add_method('digest', digest.middleware, "Test Realm", authfunc)
|
/frameworks/opt/net/wifi/tests/wifitests/assets/ |
r1.PerProviderSubscription.conf | 19 5:Realm=6:rr.com 76 5:Realm=9:wi-fi.org
|