HomeSort by relevance Sort by last modified time
    Searched defs:script (Results 1 - 25 of 471) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/vim/
clang-format.vim 10 let s:script = expand('<sfile>:p:h') .
11 \'/../../third_party/clang_format/script/clang-format.py'
12 echo s:script
15 execute "map <D-I> :pyf " . s:script . "<CR>"
16 execute "imap <D-I> <ESC>:pyf " . s:script . "<CR>i"
18 execute "map <C-I> :pyf " . s:script . "<CR>"
19 execute "imap <C-I> <ESC>:pyf " . s:script . "<CR>i"
  /external/chromium_org/v8/test/mjsunit/
debug-liveedit-1.js 39 var script = Debug.findScript(ChooseAnimal); variable
42 var patch_pos = script.source.indexOf(orig_animal);
46 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos, orig_animal.length, new_animal_patch, change_log);
debug-liveedit-4.js 31 // In this test case we edit a script so that techincally function text
57 var script = Debug.findScript(TestFunction); variable
58 var new_source = script.source.replace("2013", "b");
61 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log);
debug-liveedit-newsource.js 52 var script = Debug.findScript(ChooseAnimal); variable
54 var new_source = script.source.replace("Cat", "Cap' + 'yb' + 'ara");
59 // the script.
62 // of the script causes us to visit a corner case, but I'd like to validate
68 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log);
73 // Global variable do not get changed (without restarting script).
debug-script-breakpoints-nested.js 64 var script = Debug.findScript(outer); variable
68 var sbp = Debug.setScriptBreakPointById(script.id, 8);
79 // Remove script break point.
debug-liveedit-3.js 31 // In this test case we edit a script so that techincally function text
54 var script = Debug.findScript(Factory); variable
56 var new_source = script.source.replace(function_z_text, "function Intermediate() {\nreturn (\n" + function_z_text + ")\n;\n}\n");
60 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log);
debug-liveedit-compile-error.js 39 var script = Debug.findScript(ChooseAnimal); variable
42 var patch_pos = script.source.indexOf(orig_animal);
48 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos,
debug-liveedit-2.js 47 var script = Debug.findScript(ChooseAnimal); variable
50 var patch_pos = script.source.indexOf(orig_animal);
58 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos, orig_animal.length, new_animal_patch, change_log);
debug-liveedit-breakpoints.js 63 var script = Debug.findScript(F25); variable
67 Debug.setScriptBreakPoint(Debug.ScriptBreakPointType.ScriptId, script.id, 1, 1, "true || false || false");
68 Debug.setScriptBreakPoint(Debug.ScriptBreakPointType.ScriptId, script.id, 6, 1, "true || false || false");
69 Debug.setScriptBreakPoint(Debug.ScriptBreakPointType.ScriptId, script.id, 14, 1, "true || false || false");
73 var new_source = script.source.replace(function_z_text, "");
77 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log);
83 // One breakpoint gets duplicated in a old version of script.
89 if (breaks[i].script_id() == script.id) {
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-stack-padding.js 39 var script = Debug.findScript(SlimFunction); variable
41 Debug.setScriptBreakPointById(script.id, 1, 0);
44 var patch_pos = script.source.indexOf(orig_animal);
57 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos,
  /external/chromium_org/chrome/common/
pref_names_util_unittest.cc 20 std::string script; local
23 &script));
25 EXPECT_EQ(expected_script, script);
43 // We don't particularly care about the parsed family and script for these
  /external/chromium_org/content/shell/tools/plugin/Tests/
LogNPPSetWindow.cpp 57 char script[1536]; local
58 snprintf(script, 1536, "window.setTimeout('windowWasSet(\"%s\");', 0);", message);
60 executeScript(script);
  /external/srec/srec/Semproc/include/
SR_LexicalAnalyzer.h 39 * Pointer to the script to analyze .
41 LCHAR* script; member in struct:LexicalAnalyzer_t
44 * Pointer to the next token in the script.
60 * @param script pointer to the script to analyze
62 SREC_SEMPROC_API ESR_ReturnCode LA_Analyze(LexicalAnalyzer *self, LCHAR *script);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestMax.java 27 private ScriptC_TestMax script; field in class:TestMax
33 script = new ScriptC_TestMax(mRS);
48 script.set_gAllocIn1(in1);
49 script.forEach_testMaxFloatFloatFloat(in, out);
117 script.set_gAllocIn1(in1);
118 script.forEach_testMaxFloat2Float2Float2(in, out);
186 script.set_gAllocIn1(in1);
187 script.forEach_testMaxFloat3Float3Float3(in, out);
255 script.set_gAllocIn1(in1);
256 script.forEach_testMaxFloat4Float4Float4(in, out)
    [all...]
