HomeSort by relevance Sort by last modified time
    Searched refs:script (Results 526 - 550 of 981) sorted by null

<<21222324252627282930>>

  /external/v8/src/
mirror-debugger.js 158 var SCRIPT_TYPE = 'script';
372 * Check whether the mirror reflects a script.
373 * @returns {boolean} True if the mirror reflects a script
833 * Returns the script object for the function.
834 * @return {ScriptMirror or undefined} Script object for the function or
835 * undefined if the function has no script
837 FunctionMirror.prototype.script = function() {
838 // Return script if function is resolved. Otherwise just fall through
841 var script = %FunctionGetScript(this.value_);
842 if (script) {
    [all...]
isolate.cc 573 Handle<Script> script(Script::cast(fun->shared()->script()));
576 int script_line_offset = script->line_offset()->value();
578 int line_number = GetScriptLineNumber(script, position);
582 Handle<FixedArray> line_ends(FixedArray::cast(script->line_ends()));
587 // For the case where the code is on the same line as the script
589 column_offset += script->column_offset()->value();
605 Handle<Object> script_name(script->name(), this)
996 Object* script = fun->shared()->script(); local
    [all...]
frames.cc 234 Object* script = JSFunction::cast(frame()->function())->shared()->script();
236 return (script->IsScript() &&
237 Script::TYPE_NATIVE != Script::cast(script)->type()->value());
766 Object* maybe_script = shared->script();
768 Handle<Script> script(Script::cast(maybe_script))
    [all...]
factory.cc 356 Handle<Script> Factory::NewScript(Handle<String> source) {
357 // Generate id for this script.
361 // Script ids start from one.
373 // Create and initialize script object.
375 Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE)); local
376 script->set_source(*source);
377 script->set_name(heap->undefined_value());
378 script->set_id(heap->last_script_id())
    [all...]
  /external/icu4c/tools/dumpce/
dumpce.cpp 750 // compare the 2 script element sort key
783 * Output serialized script elements
900 * @param script list
905 UBool checkInScripts(UScriptCode script[], int scriptcount,
910 if (script[i] == USCRIPT_HAN && options[10].doesOccur) {
917 else if (uscript_getScript(codepoint, &error) == script[i]) {
929 * Checks if the set of codepoints belongs to the script
930 * @param script list
933 * @return TRUE if all codepoints belongs to the script
935 inline UBool checkInScripts(UScriptCode script[], int scriptcount
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/
antlr3.rb 40 each contained within a separate script.
75 contains everything pertaining to Abstract Syntax Trees (ASTs). This script is
77 when any constant defined in the script is referenced. contents are autoloaded
86 as a script (not loaded as a module), the code will behave as a full
87 command-line script by using functionality implemented in the Main module. the
  /external/v8/test/cctest/
test-compiler.cc 317 // Regression 236. Calling InitLineEnds on a Script with undefined
323 Handle<Script> script = FACTORY->NewScript(FACTORY->empty_string()); local
324 script->set_source(HEAP->undefined_value());
325 CHECK_EQ(-1, GetScriptLineNumber(script, 0));
326 CHECK_EQ(-1, GetScriptLineNumber(script, 100));
327 CHECK_EQ(-1, GetScriptLineNumber(script, -1));
347 v8::Script::Compile(script_body, &origin)->Run();
test-api.cc 67 using ::v8::Script;
158 Local<Script> script = Script::Compile(source); local
159 CHECK_EQ(6, script->Run()->Int32Value());
317 THREADED_TEST(Script) {
322 Local<Script> script = Script::Compile(source); local
323 CHECK_EQ(6, script->Run()->Int32Value())
394 Local<Script> script = Script::Compile(source); local
419 Local<Script> script = Script::Compile(source); local
445 Local<Script> script = Script::Compile(source); local
471 Local<Script> script = Script::Compile(source); local
676 Local<Script> script = Script::Compile(source); local
697 Local<Script> script = Script::Compile(source); local
746 Local<Script> script = Script::Compile(source); local
794 Local<Script> script = v8_compile("obj()"); local
804 Local<Script> script = v8_compile("obj()"); local
815 Local<Script> script = v8_compile("var s = new obj(); s.x"); local
1620 Local<Script> script = v8_compile("obj[900]"); local
1892 Local<Script> script = Script::Compile(v8_str("Foo.prototype.plak")); local
2378 Local<Script> script = Script::Compile(v8_str("throw 'panama!';")); local
2408 v8::Handle<v8::Script> script = Script::Compile(v8_str("throw 'error'"), local
2637 Local<Script> script = local
2652 Local<Script> script = local
3121 Local<Script> script local
3401 Local<Script> script = Script::Compile(v8_str("x")); local
3422 Local<Script> script = Script::Compile(v8_str("obj.x")); local
3702 Local<Script> script = Script::Compile(v8_str("obj.x = 4")); local
3727 Local<Script> script = Script::Compile(v8_str("obj.x")); local
3742 Local<Script> script = Script::Compile(v8_str("interceptor_obj.x")); local
4462 Local<Script> script = Script::Compile(source); local
5006 Local<Script> script = local
7510 const char* script = local
7565 const char* script = local
8141 Local<Script> script = local
8185 Local<Script> script = local
8303 Local<Script> script = local
10601 Local<Script> script = v8_compile("(function () {" local
10623 Local<Script> script = v8_compile("(function () {" local
10660 Local<Script> script = v8_compile("(function () {" local
10674 Local<Script> script = v8_compile("(function () {" local
10914 v8::Handle<v8::Script> script = v8::Script::Compile(v8::String::New( local
10966 v8::Handle<v8::Script> script; local
11388 const char* script = "function foo(a) { return a+1; }"; local
11400 const char* script = "function foo(a) { return 1 * * 2; }"; local
11410 const char* script = " The Definintive Guide"; local
11421 const char* script = "function foo(a) { return a+1; }"; local
11463 const char* script = "function foo(){ return 5;}\\n" local
11659 Local<Script> script = Script::Compile(source); local
11672 Local<Script> script = Script::Compile(source); local
11784 Local<Script> script = Script::Compile(source); local
12095 Local<Script> script = Script::Compile(source); local
14408 v8::Handle<v8::String> script = v8::String::New( local
14429 v8::Handle<v8::String> script = v8::String::New( local
14441 v8::Handle<v8::String> script = v8::String::New( local
14458 v8::Handle<v8::String> script = v8::String::New( local
14519 v8::Local<v8::Script> script; local
14568 v8::Local<v8::Script> script; local
14593 v8::Local<v8::Script> script; local
16286 char script[64]; local
16312 Local<Script> script = local
    [all...]
  /external/webkit/Source/WebCore/page/
Frame.cpp 234 script()->clearWindowShell();
554 UserScript* script = userScripts[i].get(); local
555 if (script->injectedFrames() == InjectInTopFrameOnly && ownerElement())
558 if (script->injectionTime() == injectionTime && UserContentURLPattern::matchesPatterns(doc->url(), script->whitelist(), script->blacklist()))
559 m_script.evaluateInWorld(ScriptSourceCode(script->source(), script->url()), world);
708 script()->clearWindowShell();
709 script()->clearScriptObjects()
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginView.cpp 738 bool oldAllowPopups = frame->script()->allowPopupsFromPlugin();
739 frame->script()->setAllowPopupsFromPlugin(request->allowPopups());
741 ScriptValue result = frame->script()->executeScript(jsString);
743 frame->script()->setAllowPopupsFromPlugin(oldAllowPopups);
749 ScriptState* scriptState = frame->script()->globalObject(pluginWorld())->globalExec();
915 ASSERT(frame()->script()->canExecuteScripts(NotAboutToExecuteScript));
917 return m_npRuntimeObjectMap.getOrCreateNPObject(*pluginWorld()->globalData(), frame()->script()->windowShell(pluginWorld())->window());
926 JSObject* object = frame()->script()->jsObjectForPluginElement(m_pluginElement.get());
938 bool oldAllowPopups = frame->script()->allowPopupsFromPlugin();
939 frame->script()->setAllowPopupsFromPlugin(allowPopups)
    [all...]
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
main.cpp 129 static void executeScript(const PluginObject* obj, const char* script);
253 char* script = argv[i]; local
254 if (script == strstr(script, "mouse::")) {
256 obj->evaluateScriptOnMouseDownOrKeyDown = strdup(script + sizeof("mouse::") - 1);
257 } else if (script == strstr(script, "key::")) {
258 obj->evaluateScriptOnMouseDownOrKeyDown = strdup(script + sizeof("key::") - 1);
260 // When testing evaluate script on mouse-down or key-down, allow event logging to handle events.
374 static void executeScript(const PluginObject* obj, const char* script)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 102 // List of the supported languages and their associated script. We won't check
103 // words written in another script than the selected script, because we know we
106 // is done in {@link #shouldFilterOut}. Also, the script is used to choose which
137 final Integer script = mLanguageToScript.get(locale.getLanguage()); local
138 if (null == script) {
142 return script;
417 final int script = getScriptFromLocale(locale); local
419 SpellCheckerProximityInfo.getProximityForScript(script),
565 final int script) {
    [all...]
  /external/linux-tools-perf/util/scripting-engines/
trace-event-python.c 361 * Start trace script
363 static int python_start_script(const char *script, int argc, const char **argv)
371 command_line[0] = script;
381 fp = fopen(script, "r");
383 sprintf(buf, "Can't open python script \"%s\"", script);
389 err = PyRun_SimpleFile(fp, script);
391 fprintf(stderr, "Error running python script %s\n", script);
397 fprintf(stderr, "Error starting python script %s\n", script)
    [all...]
  /external/webkit/Source/WebKit/win/
DOMCoreClasses.h 59 /* [in] */ BSTR script,
60 /* [retval][out] */ VARIANT* result) { return WebScriptObject::evaluateWebScript(script, result); }
106 /* [in] */ BSTR script,
107 /* [retval][out] */ VARIANT* result) { return DOMObject::evaluateWebScript(script, result); }
272 /* [in] */ BSTR script,
273 /* [retval][out] */ VARIANT* result) { return DOMObject::evaluateWebScript(script, result); }
330 /* [in] */ BSTR script,
331 /* [retval][out] */ VARIANT* result) { return DOMNode::evaluateWebScript(script, result); }
561 /* [in] */ BSTR script,
562 /* [retval][out] */ VARIANT* result) { return DOMNode::evaluateWebScript(script, result);
    [all...]
  /external/ipsec-tools/
setup.c 385 remoteconf->script[SCRIPT_PHASE1_UP] = strtovchar(phase1_up);
437 remoteconf->script[SCRIPT_PHASE1_UP] = strtovchar("");
438 remoteconf->script[SCRIPT_PHASE1_DOWN] = strtovchar("");
477 " <username> <password> <phase1-up> <script-arg>;\n"
480 " <username> <password> <phase1-up> <script-arg>;\n"
482 " <username> <password> <phase1-up> <script-arg>;\n"
588 int privsep_script_exec(char *script, int name, char * const *envp)
610 script = (char *)android_hook((char **)envp);
622 return script_exec(script, name, envp);
  /external/openssh/contrib/redhat/
openssh.spec 482 3.0p1 spec file and init script
558 - finish marking strings in the init script for translation
559 - modify init script to source /etc/sysconfig/sshd and pass $OPTIONS to sshd
560 at startup (change merged from openssh.com init script, originally by
580 - bypass the daemon() function in the init script and call initlog directly,
610 - Init script and spec file changes from Pekka Savola. (#28750)
625 - Add init script mods from Pekka Savola.
626 - Tweak the init script to match the CVS contrib script more closely.
636 script now
    [all...]
  /external/srec/srec/Semproc/src/
SemanticGraphImpl.c 192 PLogMessage("can't read %d word script assocs\n", num_words);
300 /* try to open the .script file */
302 LSTRCAT(filename, ".script");
317 <integer><space><script>
319 - the integer MUST become the index of the script in the wordmap
338 /* figure that each script for dynamically added words will be a simple assignment
370 PLogError(L("ESR_READ_ERROR: internal error adding script (%d)"), num_words_to_add);
435 if (IS_SCRIPT_MARKER(oword)) /* olabel type: script */
722 /* write num_words size array of short script ids
724 are synonyms, eg. NEW_YORK NEW_YORK_CITY -> same script
    [all...]
  /external/v8/test/mjsunit/
debug-clearbreakpointgroup.js 71 scriptId = event_data.script().id();
72 assertEquals(source, event_data.script().source());
100 // Call function 'g' from the compiled script to trigger breakpoint.
debug-liveedit-patch-positions-replace.js 51 var script = Debug.findScript(BeingReplaced); variable
54 var patch_pos = script.source.indexOf(orig_body);
62 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos, orig_body.length, new_body_patch, change_log);
debug-liveedit-patch-positions.js 84 var script = Debug.findScript(ChooseAnimal);
88 var patch_pos = script.source.indexOf(orig_string);
92 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script,
debug-scripts-request.js 83 var script = response.body[0];
85 script.id + ']}}';
89 assertEquals(script.id, response.body[0].id);
  /external/chromium/build/
install-chroot.sh 7 # This script installs Debian-derived distributions in a chroot environment.
10 # N. B. it is unlikely that this script will ever work on anything other than a
72 echo "Run this script as a regular user and provide your \"sudo\"" \
84 # Install any missing applications that this script relies on. If these packages
87 # And as this script only needs the packages once, there is no good reason to
197 script-config=script-${target}
204 /etc/schroot/script-defaults |
205 sudo sh -c 'cat >/etc/schroot/script-'"${target}"
211 # Install a helper script to launch commands in the chroo
    [all...]
  /external/icu4c/i18n/
alphaindex.cpp 681 UnicodeString EthiopicStr = UNICODE_STRING_SIMPLE("[[:Block=Ethiopic:]&[:Script=Ethiopic:]]");
693 "[[:sc=Common:][:sc=inherited:][:script=Unknown:][:script=braille:]]");
706 UnicodeString unihanStr = UNICODE_STRING_SIMPLE("[:script=Hani:]");
785 // Create a UVector whose contents are pointers to UnicodeStrings for the First Characters in each script.
804 if (r < 0) { // TODO fix; we only want "real" script characters, not
809 int script = uscript_getScript(current.char32At(0), &status);
810 if (results[script].length() == 0) {
811 results[script] = current;
813 else if (ruleBasedCollator->compare(current, results[script]) < 0)
910 const char *script = loc.getScript(); local
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebinspector.cpp 575 void webkit_web_inspector_execute_script(WebKitWebInspector* webInspector, long callId, const gchar* script)
578 g_return_if_fail(script);
581 priv->page->inspectorController()->evaluateForTestInFrontend(callId, script);
  /bootable/recovery/edify/
expr.h 37 // The source of the original script. Must be NULL-terminated,
40 char* script; member in struct:__anon713

Completed in 1353 milliseconds

<<21222324252627282930>>