HomeSort by relevance Sort by last modified time
    Searched refs:script (Results 326 - 350 of 2082) sorted by null

<<11121314151617181920>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_tools.py 29 script = os.path.join(scriptsdir, 'reindent.py') variable in class:ReindentTests
32 assert_python_ok(self.script)
35 rc, out, err = assert_python_ok(self.script, '-h')
41 script = os.path.join(scriptsdir, 'pindent.py') variable in class:PindentTests
49 (sys.executable, self.script) + args,
63 with open(self.script) as f:
68 rc, out, err = assert_python_ok(self.script, '-d', data_path)
81 rc, out, err = assert_python_ok(self.script, '-c', data_path)
92 rc, out, err = assert_python_ok(self.script, '-r', data_path)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_tools.py 29 script = os.path.join(scriptsdir, 'reindent.py') variable in class:ReindentTests
32 assert_python_ok(self.script)
35 rc, out, err = assert_python_ok(self.script, '-h')
41 script = os.path.join(scriptsdir, 'pindent.py') variable in class:PindentTests
49 (sys.executable, self.script) + args,
63 with open(self.script) as f:
68 rc, out, err = assert_python_ok(self.script, '-d', data_path)
81 rc, out, err = assert_python_ok(self.script, '-c', data_path)
92 rc, out, err = assert_python_ok(self.script, '-r', data_path)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tools.py 29 script = os.path.join(scriptsdir, 'reindent.py') variable in class:ReindentTests
32 assert_python_ok(self.script)
35 rc, out, err = assert_python_ok(self.script, '-h')
41 script = os.path.join(scriptsdir, 'pindent.py') variable in class:PindentTests
49 (sys.executable, self.script) + args,
63 with open(self.script) as f:
68 rc, out, err = assert_python_ok(self.script, '-d', data_path)
81 rc, out, err = assert_python_ok(self.script, '-c', data_path)
92 rc, out, err = assert_python_ok(self.script, '-r', data_path)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tools.py 29 script = os.path.join(scriptsdir, 'reindent.py') variable in class:ReindentTests
32 assert_python_ok(self.script)
35 rc, out, err = assert_python_ok(self.script, '-h')
41 script = os.path.join(scriptsdir, 'pindent.py') variable in class:PindentTests
49 (sys.executable, self.script) + args,
63 with open(self.script) as f:
68 rc, out, err = assert_python_ok(self.script, '-d', data_path)
81 rc, out, err = assert_python_ok(self.script, '-c', data_path)
92 rc, out, err = assert_python_ok(self.script, '-r', data_path)
  /external/v8/src/debug/
