HomeSort by relevance Sort by last modified time
    Searched refs:Script (Results 1 - 25 of 238) sorted by null

1 2 3 4 5 6 7 8 910

  /external/v8/src/objects/
script-inl.h 8 #include "src/objects/script.h"
19 CAST_ACCESSOR(Script)
21 ACCESSORS(Script, source, Object, kSourceOffset)
22 ACCESSORS(Script, name, Object, kNameOffset)
23 SMI_ACCESSORS(Script, id, kIdOffset)
24 SMI_ACCESSORS(Script, line_offset, kLineOffsetOffset)
25 SMI_ACCESSORS(Script, column_offset, kColumnOffsetOffset)
26 ACCESSORS(Script, context_data, Object, kContextOffset)
27 SMI_ACCESSORS(Script, type, kTypeOffset)
28 ACCESSORS(Script, line_ends, Object, kLineEndsOffset
    [all...]
script.h 17 // Script describes a script which has been added to the VM.
18 class Script : public Struct, public NeverReadOnlySpaceObject {
23 // Script types.
32 // Script compilation types.
35 // Script compilation state.
41 // [source]: the script source.
44 // [name]: the script name.
47 // [id]: the script id.
50 // [line_offset]: script line offset in resource from where it was extracted
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PiDxeS3BootScriptLib/
BootScriptSave.c 2 Save the S3 data to S3 boot script.
46 to handle potential INSERT boot script | |
49 | Boot Time Boot Script | | |
54 | Boot Time Boot Script | | |
63 | Boot Time Boot Script | | |
68 | Boot Time Boot Script | | |
72 | Runtime Boot Script | |
139 @return the base address of the boot script table.
181 This function save boot script data to LockBox.
258 // node on every add to boot script table.
    [all...]
BootScriptExecute.c 2 Interpret and execute the S3 data in S3 boot script.
127 Translates boot script width and address stride to MDE library interface.
379 Interprete the boot script node with EFI_BOOT_SCRIPT_IO_WRITE OP code.
381 @param Script Pointer to the node which is to be interpreted.
392 IN UINT8 *Script
401 CopyMem ((VOID*)&IoWrite, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_IO_WRITE));
405 Buffer = Script + sizeof (EFI_BOOT_SCRIPT_IO_WRITE);
608 Interprete the boot script node with EFI_BOOT_SCRIPT_MEM_WRITE OP code.
610 @param[in] Script Pointer to the node which is to be interpreted.
622 IN UINT8 *Script
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformSmm/
SmmScriptSave.c 79 // Build script according to opcode
110 BOOT_SCRIPT_POINTERS Script;
122 Script.Raw = Buffer;
123 Script.TableInfo->OpCode = EFI_BOOT_SCRIPT_TABLE_OPCODE;
124 Script.TableInfo->Length = sizeof(EFI_BOOT_SCRIPT_TABLE_HEADER);
125 Script.TableInfo->TableLength = sizeof(EFI_BOOT_SCRIPT_TABLE_HEADER);
142 BOOT_SCRIPT_POINTERS Script;
145 // Add final "termination" node to script table
147 Script.Raw = (UINT8*) ((UINTN)ScriptTablePtr);
148 Script.Terminate->OpCode = EFI_BOOT_SCRIPT_TERMINATE_OPCODE;
    [all...]
  /external/v8/src/runtime/
runtime-module.cc 21 Handle<Script> script(Script::cast(function->shared()->script()), isolate);
23 while (script->has_eval_from_shared()) {
24 script =
25 handle(Script::cast(script->eval_from_shared()->script()), isolate);
30 isolate->RunHostImportModuleDynamicallyCallback(script, specifier))
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ScriptAndLanguages 14 Total Script=174
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
ScriptGraph.java 27 import android.hardware.camera2.cts.rs.Script.ParameterMap;
40 * {@link android.renderscript.Script scripts} and managing their {@link Allocation allocations}.
42 * <p>Create a new script graph by using {@link #create}, configure the input with
47 * <p>Once a script graph has been built, all underlying scripts and allocations are instantiated.
48 * Each script may be executed with {@link #execute}. Scripts are executed in the order that they
49 * were configured, with each previous script's output used as the input for the next script.
72 private final List<Script<?>> mScripts;
166 * Execute each script in the graph, with each next script's input using th
496 Script<?> script = instantiateScript(scriptClass, inputInfo, parameters); local
532 Script<?> script = mScripts.get(i); local
    [all...]
Script.java 29 * Base class for all renderscript script abstractions.
31 * <p>Each script has exactly one input and one output allocation, and is able to execute
32 * one {@link android.renderscript.Script} script file.</p>
34 * <p>Each script owns it's input allocation, but not the output allocation.</p>
44 * @param <T> A concrete subclass of {@link android.renderscript.Script}
46 public abstract class Script<T extends android.renderscript.Script> implements UncheckedCloseable {
49 * A type-safe heterogenous parameter map for script parameters.
51 * @param <ScriptT> A concrete subclass of {@link Script}
    [all...]
ScriptYuvCrop.java 33 * <p>Users of this script must configure it with the
37 public class ScriptYuvCrop extends Script<ScriptC_crop_yuvf_420_to_yuvx_444> {
47 public static final Script.ScriptParameter<ScriptYuvCrop, RectF> CROP_WINDOW =
48 new Script.ScriptParameter<ScriptYuvCrop, RectF>(ScriptYuvCrop.class,
59 throw new IllegalArgumentException("Script's CROP_WINDOW was not set");
  /external/cldr/tools/java/org/unicode/cldr/posix/
POSIXLocale.java 80 int Script = UScript.getScript(it.codepoint);
81 if (Script != UScript.COMMON &&
82 Script != UScript.INHERITED &&
83 Script != UScript.INVALID_CODE &&
84 Script != UScript.HAN &&
85 Script != PreviousScript) // Hopefully this speeds up the process...
87 UnicodeSet ThisScript = new UnicodeSet().applyIntPropertyValue(UProperty.SCRIPT, Script);
93 PreviousScript = Script;
119 // Add the tailored characters, and close over script
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
LaunchClip.java 114 private void verifyCell(int x, int y, int z, int[] a, Script.LaunchOptions sc) {
155 void verifyRange(Script.LaunchOptions sc, int[] a) {
196 Script.LaunchOptions sc = new Script.LaunchOptions();
207 Script.LaunchOptions sc = new Script.LaunchOptions();
220 Script.LaunchOptions sc = new Script.LaunchOptions();
232 Script.LaunchOptions sc = new Script.LaunchOptions()
    [all...]
IntrinsicBlur.java 48 private void initTest(int w, int h, Element e, Script.LaunchOptions lo) {
88 private void copyOutput(Script.LaunchOptions lo) {
133 Script.LaunchOptions lo = makeClipper(11, 11, w - 11, h - 11);
148 Script.LaunchOptions lo = makeClipper(11, 11, w - 11, h - 11);
161 Script.KernelID kid = s.getKernelID();
166 Script.FieldID fid = s.getFieldID_Input();
  /external/v8/src/
pending-compilation-error-handler.h 21 class Script;
57 void ReportErrors(Isolate* isolate, Handle<Script> script,
61 void ReportWarnings(Isolate* isolate, Handle<Script> script);
85 MessageLocation GetLocation(Handle<Script> script) const;
96 void ThrowPendingError(Isolate* isolate, Handle<Script> script);
source-position.cc 14 if (!pos.script.is_null() && pos.script->name()->IsString()) {
15 out << String::cast(pos.script->name())->ToCString(DISALLOW_NULLS).get();
80 Script::PositionInfo pos;
82 if (function->script()->IsScript()) {
83 Script* script = Script::cast(function->script()); local
84 source_name = script->name()
    [all...]
log-inl.h 17 CodeEventListener::LogEventsAndTags tag, Script* script) {
18 if (script->type() != Script::TYPE_NATIVE) return tag;
  /external/v8/src/parsing/
parse-info.cc 59 // Do not support re-parsing top-level function of a wrapped script.
61 // wrapped script at all.
62 DCHECK_IMPLIES(is_toplevel(), !Script::cast(shared->script())->is_wrapped());
78 Handle<Script> script(Script::cast(shared->script()), isolate);
79 set_script(script);
92 : script->IsUserJavaScript()))
138 Handle<Script> script; local
    [all...]
  /external/fonttools/Snippets/
fix-dflt-langsys.py 15 if rec.ScriptTag == "DFLT" and rec.Script.LangSysCount != 0:
16 tags = [r.LangSysTag for r in rec.Script.LangSysRecord]
18 rec.Script.LangSysCount, " ".join(tags))
19 rec.Script.LangSysRecord = []
20 rec.Script.LangSysCount = 0
28 tags = set([r.LangSysTag for r in rec.Script.LangSysRecord])
68 description="Fix LangSys records for DFLT script")
layout-features.py 25 for script in table.ScriptList.ScriptRecord:
26 print(" Script:", script.ScriptTag)
27 if not script.Script:
28 print (" Null script.")
30 languages = list(script.Script.LangSysRecord)
31 if script.Script.DefaultLangSys
    [all...]
  /external/v8/src/debug/
debug-type-profile.h 28 explicit TypeProfileScript(Handle<Script> s) : script(s) {}
29 Handle<Script> script; member in struct:v8::internal::TypeProfileScript
liveedit.h 19 class Script;
35 3. create new script for new_source,
46 - move to new script,
69 static void PatchScript(Isolate* isolate, Handle<Script> script,
  /external/v8/src/ic/
ic-stats.h 25 class Script;
61 const char* GetOrCacheScriptName(Script* script);
69 std::unordered_map<Script*, std::unique_ptr<char[]>> script_name_map_;
  /external/libtextclassifier/utils/i18n/
locale_test.cc 33 EXPECT_EQ(locale.Script(), "");
41 EXPECT_EQ(locale.Script(), "");
49 EXPECT_EQ(locale.Script(), "Hant");
57 EXPECT_EQ(locale.Script(), "");
65 EXPECT_EQ(locale.Script(), "Hant");
locale.cc 48 bool CheckScript(StringPiece script) {
49 if (script.size() != 4) {
53 if (!std::isupper(script[0])) {
58 for (int i = 1; i < script.size(); ++i) {
59 if (!std::islower(script[i])) {
93 StringPiece script; local
95 script = *parts_it;
96 if (!CheckScript(script)) {
97 script = "";
115 return Locale(language.ToString(), script.ToString(), region.ToString())
    [all...]
  /external/libtextclassifier/lang_id/script/
tiny-script-detector.h 20 #include "lang_id/script/script-detector.h"
29 enum Script {
30 // Special value to indicate internal errors in the script detection code.
52 // Do not add any script after kNumRelevantScripts. This value indicates the
53 // number of elements in this enum Script (except this value) such that we can
63 // Returns Script for the UTF8 character that starts at address p.
65 inline Script GetScript(const unsigned char *p, int num_bytes) {
150 // Returns Script for the UTF8 character that starts at address p. Similar to
155 inline Script GetScript(const char *p, int num_bytes)
    [all...]

Completed in 1986 milliseconds

1 2 3 4 5 6 7 8 910