| /build/core/ |
| raw_executable.mk | 19 $(addprefix --script ,$(PRIVATE_LINK_SCRIPT)) \
|
| /development/pdk/docs/source/ |
| source_toc.cs | 0 <script type="text/javascript" language="JavaScript"> 5 </script> 33 <script type="text/javascript"> 37 </script>
|
| /external/chromium/net/data/proxy_resolver_v8_unittest/ |
| simple.js | 1 // PAC script which uses isInNet on both IP addresses and hosts, and calls
|
| /external/srec/config/en.us/grammars/ |
| run_clean_grammars.sh | 5 rm *.script >/dev/null 2>&1
|
| /external/webkit/Source/JavaScriptCore/API/ |
| JSBase.h | 92 /* Script Evaluation */ 98 @param script A JSString containing the script to evaluate. 100 @param sourceURL A JSString containing a URL for the script's source file. This is only used when reporting exceptions. Pass NULL if you do not care to include source file information in exceptions. 101 @param startingLineNumber An integer value specifying the script's starting line number in the file located at sourceURL. This is only used when reporting exceptions. 103 @result The JSValue that results from evaluating script, or NULL if an exception is thrown. 105 JS_EXPORT JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception); 111 @param script A JSString containing the script to check for syntax errors. 112 @param sourceURL A JSString containing a URL for the script's source file. This is only used when reporting exceptions. Pass NULL if you do not care to includ (…) [all...] |
| /external/webkit/Source/JavaScriptCore/debugger/ |
| DebuggerCallFrame.cpp | 86 JSValue DebuggerCallFrame::evaluate(const UString& script, JSValue& exception) const 92 EvalExecutable* eval = EvalExecutable::create(m_callFrame, makeSource(script), m_callFrame->codeBlock()->isStrictMode());
|
| /external/webkit/Source/WebCore/bindings/js/ |
| JavaScriptCallFrame.cpp | 103 JSValue JavaScriptCallFrame::evaluate(const UString& script, JSValue& exception) const 110 return m_debuggerCallFrame.evaluate(script, exception);
|
| JSEventListener.cpp | 91 ScriptController* script = frame->script(); 92 if (!script->canExecuteScripts(AboutToExecuteScript) || script->isPaused()) 138 static_cast<WorkerContext*>(scriptExecutionContext)->script()->forbidExecution();
|
| ScheduledAction.cpp | 125 if (!frame || !frame->script()->canExecuteScripts(AboutToExecuteScript)) 128 frame->script()->setProcessingTimerCallback(true); 134 frame->script()->executeScriptInWorld(m_isolatedWorld.get(), m_code); 136 frame->script()->setProcessingTimerCallback(false); 145 WorkerScriptController* scriptController = workerContext->script();
|
| /external/webkit/Source/WebCore/gyp/ |
| streamline-inspector-source.sh | 8 # Combine all script resources in the inspector.html file. 9 "$SRCROOT/../inspector/combine-javascript-resources.pl" --input-html "${SRCROOT}/../inspector/front-end/inspector.html" --generated-scripts-dir ${BUILT_PRODUCTS_DIR}/DerivedSources/WebCore --output-dir "${DERIVED_FILE_DIR}/WebCore" --output-script-name inspector.js 11 # Inline script imports in ScriptFormatterWorker.js file.
|
| /external/webkit/Source/WebCore/inspector/ |
| JavaScriptCallFrame.idl | 41 [Custom] void evaluate(in DOMString script);
|
| /external/webkit/Tools/TestWebKitAPI/ |
| JavaScriptTest.cpp | 73 bool runJSTest(WKPageRef page, const char* script, const char* expectedResult) 76 WKPageRunJavaScriptInMainFrame(page, wk(script).get(), &context, javaScriptCallback);
|
| /frameworks/base/libs/rs/ |
| rsScriptC.cpp | 35 ScriptC::ScriptC(Context *rsc) : Script(rsc) { 48 mRSC->mHal.funcs.script.invokeFreeChildren(mRSC, this); 49 mRSC->mHal.funcs.script.destroy(mRSC, this); 68 rsc->mHal.funcs.script.setGlobalBind(rsc, this, ct, ptr); 105 rsc->setError(RS_ERROR_BAD_SCRIPT, "Attempted to run bad script"); 118 ret = rsc->mHal.funcs.script.invokeRoot(rsc, this); 139 rsc->mHal.funcs.script.invokeForEach(rsc, this, 0, ain, aout, usr, usrBytes, sc); 144 rsc->setError(RS_ERROR_BAD_SCRIPT, "Calling invoke on bad script"); 152 rsc->mHal.funcs.script.invokeFunction(rsc, this, slot, data, len); 233 rsc->mHal.funcs.script.init(rsc, this, resName, cacheDir, bitcode, bitcodeLen, 0) [all...] |
| /ndk/ |
| ndk-build.cmd | 2 rem This is a Windows cmd.exe script used to invoke the NDK-specific GNU Make executable
|
| /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/rules/ |
| GroovyRule.java | 19 import groovy.lang.Script; 33 * Implementation of a rule using a Groovy script. 37 private final Script mScript; 42 public GroovyRule(String name, Script script) { 44 mScript = script;
|
| /external/webkit/Source/WebCore/workers/ |
| WorkerThread.cpp | 130 m_workerContext->script()->forbidExecution(); 134 WorkerScriptController* script = m_workerContext->script(); local 135 script->evaluate(ScriptSourceCode(m_startupData->m_sourceCode, m_startupData->m_scriptURL)); 229 // Ensure that tasks are being handled by thread event loop. If script execution weren't forbidden, a while(1) loop in JS could keep the thread alive forever. 231 m_workerContext->script()->scheduleExecutionTermination();
|
| /external/v8/test/mjsunit/ |
| debug-script.js | 35 // Count script types. 59 // This script and mjsunit.js has been loaded. If using d8, d8 loads 60 // a normal script during startup too. 63 // Test a builtins script. 68 // Test a builtins delay loaded script. 73 // Test a debugger script. 78 // Test an extension script. 85 // Test a normal script. 90 // Check a nonexistent script.
|
| /external/freetype/src/autofit/ |
| afglobal.c | 52 /* index of default script in `af_script_classes' */ 76 /* Compute the script index of each glyph within a given face. */ 97 * Ignore this error; we simply use the default script. 104 /* scan each script in a Unicode charmap */ 116 * glyph script index. 157 * By default, all uncovered glyphs are set to the latin script. 253 FT_UInt script = options & 15; local 265 gidx = script; 270 if ( script == 0 ) 271 script = clazz->script [all...] |
| /external/webkit/Source/WebCore/rendering/mathml/ |
| RenderMathMLSubSup.cpp | 82 RenderBlock* script = new (renderArena()) RenderMathMLBlock(node()); local 86 script->setStyle(scriptStyle.release()); 88 m_scripts->addChild(script, m_scripts->firstChild()); 89 script->addChild(child); 116 // Adjust the script placement after we stretch 118 RenderObject* script = m_scripts->firstChild(); local 119 if (script) { 120 // Calculate the script height without the container margins. 121 RenderObject* top = script;
|
| /external/webkit/Source/JavaScriptCore/API/tests/ |
| minidom.c | 58 JSStringRef script = JSStringCreateWithUTF8CString(scriptUTF8); local 60 JSValueRef result = JSEvaluateScript(context, script, NULL, NULL, 1, &exception); 62 printf("PASS: Test script executed successfully.\n"); 64 printf("FAIL: Test script threw exception:\n"); 73 JSStringRelease(script);
|
| /development/tools/apkcheck/ |
| Android.mk | 18 # script file's timestamp is at least as new as the 21 # the execution script
|
| /external/chromium/chrome/browser/automation/ |
| automation_tab_helper_browsertest.cc | 63 // Add default expectations for a client redirection initiated by script, 65 // that the tab receives news of the redirect before the script returns. 83 // page's script. If |wait_for_response| is true, this method will not 87 std::string script = base::StringPrintf("runTestCase(%d);", local 93 host, L"", ASCIIToWide(script))); 95 script += "window.domAutomationController.setAutomationId(0);" 97 host->ExecuteJavascriptInWebFrame(ASCIIToUTF16(""), ASCIIToUTF16(script));
|
| /external/chromium/third_party/libjingle/source/talk/base/ |
| macutils.cc | 154 bool RunAppleScript(const std::string& script) { 168 LOG(LS_ERROR) << "Failed opening Apple Script component"; 171 err = AECreateDesc(typeUTF8Text, script.data(), script.size(), &script_desc); 174 LOG(LS_ERROR) << "Failed creating Apple Script description"; 185 LOG(LS_ERROR) << "Error compiling Apple Script"; 193 LOG(LS_ERROR) << "Error when executing Apple Script: " << script; 200 LOG(LS_ERROR) << "Script error: " << data;
|
| /external/icu4c/common/ |
| ulocimp.h | 54 char *script, int32_t scriptCapacity,
|
| /external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/ |
| PhoneNumberOfflineGeocoder.java | 74 int countryCallingCode, String language, String script, String region) { 75 String fileName = mappingFileProvider.getFileName(countryCallingCode, language, script, region); 149 String scriptStr = ""; // No script is specified 181 * @param script four-letter titlecase (the first letter is uppercase and the rest of the letters 182 * are lowercase) ISO script codes as defined in ISO 15924 188 PhoneNumber number, String lang, String script, String region) { 195 getPhonePrefixDescriptions(phonePrefix, lang, script, region);
|