Searched refs:npScript (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/content/shell/tools/plugin/ |
D | PluginTest.cpp | 238 NPString npScript; in executeScript() local 239 npScript.UTF8Characters = script; in executeScript() 240 npScript.UTF8Length = strlen(script); in executeScript() 243 executeScript(&npScript, &browserResult); in executeScript()
|
D | main.cpp | 402 NPString npScript; in executeScript() local 403 npScript.UTF8Characters = script; in executeScript() 404 npScript.UTF8Length = strlen(script); in executeScript() 407 browser->evaluate(obj->npp, windowScriptObject, &npScript, &browserResult); in executeScript()
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | npruntime_impl.h | 55 bool _NPN_Evaluate(NPP, NPObject*, NPString* npScript, NPVariant* result); 56 bool _NPN_EvaluateHelper(NPP, bool popupsAllowed, NPObject*, NPString* npScript, NPVariant* result);
|
D | NPV8Object.cpp | 320 bool _NPN_Evaluate(NPP npp, NPObject* npObject, NPString* npScript, NPVariant* result) in _NPN_Evaluate() argument 324 return _NPN_EvaluateHelper(npp, popupsAllowed, npObject, npScript, result); in _NPN_Evaluate() 327 bool _NPN_EvaluateHelper(NPP npp, bool popupsAllowed, NPObject* npObject, NPString* npScript, NPVar… in _NPN_EvaluateHelper() argument 353 String script = String::fromUTF8(npScript->UTF8Characters, npScript->UTF8Length); in _NPN_EvaluateHelper()
|