| /external/skia/legacy/src/animator/ |
| SkAnimatorScript.cpp | 82 const char* script = original; local 83 bool success = evaluateScript(&script, result); 144 const char* script = scriptValue->fOperand.fString->c_str(); local 145 success = engine.evaluateScript(&script, value); 311 bool SkAnimatorScript::EvaluateDisplayable(SkAnimateMaker& maker, SkDisplayable* displayable, const char* script, SkDisplayable** result) { 314 bool success = engine.evaluate(script, &value, SkType_Displayable); 320 bool SkAnimatorScript::EvaluateInt(SkAnimateMaker& maker, SkDisplayable* displayable, const char* script, int32_t* result) { 323 bool success = engine.evaluate(script, &value, SkType_Int); 329 bool SkAnimatorScript::EvaluateFloat(SkAnimateMaker& maker, SkDisplayable* displayable, const char* script, SkScalar* result) { 332 bool success = engine.evaluate(script, &value, SkType_Float) 567 const char* script = scriptTests[index].fScript; local [all...] |
| /external/skia/src/animator/ |
| SkAnimatorScript.cpp | 82 const char* script = original; local 83 bool success = evaluateScript(&script, result); 144 const char* script = scriptValue->fOperand.fString->c_str(); local 145 success = engine.evaluateScript(&script, value); 311 bool SkAnimatorScript::EvaluateDisplayable(SkAnimateMaker& maker, SkDisplayable* displayable, const char* script, SkDisplayable** result) { 314 bool success = engine.evaluate(script, &value, SkType_Displayable); 320 bool SkAnimatorScript::EvaluateInt(SkAnimateMaker& maker, SkDisplayable* displayable, const char* script, int32_t* result) { 323 bool success = engine.evaluate(script, &value, SkType_Int); 329 bool SkAnimatorScript::EvaluateFloat(SkAnimateMaker& maker, SkDisplayable* displayable, const char* script, SkScalar* result) { 332 bool success = engine.evaluate(script, &value, SkType_Float) 567 const char* script = scriptTests[index].fScript; local [all...] |
| /external/v8/src/ |
| compiler.h | 44 explicit CompilationInfo(Handle<Script> script); 67 Handle<Script> script() const { return script_; } function in class:v8::internal::BASE_EMBEDDED 192 if (script_->type()->value() == Script::TYPE_NATIVE) { 243 Handle<Script> script_; 311 Handle<Script> script); 317 Handle<Script> script); [all...] |
| /external/v8/test/mjsunit/regress/ |
| regress-737588.js | 30 goog.globalEval = function(script) { 31 return goog.global.eval(script);
|
| /external/webkit/Source/WebCore/bindings/js/ |
| JavaScriptCallFrame.h | 76 JSC::JSValue evaluate(const JSC::UString& script, JSC::JSValue& exception) const;
|
| /external/webkit/Source/WebCore/bindings/objc/ |
| WebScriptObject.h | 61 If clients need to raise an exception in the script environment 64 is being called within the scope of a script invocation. 108 @param selector The selector that will be exposed to the script environment. 110 in the script environment. It is the responsibility of the class to ensure 117 Objective-C name Default script name 128 @param selector The selector the will be exposed to the script environment. 129 @discussion Return NO to export the selector to the script environment. 130 Return YES to prevent the selector from being exported to the script environment. 139 script environment. Only instance variables that meet the export criteria will 150 script environment [all...] |
| /external/webkit/Source/WebCore/bindings/v8/ |
| V8Proxy.cpp | 203 v8::Handle<v8::Script> V8Proxy::compileScript(v8::Handle<v8::String> code, const String& fileName, const TextPosition0& scriptStartPosition, v8::ScriptData* scriptData) 210 v8::Handle<v8::Script> script = v8::Script::Compile(code, &origin, scriptData); local 211 return script; 353 // Compile the script. 362 v8::Handle<v8::Script> script = compileScript(code, source.url(), WTF::toZeroBasedTextPosition(source.startPosition()), scriptData.get()); local 369 // and false for <script>doSomething</script>. We make a rough guess a [all...] |
| WorkerContextExecutionProxy.h | 69 // Evaluate a script file in the current execution environment. 70 ScriptValue evaluate(const String& script, const String& fileName, const TextPosition0& scriptStartPosition, WorkerContextExecutionState*); 80 // Run an already compiled script. 81 v8::Local<v8::Value> runScript(v8::Handle<v8::Script>);
|
| WorkerScriptController.cpp | 120 return workerContext->script();
|
| /external/webkit/Source/WebCore/inspector/ |
| InspectorController.h | 85 void evaluateForTestInFrontend(long callId, const String& script);
|
| InspectorFrontendHost.h | 71 void setExtensionAPI(const String& script);
|
| /external/webkit/Source/WebCore/inspector/front-end/ |
| InspectorFrontendHostStub.js | 92 setExtensionAPI: function(script)
|
| /external/webkit/Source/WebKit/chromium/src/ |
| WebDevToolsAgentImpl.h | 78 virtual void evaluateInWebInspector(long callId, const WebString& script);
|
| /external/webkit/Source/WebKit/win/ |
| DOMEventsClasses.h | 64 /* [in] */ BSTR script, 65 /* [retval][out] */ VARIANT* result) { return DOMObject::evaluateWebScript(script, result); } 115 /* [in] */ BSTR script, 116 /* [retval][out] */ VARIANT* result) { return DOMObject::evaluateWebScript(script, result); } 195 /* [in] */ BSTR script, 196 /* [retval][out] */ VARIANT* result) { return DOMObject::evaluateWebScript(script, result); } 304 /* [in] */ BSTR script, 305 /* [retval][out] */ VARIANT* result) { return DOMObject::evaluateWebScript(script, result); } 452 /* [in] */ BSTR script, 453 /* [retval][out] */ VARIANT* result) { return DOMObject::evaluateWebScript(script, result); [all...] |
| WebInspector.h | 64 virtual HRESULT STDMETHODCALLTYPE evaluateInFrontend(ULONG callId, BSTR script);
|
| /external/webkit/Tools/DumpRenderTree/chromium/ |
| DRTDevToolsAgent.h | 72 bool evaluateInWebInspector(long callID, const std::string& script);
|
| /external/webkit/Tools/DumpRenderTree/qt/ |
| LayoutTestControllerQt.h | 126 void queueLoadingScript(const QString& script); 127 void queueNonLoadingScript(const QString& script); 146 void evaluateInWebInspector(long callId, const QString& script); 254 void evaluateScriptInIsolatedWorld(int worldID, const QString& script);
|
| WorkQueueItemQt.cpp | 100 m_webPage->mainFrame()->evaluateJavaScript(script());
|
| /external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/ |
| LayoutTestController.idl | 95 // Evaluating script in a special context. 96 [PassContext] void evaluateScriptInIsolatedWorld(in unsigned long worldID, in DOMString script); 101 void evaluateInWebInspector(in long callID, in DOMString script);
|
| /frameworks/base/tests/WebViewTests/src/com/android/webviewtests/ |
| JavaBridgeBasicsTest.java | 94 protected String executeJavaScriptAndGetStringResult(String script) throws Throwable { 95 executeJavaScript("testController.setStringValue(" + script + ");"); 111 private void assertRaisesException(String script) throws Throwable { 113 script + ";" +
|
| /frameworks/rs/cpu_ref/ |
| rsCpuScript.cpp | 77 RsdCpuScriptImpl::RsdCpuScriptImpl(RsdCpuReferenceImpl *ctx, const Script *s) { 110 //ALOGE("rsdScriptInit %p %p", rsc, script); 192 //script->mHal.drv = drv; 404 //rsdLookupRuntimeStub(script, "acos"); 429 void RsdCpuScriptImpl::populateScript(Script *script) { 434 script->mHal.info.exportedFunctionCount = info->getExportFuncNames().size(); 435 script->mHal.info.exportedVariableCount = info->getExportVarNames().size(); 436 script->mHal.info.exportedPragmaCount = info->getPragmas().size(); 437 script->mHal.info.exportedPragmaKeyList [all...] |
| /frameworks/rs/driver/ |
| rsdBcc.cpp | 39 ScriptC *script, 46 RsdCpuReference::CpuScript * cs = dc->mCpuRef->createScript(script, resName, cacheDir, 51 script->mHal.drv = cs; 52 cs->populateScript(script); 56 bool rsdInitIntrinsic(const Context *rsc, Script *s, RsScriptIntrinsicID iid, Element *e) { 68 Script *s, 81 int rsdScriptInvokeRoot(const Context *dc, Script *s) { 86 void rsdScriptInvokeInit(const Context *dc, Script *s) { 91 void rsdScriptInvokeFreeChildren(const Context *dc, Script *s) { 96 void rsdScriptInvokeFunction(const Context *dc, Script *s [all...] |
| /prebuilts/devtools/tools/ |
| draw9patch.bat | 19 rem Set up prog to be the path of this script, including following symlinks, 23 rem Change current directory and drive to where the script is, to avoid
|
| jobb.bat | 19 rem Set up prog to be the path of this script, including following symlinks,
23 rem Change current directory and drive to where the script is, to avoid
|
| /sdk/apkbuilder/etc/ |
| apkbuilder.bat | 19 rem Set up prog to be the path of this script, including following symlinks, 23 rem Change current directory and drive to where the script is, to avoid
|