| /external/webkit/Source/JavaScriptCore/ |
| jsc.cpp | 89 struct Script { 93 Script(bool isFile, char *argument) 109 Vector<Script> scripts; 211 Vector<char> script; local 212 if (!fillBufferWithContentsOfFile(fileName, script)) 219 evaluate(globalObject->globalExec(), globalObject->globalScopeChain(), makeSource(script.data(), fileName)); 228 Vector<char> script; local 229 if (!fillBufferWithContentsOfFile(fileName, script)) 233 Completion result = evaluate(globalObject->globalExec(), globalObject->globalScopeChain(), makeSource(script.data(), fileName)); 242 Vector<char> script; local 376 UString script; local [all...] |
| /external/webkit/Source/WebCore/inspector/ |
| InspectorDebuggerAgent.cpp | 249 Script& script = scriptIterator->second; 250 if (breakpoint.lineNumber < script.lineOffset) 252 if (!script.linesCount) { 253 script.linesCount = 1; 254 for (size_t i = 0; i < script.data.length(); ++i) { 255 if (script.data[i] == '\n') 256 script.linesCount += 1; 259 if (breakpoint.lineNumber >= script.lineOffset + script.linesCount [all...] |
| /frameworks/base/graphics/jni/ |
| android_renderscript_RenderScript.cpp | 833 nScriptBindAllocation(JNIEnv *_env, jobject _this, RsContext con, jint script, jint alloc, jint slot) 835 LOG_API("nScriptBindAllocation, con(%p), script(%p), alloc(%p), slot(%i)", con, (RsScript)script, (RsAllocation)alloc, slot); 836 rsScriptBindAllocation(con, (RsScript)script, (RsAllocation)alloc, slot); 840 nScriptSetVarI(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint val) 842 LOG_API("nScriptSetVarI, con(%p), s(%p), slot(%i), val(%i)", con, (void *)script, slot, val); 843 rsScriptSetVarI(con, (RsScript)script, slot, val); 847 nScriptSetVarObj(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint val) 849 LOG_API("nScriptSetVarObj, con(%p), s(%p), slot(%i), val(%i)", con, (void *)script, slot, val); 850 rsScriptSetVarObj(con, (RsScript)script, slot, (RsObjectBase)val) [all...] |
| /external/v8/src/ |
| codegen.cc | 144 Handle<Script> script = info->script(); local 145 if (!script->IsUndefined() && !script->source()->IsUndefined()) { 147 StringInputBuffer stream(String::cast(script->source()));
|
| /external/webkit/Source/WebCore/bindings/v8/ |
| V8Proxy.cpp | 211 v8::Handle<v8::Script> V8Proxy::compileScript(v8::Handle<v8::String> code, const String& fileName, const TextPosition0& scriptStartPosition, v8::ScriptData* scriptData) 215 v8::Handle<v8::Script> script = compileScriptInternal(code, fileName, scriptStartPosition, scriptData); local 217 return script; 220 v8::Handle<v8::Script> V8Proxy::compileScriptInternal(v8::Handle<v8::String> code, const String& fileName, const TextPosition0& scriptStartPosition, v8::ScriptData* scriptData) 228 v8::Handle<v8::Script> script = v8::Script::Compile(code, &origin, scriptData); local 229 return script; 371 // Compile the script 380 v8::Handle<v8::Script> script = compileScript(code, source.url(), WTF::toZeroBasedTextPosition(source.startPosition()), scriptData.get()); local [all...] |
| V8LazyEventListener.cpp | 120 v8::Handle<v8::Script> script = V8Proxy::compileScript(codeExternalString, m_sourceURL, m_position); local 121 if (!script.IsEmpty()) { 122 v8::Local<v8::Value> value = proxy->runScript(script, false);
|
| ScriptController.cpp | 139 // script object properly. 160 // No script is running, so it is user-initiated unless the gesture stack 165 V8Proxy* activeProxy = activeFrame->script()->proxy(); 191 const String* sourceURL = activeFrame->script()->sourceURL(); 196 if (activeFrame->script()->allowPopupsFromPlugin()) 198 // This is the <script>window.open(...)</script> case or a timer callback -> block it. 219 // Evaluate a script file in the environment of this proxy. 291 v8::Handle<v8::Script> script = v8::Script::Compile(source, name) local [all...] |
| /frameworks/base/libs/rs/ |
| rsScript.cpp | 22 Script::Script(Context *rsc) : ObjectBase(rsc) { 30 Script::~Script() { 41 void Script::setSlot(uint32_t slot, Allocation *a) { 44 LOGE("Script::setSlot unable to set allocation, invalid slot index"); 50 mRSC->mHal.funcs.script.setGlobalBind(mRSC, this, slot, a->getPtr()); 52 mRSC->mHal.funcs.script.setGlobalBind(mRSC, this, slot, NULL); 56 void Script::setVar(uint32_t slot, const void *val, size_t len) { 59 LOGE("Script::setVar unable to set allocation, invalid slot index") [all...] |
| /external/chromium/chrome/browser/geolocation/ |
| geolocation_browsertest.cc | 48 std::string script = StringPrintf( local 54 ExecuteJavascriptInWebFrame(string16(), UTF8ToUTF16(script)); 60 script = StringPrintf( 65 L"", UTF8ToWide(script), &iframe_src)); 130 std::string script = local 134 UTF8ToUTF16(script)); 345 std::string script = StringPrintf( local 350 iframe_xpath_, UTF8ToWide(script), &result)); 605 std::string script = StringPrintf( local 611 L"", UTF8ToWide(script), &js_result)) 641 std::string script = local [all...] |
| /external/icu4c/layout/ |
| LEFontInstance.cpp | 34 le_int32 script, LEErrorCode &success) const 40 if (chars == NULL || *offset < 0 || limit < 0 || *offset >= limit || script < 0 || script >= scriptCodeCount) {
|
| /external/skia/src/xml/ |
| SkJS.cpp | 200 SkBool SkJS::EvaluateScript(const char* script, jsval* rVal) { 201 return JS_EvaluateScript(fContext, fGlobal, script, strlen(script),
|
| /external/v8/test/mjsunit/ |
| mirror-script.js | 34 var mirror = debug.MakeMirror(f).script(); 45 assertEquals('script', mirror.type()); 68 assertEquals('script', fromJSON.type); 85 // Test the script mirror for different functions. 86 testScriptMirror(function(){}, 'mirror-script.js', 98, 2, 0); 92 var mirror = debug.MakeMirror(eval('(function(){\n 1;\n})')).script();
|
| debug-liveedit-1.js | 39 var script = Debug.findScript(ChooseAnimal); variable 42 var patch_pos = script.source.indexOf(orig_animal); 46 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos, orig_animal.length, new_animal_patch, change_log);
|
| /external/v8/test/mozilla/ |
| testcfg.py | 112 script = join(self.root, reduce(join, dir, ''), 'shell.js') 113 if exists(script): 114 framework.append(script)
|
| /external/webkit/Source/JavaScriptCore/qt/api/ |
| qscriptengine_p.cpp | 70 JSStringRef script = QScriptConverter::toString(program); local 72 QScriptValuePrivate* result = new QScriptValuePrivate(this, evaluate(script, file, lineNumber)); 73 JSStringRelease(script);
|
| /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/ |
| PluginTest.cpp | 158 void PluginTest::executeScript(const char* script) 164 npScript.UTF8Characters = script; 165 npScript.UTF8Length = strlen(script);
|
| /external/webkit/LayoutTests/dom/html/level2/html/ |
| HTMLScriptElement02.js | 49 docsLoaded += preload(docRef, "doc", "script"); 99 doc = load(docRef, "doc", "script"); 100 nodeList = doc.getElementsByTagName("script");
|
| HTMLScriptElement06.js | 49 docsLoaded += preload(docRef, "doc", "script"); 95 doc = load(docRef, "doc", "script"); 96 nodeList = doc.getElementsByTagName("script");
|
| HTMLScriptElement07.js | 49 docsLoaded += preload(docRef, "doc", "script"); 95 doc = load(docRef, "doc", "script"); 96 nodeList = doc.getElementsByTagName("script");
|
| /external/webkit/LayoutTests/dom/xhtml/level2/html/ |
| HTMLScriptElement02.js | 49 docsLoaded += preload(docRef, "doc", "script"); 99 doc = load(docRef, "doc", "script"); 100 nodeList = doc.getElementsByTagName("script");
|
| HTMLScriptElement06.js | 49 docsLoaded += preload(docRef, "doc", "script"); 95 doc = load(docRef, "doc", "script"); 96 nodeList = doc.getElementsByTagName("script");
|
| HTMLScriptElement07.js | 49 docsLoaded += preload(docRef, "doc", "script"); 95 doc = load(docRef, "doc", "script"); 96 nodeList = doc.getElementsByTagName("script");
|
| /external/webkit/Source/WebKit/mac/WebInspector/ |
| WebInspector.mm | 191 - (void)evaluateInFrontend:(id)sender callId:(long)callId script:(NSString *)script 194 page->inspectorController()->evaluateForTestInFrontend(callId, script);
|
| /build/core/combo/ |
| javac.mk | 27 # We set the VM options (like -Xmx) in the javac script.
|
| /development/tools/emulator/opengl/shared/OpenglCodecCommon/ |
| Android.mk | 1 # This build script corresponds to a library containing many definitions
|