Lines Matching refs:Script
80 // Pseudo-name for the PAC script.
81 const char kPacResourceName[] = "proxy-pac-script.js";
82 // Pseudo-name for the PAC utility script.
83 const char kPacUtilityResourceName[] = "proxy-pac-utility-script.js";
451 // (This script should never fail, as it is a string literal!)
469 // to be a legitimiate PAC script.
510 // Compiles and runs |script| in the current V8 context.
512 int RunScript(v8::Handle<v8::String> script, const char* script_name) {
515 // Compile the script.
518 v8::Local<v8::Script> code = v8::Script::Compile(script, &origin);
533 // V8 callback for when "alert()" is invoked by the PAC script.
552 // V8 callback for when "myIpAddress()" is invoked by the PAC script.
573 // V8 callback for when "myIpAddressEx()" is invoked by the PAC script.
595 // V8 callback for when "dnsResolve()" is invoked by the PAC script.
616 // V8 callback for when "dnsResolveEx()" is invoked by the PAC script.
640 // V8 callback for when "sortIpAddressList()" is invoked by the PAC script.
657 // V8 callback for when "isInNetEx()" is invoked by the PAC script.
744 // Try parsing the PAC script.