Lines Matching refs:Script
85 // Pseudo-name for the PAC script.
86 const char kPacResourceName[] = "proxy-pac-script.js";
87 // Pseudo-name for the PAC utility script.
88 const char kPacUtilityResourceName[] = "proxy-pac-utility-script.js";
481 // (This script should never fail, as it is a string literal!)
499 // to be a legitimiate PAC script.
529 // Compiles and runs |script| in the current V8 context.
531 int RunScript(v8::Handle<v8::String> script, const char* script_name) {
534 // Compile the script.
537 v8::Local<v8::Script> code = v8::Script::Compile(script, &origin);
552 // V8 callback for when "alert()" is invoked by the PAC script.
574 // V8 callback for when "myIpAddress()" is invoked by the PAC script.
598 // V8 callback for when "myIpAddressEx()" is invoked by the PAC script.
620 // V8 callback for when "dnsResolve()" is invoked by the PAC script.
646 // V8 callback for when "dnsResolveEx()" is invoked by the PAC script.
673 // V8 callback for when "sortIpAddressList()" is invoked by the PAC script.
692 // V8 callback for when "isInNetEx()" is invoked by the PAC script.
765 // Try parsing the PAC script.