Searched refs:script (Results 226 - 250 of 790) sorted by relevance

1234567891011>>

/external/openfst/src/include/fst/script/
H A Dcompile.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
22 #include <fst/script/compile-impl.h>
25 namespace script { namespace in namespace:fst
89 } // namespace script
H A Ddraw.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
22 #include <fst/script/draw-impl.h>
27 namespace script { namespace in namespace:fst
108 } // namespace script
H A Drmepsilon.h23 #include <fst/script/arg-packs.h>
24 #include <fst/script/fst-class.h>
25 #include <fst/script/weight-class.h>
26 #include <fst/script/shortest-distance.h> // for ShortestDistanceOptions
33 %include "nlp/fst/script/shortest-distance.h"
38 namespace script { namespace in namespace:fst
44 struct RmEpsilonOptions : public fst::script::ShortestDistanceOptions {
50 WeightClass w = fst::script::WeightClass::Zero(),
62 // this function takes care of transforming a script-land RmEpsilonOptions
193 fst::script
[all...]
H A Dshortest-path.h23 #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
H A Drandequivalent.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
22 #include <fst/script/randgen.h> // for RandArcSelection
26 namespace script { namespace in namespace:fst
98 fst::script::RandArcSelection> &opts);
100 } // namespace script
/external/skia/include/xml/
H A DSkJS.h28 SkBool EvaluateScript(const char* script, jsval* rVal);
/external/skia/src/animator/
H A DSkDump.h33 SkString script; member in class:SkDump
H A DSkScriptTokenizer.cpp358 bool SkScriptEngine2::evaluateDot(const char*& script) { argument
359 size_t fieldLength = token_length(++script); // skip dot
361 const char* field = script;
362 script += fieldLength;
368 return evaluateDotParam(script, field, fieldLength);
373 bool SkScriptEngine2::evaluateDotParam(const char*& script, const char* field, size_t fieldLength) { argument
380 while (is_ws(ch = script[0]))
381 script++;
388 success = functionParams(&script, &params);
399 if (strncmp(*scriptPtr, "#script
409 const char* script = *scriptPtr; local
473 const char* script = *scriptPtr; local
1497 const char* script = scriptTests[index].fScript; local
[all...]
/external/v8/test/mjsunit/
H A Ddebug-stepin-constructor.js42 // Test that there is a script.
43 assertTrue(typeof(event_data.func().script()) == 'object');
/external/webkit/Source/WebCore/bindings/v8/
H A DWorkerContextExecutionProxy.cpp191 ScriptValue WorkerContextExecutionProxy::evaluate(const String& script, const String& fileName, const TextPosition0& scriptStartPosition, WorkerContextExecutionState* state) argument
202 v8::Local<v8::String> scriptString = v8ExternalString(script);
207 m_workerContext->script()->forbidExecution();
232 v8::Local<v8::Value> WorkerContextExecutionProxy::runScript(v8::Handle<v8::Script> script) argument
234 if (script.IsEmpty())
240 script = V8Proxy::compileScript(code, "", TextPosition0::minimumPosition());
244 ASSERT(script.IsEmpty());
246 if (script.IsEmpty())
249 // Run the script and keep track of the current recursion depth.
253 result = script
[all...]
/external/webkit/Source/WebKit/qt/docs/webkitsnippets/
H A Dqtwebkit_bridge_snippets.cpp40 <script>
45 </script>
71 <script>
75 </script>
/external/webkit/Source/WebCore/inspector/front-end/
H A DDebuggerPresentationModel.js97 _addScript: function(script)
99 var sourceFileId = this._createSourceFileId(script.sourceURL, script.sourceID);
102 sourceFile.addScript(script);
111 sourceFile = new WebInspector.SourceFile(sourceFileId, script, contentChanged.bind(this));
113 sourceFile = new WebInspector.FormattedSourceFile(sourceFileId, script, contentChanged.bind(this), this._formatter());
140 var script = this._scriptForSourceFileId(sourceFileId);
141 return !script.lineOffset && !script.columnOffset;
146 var script
[all...]
/external/doclava/res/assets/templates/components/
H A Dleft_nav.cs36 <script>
38 </script>
51 <script>
67 </script><?cs
/external/openfst/src/bin/
H A Dfstcompile.cc23 #include <fst/script/compile.h>
38 namespace s = fst::script;
/external/openfst/src/extensions/pdt/
H A Dpdtcompose.cc29 #include <fst/script/connect.h>
36 namespace s = fst::script;
/external/openfst/src/script/
H A Dtext-io.cc17 #include <fst/script/text-io.h>
28 namespace script { namespace in namespace:fst
94 } // namespace script
/external/srec/config/en.us/grammars/
H A Drun_clean_grammars.sh5 rm *.script >/dev/null 2>&1
/external/webkit/Source/JavaScriptCore/API/
H A DJSBase.h98 @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 include source file information in exceptions.
113 @param startingLineNumber An integer value specifying the script'
[all...]
/external/webkit/Source/JavaScriptCore/debugger/
H A DDebuggerCallFrame.cpp86 JSValue DebuggerCallFrame::evaluate(const UString& script, JSValue& exception) const argument
92 EvalExecutable* eval = EvalExecutable::create(m_callFrame, makeSource(script), m_callFrame->codeBlock()->isStrictMode());
/external/webkit/Source/WebCore/bindings/js/
H A DJavaScriptCallFrame.cpp103 JSValue JavaScriptCallFrame::evaluate(const UString& script, JSValue& exception) const argument
110 return m_debuggerCallFrame.evaluate(script, exception);
H A DJSEventListener.cpp91 ScriptController* script = frame->script();
92 if (!script->canExecuteScripts(AboutToExecuteScript) || script->isPaused())
138 static_cast<WorkerContext*>(scriptExecutionContext)->script()->forbidExecution();
/external/webkit/Source/WebCore/gyp/
H A Dstreamline-inspector-source.sh8 # 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/
H A DJavaScriptCallFrame.idl41 [Custom] void evaluate(in DOMString script);
/external/webkit/Tools/TestWebKitAPI/
H A DJavaScriptTest.cpp73 bool runJSTest(WKPageRef page, const char* script, const char* expectedResult) argument
76 WKPageRunJavaScriptInMainFrame(page, wk(script).get(), &context, javaScriptCallback);
/external/v8/src/
H A Dcodegen.cc123 Handle<Script> script = info->script(); local
124 if (!script->IsUndefined() && !script->source()->IsUndefined()) {
126 StringInputBuffer stream(String::cast(script->source()));

Completed in 441 milliseconds

1234567891011>>