HomeSort by relevance Sort by last modified time
    Searched refs:script (Results 276 - 300 of 1049) sorted by null

<<11121314151617181920>>

  /external/v8/test/mjsunit/
debug-script-breakpoints.js 32 // Set and remove a script break point for a named script.
41 // Set three script break points for named scripts.
46 // Check the content of the script break points.
64 // Remove script break points (in another order than they where added).
73 // Set and remove a script break point for a script id.
82 // Set three script break points for script ids.
87 // Check the content of the script break points
    [all...]
  /build/tools/droiddoc/templates-sdk/
customizations.cs 33 <script>
37 </script>
51 <script>
55 </script>
71 <script>
75 </script>
91 <script>
95 </script>
111 <script>
115 </script>
    [all...]
  /external/v8/src/
liveedit-debugger.js 28 // LiveEdit feature implementation. The script should be executed after
32 // according to changes of script source (if possible).
34 // When new script source is put in, the difference is calculated textually,
39 // version of the script) it remains unchanged, but the code that could
40 // create a new instance of this function goes away. An old version of script
50 // Applies the change to the script.
53 function ApplyPatchMultiChunk(script, diff_array, new_source, preview_only,
56 var old_source = script.source;
58 // Gather compile information about old version of script.
59 var old_compile_info = GatherCompileInfo(old_source, script);
    [all...]
codegen.cc 123 Handle<Script> script = info->script(); local
124 if (!script->IsUndefined() && !script->source()->IsUndefined()) {
126 StringInputBuffer stream(String::cast(script->source()));
  /build/core/
raw_executable.mk 19 $(addprefix --script ,$(PRIVATE_LINK_SCRIPT)) \
  /development/tools/emulator/opengl/shared/OpenglOsUtils/
Android.mk 1 # This build script corresponds to a small library containing
  /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/openfst/src/bin/
fstcompile.cc 23 #include <fst/script/compile.h>
38 namespace s = fst::script;
  /external/openfst/src/extensions/pdt/
pdtcompose.cc 29 #include <fst/script/connect.h>
36 namespace s = fst::script;
  /external/openfst/src/include/fst/script/
shortest-path.h 23 #include <fst/script/arg-packs.h>
24 #include <fst/script/fst-class.h>
25 #include <fst/script/weight-class.h>
27 #include <fst/script/shortest-distance.h> // for ShortestDistanceOptions
30 namespace script { namespace in namespace:fst
33 : public fst::script::ShortestDistanceOptions {
44 WeightClass w = fst::script::WeightClass::Zero(),
182 fst::script::WeightClass::Zero(),
185 } // namespace script
  /external/openfst/src/script/
text-io.cc 17 #include <fst/script/text-io.h>
28 namespace script { namespace in namespace:fst
94 } // namespace script
  /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/tests/WebViewTests/src/com/android/webviewtests/
JavaBridgeTestBase.java 105 protected void executeJavaScript(final String script) throws Throwable {
112 // frame. We don't want this behaviour, so wrap the script in
114 getWebView().loadUrl("javascript:(function() { " + script + " })()");
  /frameworks/rs/
rsScriptC.cpp 37 ScriptC::ScriptC(Context *rsc) : Script(rsc) {
51 mRSC->mHal.funcs.script.invokeFreeChildren(mRSC, this);
52 mRSC->mHal.funcs.script.destroy(mRSC, this);
104 rsc->mHal.funcs.script.setGlobalBind(rsc, this, ct, mSlots[ct].get());
125 rsc->setError(RS_ERROR_BAD_SCRIPT, "Attempted to run bad script");
138 ret = rsc->mHal.funcs.script.invokeRoot(rsc, this);
160 rsc->mHal.funcs.script.invokeForEach(rsc, this, slot, ain, aout, usr, usrBytes, sc);
165 rsc->setError(RS_ERROR_BAD_SCRIPT, "Calling invoke on bad script");
173 rsc->mHal.funcs.script.invokeFunction(rsc, this, slot, data, len);
258 if (!rsc->mHal.funcs.script.init(rsc, this, resName, cacheDir, bitcode, bitcodeLen, 0))
    [all...]
rsScriptIntrinsic.cpp 24 ScriptIntrinsic::ScriptIntrinsic(Context *rsc) : Script(rsc) {
36 rsc->mHal.funcs.script.initIntrinsic(rsc, this, iid, e);
63 rsc->mHal.funcs.script.invokeForEach(rsc, this, slot, ain, aout, usr, usrBytes, sc);
  /frameworks/support/renderscript/v8/rs_support/
rsScriptIntrinsic.cpp 24 ScriptIntrinsic::ScriptIntrinsic(Context *rsc) : Script(rsc) {
36 rsc->mHal.funcs.script.initIntrinsic(rsc, this, iid, e);
63 rsc->mHal.funcs.script.invokeForEach(rsc, this, slot, ain, aout, usr, usrBytes, sc);
  /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();

Completed in 884 milliseconds

<<11121314151617181920>>