TestMin.java 27 private ScriptC_TestMin script; field in class:TestMin
33 script = new ScriptC_TestMin(mRS);
48 script.set_gAllocIn1(in1);
49 script.forEach_testMinFloatFloatFloat(in, out);
117 script.set_gAllocIn1(in1);
118 script.forEach_testMinFloat2Float2Float2(in, out);
186 script.set_gAllocIn1(in1);
187 script.forEach_testMinFloat3Float3Float3(in, out);
255 script.set_gAllocIn1(in1);
256 script.forEach_testMinFloat4Float4Float4(in, out)
    [all...]
TestClamp.java 27 private ScriptC_TestClamp script; field in class:TestClamp
33 script = new ScriptC_TestClamp(mRS);
51 script.set_gAllocInMinValue(inMinValue);
52 script.set_gAllocInMaxValue(inMaxValue);
53 script.forEach_testClampFloatFloatFloatFloat(inValue, out);
131 script.set_gAllocInMinValue(inMinValue);
132 script.set_gAllocInMaxValue(inMaxValue);
133 script.forEach_testClampFloat2Float2Float2Float2(inValue, out);
211 script.set_gAllocInMinValue(inMinValue);
212 script.set_gAllocInMaxValue(inMaxValue)
    [all...]
InitTest.java 26 private ScriptC_init_test script; field in class:InitTest
30 script.forEach_root(mIn, mOut);
34 script = new ScriptC_init_test(mRS);
TestConvert.java 27 private ScriptC_TestConvert script; field in class:TestConvert
33 script = new ScriptC_TestConvert(mRS);
46 script.forEach_testConvertFloat2Float2Float2(inV, out);
105 script.forEach_testConvertFloat3Float3Float3(inV, out);
164 script.forEach_testConvertFloat4Float4Float4(inV, out);
228 script.forEach_testConvertFloat2Char2Float2(inV, out);
286 script.forEach_testConvertFloat3Char3Float3(inV, out);
344 script.forEach_testConvertFloat4Char4Float4(inV, out);
407 script.forEach_testConvertFloat2Uchar2Float2(inV, out);
465 script.forEach_testConvertFloat3Uchar3Float3(inV, out)
    [all...]
TestAbs.java 27 private ScriptC_TestAbs script; field in class:TestAbs
33 script = new ScriptC_TestAbs(mRS);
46 script.forEach_testAbsCharUchar(inValue, out);
102 script.forEach_testAbsChar2Uchar2(inValue, out);
158 script.forEach_testAbsChar3Uchar3(inValue, out);
214 script.forEach_testAbsChar4Uchar4(inValue, out);
275 script.forEach_testAbsShortUshort(inValue, out);
331 script.forEach_testAbsShort2Ushort2(inValue, out);
387 script.forEach_testAbsShort3Ushort3(inValue, out);
443 script.forEach_testAbsShort4Ushort4(inValue, out)
    [all...]
TestFract.java 27 private ScriptC_TestFract script; field in class:TestFract
33 script = new ScriptC_TestFract(mRS);
48 script.set_gAllocOutFloor(outFloor);
49 script.forEach_testFractFloatFloatFloat(inV, out);
126 script.set_gAllocOutFloor(outFloor);
127 script.forEach_testFractFloat2Float2Float2(inV, out);
204 script.set_gAllocOutFloor(outFloor);
205 script.forEach_testFractFloat3Float3Float3(inV, out);
282 script.set_gAllocOutFloor(outFloor);
283 script.forEach_testFractFloat4Float4Float4(inV, out)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ScriptResource.cpp 37 : TextResource(resourceRequest, Script, "application/javascript", charset)
56 const String& ScriptResource::script() function in class:WebCore::ScriptResource
62 String script = decodedText(); local
64 // We lie a it here and claim that script counts as encoded data (even though it's really decoded data).
66 // but we can't destroy script in destroyDecodedData because that's our only copy of the data!
67 setEncodedSize(script.sizeInBytes());
68 m_script = AtomicString(script);
  /external/chromium_org/third_party/skia/third_party/harfbuzz/contrib/tables/
script-properties.h 1 // Generated from Unicode script tables
12 HB_Script script; member in struct:script_property
  /external/chromium_org/v8/test/cctest/
test-global-object.cc 41 v8::Local<v8::Script> script = v8_compile("\"use strict\"; x = 42;"); local
47 script->Run();
  /frameworks/compile/mclinker/lib/Script/
EntryCmd.cpp 9 #include <mcld/Script/EntryCmd.h>
36 LinkerScript& script = pModule.getScript(); local
37 if (!script.hasEntry())
38 script.setEntry(m_Entry);

Completed in 883 milliseconds

1 2 3 4 5 6 7 8 91011>>