liveedit.js 5 // LiveEdit feature implementation. The script should be executed after
9 // according to changes of script source (if possible).
11 // When new script source is put in, the difference is calculated textually,
16 // version of the script) it remains unchanged, but the code that could
17 // create a new instance of this function goes away. An old version of script
44 // Applies the change to the script.
47 function ApplyPatchMultiChunk(script, diff_array, new_source, preview_only,
50 var old_source = script.source;
52 // Gather compile information about old version of script.
53 var old_compile_info = GatherCompileInfo(old_source, script);
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
CanonGSUBBuilder.java 29 * Are these three scripts enough? Do we want to collect them all at once and distribute by script,
30 * or process them one script at a time. It's probably a good idea to build a single table for
269 public static void buildLigatureTree(CanonicalCharacterData data, int script, LigatureTree ligatureTree)
273 System.out.print("building composition ligature tree for " + UScript.getName(script) + "... ");
275 for (int i = 0; i < data.countRecords(script); i += 1) {
276 CanonicalCharacterData.Record record = data.getRecord(script, i);
290 public static DecompTable[] buildDecompTables(CanonicalCharacterData data, int script)
292 int maxDecompCount = data.getMaxEquivalents(script);
295 System.out.print("Building decompositon tables for " + UScript.getName(script) +
296 "... total decompositions: " + data.countRecords(script) +
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
VLoadTest.java 24 private ScriptC_vload script; field in class:VLoadTest
37 script = new ScriptC_vload(mRS);
52 script.destroy();
104 script.set_gAllocIn(inAlloc);
105 script.set_gAllocOut(outAlloc);
214 script.forEach_copy2d_char(walkAlloc);
222 script.forEach_copy2d_uchar(walkAlloc);
246 script.forEach_copy2d_short(walkAlloc);
254 script.forEach_copy2d_ushort(walkAlloc);
278 script.forEach_copy2d_int(walkAlloc)
    [all...]
  /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;
135 * Execute each script in the graph, with each next script's input using th
465 Script<?> script = instantiateScript(scriptClass, inputInfo, parameters); local
501 Script<?> script = mScripts.get(i); local
    [all...]
  /external/v8/src/
compiler.cc 256 // script name and line number. Check explicitly whether logging is
261 Handle<Script> script = info->parse_info()->script(); local
270 int line_num = Script::GetLineNumber(script, shared->start_position()) + 1;
272 Script::GetColumnNumber(script, shared->start_position()) + 1;
273 String* script_name = script->name()->IsString()
274 ? String::cast(script->name()
963 Handle<Script> script = parse_info->script(); local
1284 Handle<Script> script; local
1446 Handle<Script> script = isolate->factory()->NewScript(source); local
    [all...]
  /build/make/tools/releasetools/
edify_generator.py 20 """Class to generate scripts in the 'edify' recovery script language
24 self.script = []
35 """Make a temporary script object whose commands can latter be
36 appended to the parent script with AppendScript(). Used when the
37 caller wants to generate script commands out-of-order."""
76 """Append the contents of another script (which should be created
78 self.script.extend(other.script)
102 self.script.append(cmd)
113 self.script.append(cmd
    [all...]
  /external/ImageMagick/www/api/
shear.php 33 <script async="async" src="http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle"
38 <script>
40 </script>
43 <a class="magick-nav-item " href="../script/binary-releases.php">Download</a>
44 <a class="magick-nav-item " href="../script/command-line-tools.php">Tools</a>
45 <a class="magick-nav-item " href="../script/command-line-options.php">Options</a>
46 <a class="magick-nav-item " href="../script/resources.php">Resources</a>
47 <a class="magick-nav-item " href="../script/api.php">Develop</a>
48 <a class="magick-nav-item " href="../script/search.php">Search</a
    [all...]
  /external/chromium-libpac/test/js-unittest/
simple.js 1 // PAC script which uses isInNet on both IP addresses and hosts, and calls
  /external/flatbuffers/samples/
android_sample.sh 17 # Note: This script requires the Android NDK and Android SDK to be installed.
25 echo Error: This script must be run from inside the $sampledir directory.
javascript_sample.sh 17 # Note: This script runs on Mac and Linux. It requires `Node.js` to be installed
25 echo Error: This script must be run from inside the $sampledir directory.
php_sample.sh 17 # Note: This script runs on Mac and Linux. It requires `php` to be installed
25 echo Error: This script must be run from inside the $sampledir directory.
python_sample.sh 17 # Note: This script runs on Mac and Linux. It requires `python` to be installed
25 echo Error: This script must be run from inside the $sampledir directory.
  /external/freetype/src/autofit/
aftypes.h 248 * the script (based on script-specific characters to identify ascender
252 * glyph covered by the script,
303 * Each script is associated with two sets of Unicode ranges to test
304 * whether the font face supports the script, and which non-base
305 * characters the script contains.
307 * We use four-letter script tags from the OpenType specification,
308 * extended by `NONE', which indicates `no script'.
311 #undef SCRIPT
312 #define SCRIPT( s, S, d, h, H, ss )
340 AF_Script script; member in struct:AF_ScriptClassRec_
450 AF_Script script; member in struct:AF_StyleClassRec_
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
BaseLocale.java 33 private BaseLocale(String language, String script, String region, String variant) {
37 if (script != null) {
38 _script = AsciiUtil.toTitleString(script).intern();
53 public static BaseLocale getInstance(String language, String script, String region, String variant) {
64 Key key = new Key(language, script, region, variant);
112 buf.append("script=");
136 // Generating a hash value from language, script, region and variant
162 public Key(String language, String script, String region, String variant) {
166 if (script != null) {
167 _scrt = script;
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnhandledBreakEngine.java 57 int script = UCharacter.getIntPropertyValue(c, UProperty.SCRIPT); local
58 fHandled[breakType].applyIntPropertyValue(UProperty.SCRIPT, script);
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
BaseLocale.java 29 private BaseLocale(String language, String script, String region, String variant) {
33 if (script != null) {
34 _script = AsciiUtil.toTitleString(script).intern();
49 public static BaseLocale getInstance(String language, String script, String region, String variant) {
60 Key key = new Key(language, script, region, variant);
106 buf.append("script=");
129 // Generating a hash value from language, script, region and variant
155 public Key(String language, String script, String region, String variant) {
159 if (script != null) {
160 _scrt = script;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
BaseLocale.java 29 private BaseLocale(String language, String script, String region, String variant) {
33 if (script != null) {
34 _script = AsciiUtil.toTitleString(script).intern();
49 public static BaseLocale getInstance(String language, String script, String region, String variant) {
60 Key key = new Key(language, script, region, variant);
108 buf.append("script=");
132 // Generating a hash value from language, script, region and variant
158 public Key(String language, String script, String region, String variant) {
162 if (script != null) {
163 _scrt = script;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnhandledBreakEngine.java 56 int script = UCharacter.getIntPropertyValue(c, UProperty.SCRIPT); local
57 fHandled[breakType].applyIntPropertyValue(UProperty.SCRIPT, script);
  /external/mesa3d/src/mapi/vgapi/
SConscript 12 script = '../mapi/mapi_abi.py',
14 command = python_cmd + ' $SCRIPT --printer vgapi --mode lib $SOURCE > $TARGET'
  /external/mesa3d/src/mesa/
SConscript 344 script = 'main/es_generator.py',
346 command = python_cmd + ' $SCRIPT -S $SOURCE -V GLES1.1 > $TARGET'
353 script = GLAPI + 'gen/gl_table.py',
355 command = python_cmd + ' $SCRIPT -c es1 -m remap_table -f $SOURCE > $TARGET',
359 script = GLAPI + 'gen/remap_helper.py',
361 command = python_cmd + ' $SCRIPT -c es1 -f $SOURCE > $TARGET',
443 script = GLAPI + 'gen/gl_enums.py',
445 command = python_cmd + ' $SCRIPT -f $SOURCE > $TARGET'
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/provider/
ScriptProvider.java 44 public static final String SINGLE_MIME = "vnd.android.cursor.item/vnd.sl4a.script";
45 public static final String MULTIPLE_MIME = "vnd.android.cursor.dir/vnd.sl4a.script";
112 for (File script : ScriptStorageAdapter.listExecutableScripts(null, mConfiguration)) {
113 String scriptName = script.getName().toLowerCase();
135 for (File script : ScriptStorageAdapter.listExecutableScriptsRecursively(null, mConfiguration)) {
137 if (script.isDirectory()) {
140 iconId = FeaturedInterpreters.getInterpreterIcon(mContext, script.getName());
146 Intent intent = IntentBuilders.buildStartInBackgroundIntent(script);
148 String description = script.getAbsolutePath();
153 { index, script.getName(), intent.toURI(), icon.resourceName, icon.packageName
    [all...]

Completed in 780 milliseconds

<<11121314151617181920>>