Searched defs:script (Results 101 - 125 of 311) sorted by relevance

1234567891011>>

/external/v8/test/cctest/
H A Dtest-func-name-inference.cc62 static void CheckFunctionName(v8::Handle<v8::Script> script, argument
65 // Get script source.
66 Handle<Object> obj = v8::Utils::OpenHandle(*script);
75 Handle<Script> i_script(Script::cast(shared_function->script()));
115 v8::Handle<v8::Script> script = Compile( local
118 CheckFunctionName(script, "return 1", "fun1");
119 CheckFunctionName(script, "return 2", "fun2");
127 v8::Handle<v8::Script> script = Compile( local
130 CheckFunctionName(script, "return 1", "fun1");
131 CheckFunctionName(script, "retur
139 v8::Handle<v8::Script> script = Compile( local
153 v8::Handle<v8::Script> script = Compile( local
167 v8::Handle<v8::Script> script = Compile( local
183 v8::Handle<v8::Script> script = Compile( local
201 v8::Handle<v8::Script> script = Compile( local
219 v8::Handle<v8::Script> script = Compile( local
233 v8::Handle<v8::Script> script = Compile( local
249 v8::Handle<v8::Script> script = Compile( local
262 v8::Handle<v8::Script> script = Compile( local
277 v8::Handle<v8::Script> script = Compile( local
290 v8::Handle<v8::Script> script = Compile( local
306 v8::Handle<v8::Script> script = Compile( local
320 v8::Handle<v8::Script> script = Compile( local
336 v8::Handle<v8::Script> script = Compile( local
355 v8::Handle<v8::Script> script = Compile( local
370 v8::Handle<v8::Script> script = Compile( local
388 v8::Handle<v8::Script> script = Compile( local
[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/
H A DScriptControllerBase.cpp48 ScriptValue ScriptController::executeScript(const String& script, bool forceUserGesture) argument
50 return executeScript(ScriptSourceCode(script, forceUserGesture ? KURL() : m_frame->document()->url()));
82 // We need to hold onto the Frame here because executing script can
91 // If executing script caused this frame to be removed from the page, we
/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);
/external/chromium/chrome/browser/extensions/
H A Dconvert_user_script.cc38 *error = "User script must be UTF8 encoded.";
42 UserScript script; local
44 &script)) {
45 *error = "Invalid script header.";
64 if (!script.name().empty() && !script.name_space().empty())
65 script_name = script.name_space() + "/" + script.name();
71 // its unique identity, and we need one of those. A user script's unique
80 // The script ma
[all...]
H A Duser_script_master_unittest.cc21 // Test bringing up a master on a specific directory, putting a script
35 // Register for all user script notifications.
69 // Updated to the script shared memory when we get notified.
88 FilePath path = temp_dir_.path().AppendASCII("script.user.js");
106 "// This is my awesome script\n"
109 "// @name foobar script\n"
122 UserScript script; local
124 text, &script));
125 ASSERT_EQ(3U, script.globs().size());
126 EXPECT_EQ("*mail.google.com*", script
134 UserScript script; local
147 UserScript script; local
160 UserScript script; local
178 UserScript script; local
191 UserScript script; local
205 UserScript script; local
[all...]
/external/harfbuzz/src/
H A Dharfbuzz-thai.c105 void HB_ThaiAttributes(HB_Script script, const HB_UChar16 *text, hb_uint32 from, hb_uint32 len, HB_CharAttributes *attributes) argument
107 assert(script == HB_Script_Thai);
/external/openfst/src/extensions/pdt/
H A Dpdtscript.cc20 // See comments in nlp/fst/script/script-impl.h for how the registration
35 #include <fst/script/script-impl.h>
38 namespace script { namespace in namespace:fst
114 } // namespace script
/external/openfst/src/include/fst/script/
H A Darg-packs.h36 namespace script { namespace in namespace:fst
237 } // namespace 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 Dmap.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
22 #include <fst/script/weight-class.h>
27 namespace script { namespace in namespace:fst
64 script::StateMap(ifst, ArcSumMapper<Arc>(ifst)));
67 script::ArcMap(ifst, IdentityArcMapper<Arc>()));
70 script::ArcMap(ifst, InvertWeightMapper<Arc>()));
73 script::ArcMap(ifst, PlusMapper<Arc>(w)));
76 script::ArcMap(ifst, QuantizeMapper<Arc>(delta)));
79 script
[all...]
/external/openfst/src/script/
H A Ddraw.cc19 #include <fst/script/fst-class.h>
20 #include <fst/script/draw.h>
21 #include <fst/script/script-impl.h>
24 namespace script { namespace in namespace:fst
54 } // namespace script
H A Dfst-class.cc21 #include <fst/script/fst-class.h>
22 #include <fst/script/register.h>
29 namespace script { namespace in namespace:fst
140 } // namespace script
/external/v8/src/
H A Dmessages.h69 MessageLocation(Handle<Script> script, argument
72 : script_(script),
77 Handle<Script> script() const { return script_; } function in class:v8::internal::MessageLocation
/external/webkit/Source/JavaScriptCore/API/
H A DJSBase.cpp45 JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception) argument
54 SourceCode source = makeSource(script->ustring(), sourceURL->ustring(), startingLineNumber);
70 bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception) argument
75 SourceCode source = makeSource(script->ustring(), sourceURL->ustring(), startingLineNumber);
/external/webkit/Source/WebCore/workers/
H A DWorkerScriptLoader.h54 const String& script() const { return m_script; } function in class:WebCore::WorkerScriptLoader
/external/webkit/Tools/DumpRenderTree/pthreads/
H A DJavaScriptThreadingPthreads.cpp60 static const char* const script = local
71 JSStringRef scriptRef = JSStringCreateWithUTF8CString(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/chromium/chrome/browser/automation/
H A Dautomation_tab_helper_browsertest.cc63 // 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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DFetchBaseTask.java57 String script=getScript(key,properties.get(key).toString());
58 entries.put("fetch."+key,script);
141 String script="<project default=\"all.elements\">\n" +
142 "<!--Ant script which will fetch pre-built plug-ins and features to a location where they\n" +
150 script=script.concat("\t\t<antcall target=\""+keys.nextElement()+"\" />\n");
152 script=script.concat("\t</target>");
155 script=script
162 printScript(String script) argument
[all...]
/external/freetype/src/autofit/
H A Dafglobal.c52 /* 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
[all...]
/external/grub/stage2/
H A Dcmdline.c179 /* Run an entry from the script SCRIPT. HEAP is used for the
183 run_script (char *script, char *heap) argument
186 char *cur_entry = script;
/external/icu4c/common/unicode/
H A Dlocid.h83 * For example, use REVISED for a langauge's revised script orthography, and POSIX for POSIX.
385 * Returns the locale's ISO-15924 abbreviation script code.
515 * Fills in "dispScript" with the name of this locale's script in a format suitable
516 * for user display in the default locale. For example, if the locale's script code
528 * script code is "LATN" and displayLocale's language code is "en", this function would set
531 * words, if the locale's script code is "LATN", passing
718 char script[ULOC_SCRIPT_CAPACITY]; member in class:Locale
759 return script;
/external/icu4c/samples/layout/
H A DScriptCompositeFontInstance.cpp39 le_int32 script = LE_GET_SUB_FONT(glyph); local
40 const LEFontInstance *font = fFontMap->getScriptFont(script, status);
53 le_int32 script = LE_GET_SUB_FONT(glyph); local
54 const LEFontInstance *font = fFontMap->getScriptFont(script, status);
63 const LEFontInstance *ScriptCompositeFontInstance::getSubFont(const LEUnicode chars[], le_int32 *offset, le_int32 limit, le_int32 script, LEErrorCode &success) const argument
69 if (chars == NULL || *offset < 0 || limit < 0 || *offset >= limit || script < 0 || script >= scriptCodeCount) {
74 const LEFontInstance *result = fFontMap->getScriptFont(script, success);
86 // look in all the fonts in some order, script code order being the most obvious...
91 le_int32 script local
[all...]

Completed in 1250 milliseconds

1234567891011>>