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

<<21222324252627282930>>

  /external/icu4c/layoutex/
ParagraphLayout.cpp 355 // now intersect the font, direction and script runs...
387 fStyleRunInfo[run].script = (UScriptCode)0;
403 fStyleRunInfo[run].script = (UScriptCode) fScriptRuns->getValue(styleIndices[2]);
409 fStyleRunInfo[run].script, getLanguageCode(fStyleRunInfo[run].locale), layoutStatus);
753 UScriptCode script; local
755 while (uscript_nextRun(sr, NULL, &limit, &script)) {
756 scriptRuns->add(script, limit);
798 le_int32 script = fScriptRuns->getValue(si[1]); local
801 const LEFontInstance *subFont = runFont->getSubFont(fChars, &offset, styleRunLimits[run], script, status);
970 le_bool ParagraphLayout::isComplex(UScriptCode script)
    [all...]
  /external/skia/src/animator/
SkScript.h 77 bool evaluateScript(const char** script, SkScriptValue* value);
201 bool evaluateDot(const char*& script, bool suppressed);
202 bool evaluateDotParam(const char*& script, bool suppressed, const char* field, size_t fieldLength);
SkScript2.h 42 bool evaluateScript(const char** script, SkScriptValue2* value);
233 bool evaluateDot(const char*& script);
234 bool evaluateDotParam(const char*& script, const char* field, size_t fieldLength);
  /frameworks/base/core/jni/android/graphics/
TextLayoutCache.h 194 * Skia default typeface to be returned if we cannot resolve script
222 HB_Script script);
236 SkTypeface* getCachedTypeface(SkTypeface** typeface, HB_Script script, SkTypeface::Style style);
242 bool isComplexScript(HB_Script script);
  /frameworks/rs/driver/
rsdIntrinsicColorMatrix.cpp 34 static void ColorMatrix_SetVar(const Context *dc, const Script *script, void * intrinsicData,
130 android::renderscript::Script *script,
133 script->mHal.info.exportedVariableCount = 1;
  /frameworks/support/renderscript/v8/rs_support/driver/
rsdIntrinsicColorMatrix.cpp 34 static void ColorMatrix_SetVar(const Context *dc, const Script *script, void * intrinsicData,
130 android::renderscript::Script *script,
133 script->mHal.info.exportedVariableCount = 1;
  /ndk/tests/standalone/
run.sh 17 # This script is used to run a series of tests on a given standalone
22 # This script will use ${PREFIX}gcc to invoke the compiler,
101 echo "option, or by defining PREFIX in your environment before calling this script."
108 echo "The script will automatically use an NDK-provided sysroot, but you can specify an"
120 echo "When called without any arguments, the script will run all known toolchain tests."
193 # SCRIPT
201 SCRIPT=
205 TEST_TYPE=script
206 SCRIPT=run.sh
209 TEST_TYPE=script
    [all...]
  /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();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 88 // List of the supported languages and their associated script. We won't check
89 // words written in another script than the selected script, because we know we
92 // is done in {@link #shouldFilterOut}. Also, the script is used to choose which
123 final Integer script = mLanguageToScript.get(locale.getLanguage()); local
124 if (null == script) {
128 return script;
401 final int script = getScriptFromLocale(locale); local
403 SpellCheckerProximityInfo.getProximityForScript(script),
  /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...]
  /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);

Completed in 582 milliseconds

<<21222324252627282930>>