HomeSort by relevance Sort by last modified time
    Searched refs:Script (Results 176 - 200 of 378) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/v8/test/cctest/
test-compiler.cc 246 // Regression 236. Calling InitLineEnds on a Script with undefined
254 Handle<Script> script = factory->NewScript(factory->empty_string()); local
255 script->set_source(CcTest::heap()->undefined_value());
256 CHECK_EQ(-1, Script::GetLineNumber(script, 0));
257 CHECK_EQ(-1, Script::GetLineNumber(script, 100));
258 CHECK_EQ(-1, Script::GetLineNumber(script, -1))
415 v8::Local<v8::Script> script = v8_compile( local
487 v8::Local<v8::Script> script = v8_compile( local
    [all...]
log-eq-of-logging-and-traversal.js 59 if (type != "LazyCompile" && type != "Script" && type != "Function") return;
63 if (type == "Script") name = " :1:1";
131 "Script", "String", "RegExp", "Date", "Error"];
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tokenization/
tokenizer.js 633 //12.2.4.6 Script data state
908 //12.2.4.17 Script data less-than sign state
929 //12.2.4.18 Script data end tag open state
952 //12.2.4.19 Script data end tag name state
992 //12.2.4.20 Script data escape start state
1005 //12.2.4.21 Script data escape start dash state
1018 //12.2.4.22 Script data escaped state
    [all...]
  /external/skia/src/sfnt/
SkPanose.h 23 ((Script, 3))
217 struct Script {
360 } script; member in union:SkPanose::Data
454 ((Script, 16))
  /external/v8/src/
compilation-cache.cc 96 // Probe the script generation tables. Make sure not to leak handles
112 // We only re-use a cached function for some script source code if the
113 // script originates from the same place. This is to avoid issues
119 Handle<Script> script = local
120 Handle<Script>(Script::cast(function_info->script()), isolate());
121 // If the script name isn't set, the boilerplate script should hav
    [all...]
messages.h 27 MessageLocation(Handle<Script> script, int start_pos, int end_pos,
29 : script_(script),
35 Handle<Script> script() const { return script_; } function in class:v8::internal::MessageLocation
41 Handle<Script> script_;
    [all...]
isolate.cc 514 Handle<Script> script(Script::cast(fun->shared()->script()));
517 int script_line_offset = script->line_offset();
518 int line_number = Script::GetLineNumber(script, position);
522 Handle<FixedArray> line_ends(FixedArray::cast(script->line_ends()));
527 // For the case where the code is on the same line as the script
529 column_offset += script->column_offset()
1291 Object* script = fun->shared()->script(); local
1327 Handle<Object> script = JSReceiver::GetDataProperty( local
1354 Object* script = fun->shared()->script(); local
    [all...]
compiler.h 31 // script start.
78 // Otherwise contains absolute offset from the script start.
140 Handle<Script> script() const;
652 static void CompileForLiveEdit(Handle<Script> script);
678 static Handle<SharedFunctionInfo> CompileStreamedScript(Handle<Script> script,
684 FunctionLiteral* node, Handle<Script> script, CompilationInfo* outer)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
IsObjectTest.java 36 Script script; field in class:IsObjectTest
49 script = new ScriptC_is_object(mRS);
150 mItem.script = script;
164 Assert.assertTrue("rsIsObject script test fail: " + "Expect 1;value "
SetObjectTest.java 35 Script script; field in class:SetObjectTest
48 script = new ScriptC_set_object(mRS);
147 mItem.script = script;
161 Assert.assertTrue("rsSetObject script test fail: " + "Expect 1;value "
  /external/harfbuzz_ng/src/
main.cc 115 printf (" %d script(s) found in table\n", num_scripts);
117 const Script &script = g.get_script (n_script); local
118 printf (" Script %2d of %2d: %.4s\n", n_script, num_scripts,
121 if (!script.has_default_lang_sys())
123 int num_langsys = script.get_lang_sys_count ();
124 printf (" %d language system(s) found in script\n", num_langsys);
125 for (int n_langsys = script.has_default_lang_sys() ? -1 : 0; n_langsys < num_langsys; n_langsys++) {
127 ? script.get_default_lang_sys ()
128 : script.get_lang_sys (n_langsys)
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_font/
ttgsubtable.cpp 79 for (int j = 0; j < (ScriptList.ScriptRecord + i)->Script.LangSysCount;
82 k < ((ScriptList.ScriptRecord + i)->Script.LangSysRecord + j)
86 *(((ScriptList.ScriptRecord + i)->Script.LangSysRecord + j)
210 ParseScript(&raw[offset], &rec->ScriptRecord[i].Script);
  /frameworks/base/rs/java/android/renderscript/
RenderScriptGL.java 28 * root script which is the display window for graphical output. When the
29 * system needs to update the display the currently bound root script will be
30 * called. This script is expected to issue the rendering commands to repaint
259 * Temporarly halt calls to the root rendering script.
269 * Resume calls to the root rendering script.
280 * Set the script to handle calls to render the primary surface.
282 * @param s Graphics script to process rendering requests.
284 public void bindRootScript(Script s) {
292 * rendering script.
304 * root rendering script
    [all...]
  /frameworks/compile/mclinker/lib/LD/
GroupReader.cpp 56 if ((*input)->type() == Input::Script ||
  /frameworks/compile/mclinker/lib/Script/
GroupCmd.cpp 9 #include "mcld/Script/GroupCmd.h"
14 #include "mcld/Script/InputToken.h"
15 #include "mcld/Script/StringList.h"
75 LinkerScript& script = pModule.getScript(); local
99 if (script.hasSysroot() &&
101 path = script.sysroot();
109 script.directories().find(token->name(), Input::Script);
130 path = script.directories().find(token->name(), Input::Archive);
134 path = script.directories().find(token->name(), Input::DynObj)
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuScriptGroup2.cpp 315 const Script* script = funcID->mScript; local
317 rsAssert (!script->isIntrinsic());
320 (const RsdCpuScriptImpl *)ctxt->lookupScript(script);
345 const Script* script = closure->mFunctionID.get()->mScript; local
347 // If any script is an intrinsic, give up trying fusing the kernels.
348 if (script->isIntrinsic()) {
353 (const RsdCpuScriptImpl *)mCpuRefImpl->lookupScript(script);
524 Script* s = funcID->mScript;
536 Script* script = p.first->mScript; local
    [all...]
rsCpuIntrinsicColorMatrix.cpp 163 void populateScript(Script *) override;
168 RsdCpuScriptIntrinsicColorMatrix(RsdCpuReferenceImpl *ctx, const Script *s, const Element *e);
1009 RsdCpuReferenceImpl *ctx, const Script *s, const Element *e)
1033 void RsdCpuScriptIntrinsicColorMatrix::populateScript(Script *s) {
1038 const Script *s, const Element *e) {
rsCpuIntrinsicConvolve3x3.cpp 30 void populateScript(Script *) override;
37 RsdCpuScriptIntrinsicConvolve3x3(RsdCpuReferenceImpl *ctx, const Script *s, const Element *);
458 RsdCpuReferenceImpl *ctx, const Script *s, const Element *e)
497 void RsdCpuScriptIntrinsicConvolve3x3::populateScript(Script *s) {
506 RsdCpuScriptImpl * rsdIntrinsic_Convolve3x3(RsdCpuReferenceImpl *ctx, const Script *s, const Element *e) {
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Blend.java 26 import android.renderscript.Script;
LevelsV4.java 25 import android.renderscript.Script;
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Blend.java 26 import android.renderscript.Script;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterChanSat.java 24 import android.renderscript.Script.LaunchOptions;
  /frameworks/rs/
rsScriptC_Lib.cpp 118 float rsrGetDt(Context *rsc, const Script *sc) {
243 Script *target,
  /external/v8/src/debug/
debug.cc 54 // Isolate::context() may have been NULL when "script collected" event
609 bool Debug::SetBreakPointForScript(Handle<Script> script,
617 FindSharedFunctionInfoInScript(script, *source_position);
627 // Find position within function. The script position might be before the
1448 Script* script; local
    [all...]
  /external/fonttools/Lib/fontTools/
merge.py 457 for script in table.table.ScriptList.ScriptRecord:
458 if script.ScriptTag == 'DFLT': continue # XXX
459 for langsys in [script.Script.DefaultLangSys] + [l.LangSys for l in script.Script.LangSysRecord]:
609 @_add_method(otTables.Script)
620 if not s or not s.Script: continue
621 s.Script.mapFeatures(featureMap)

Completed in 890 milliseconds

1 2 3 4 5 6 78 91011>>