Home
last modified time | relevance | path

Searched refs:script (Results 1 – 25 of 4723) sorted by relevance

12345678910>>...189

/external/fonttools/Tests/
Dunicodedata_test.py7 assert unicodedata.script("a") == "Latn"
8 assert unicodedata.script(chr(0)) == "Zyyy"
9 assert unicodedata.script(chr(0x0378)) == "Zzzz"
10 assert unicodedata.script(chr(0x10FFFF)) == "Zzzz"
13 assert unicodedata.script(chr(0x1E918)) == 'Adlm'
14 assert unicodedata.script(chr(0x1170D)) == 'Ahom'
15 assert unicodedata.script(chr(0x145A0)) == 'Hluw'
16 assert unicodedata.script(chr(0x0607)) == 'Arab'
17 assert unicodedata.script(chr(0x056C)) == 'Armn'
18 assert unicodedata.script(chr(0x10B27)) == 'Avst'
[all …]
/external/ltp/testcases/kernel/io/stress_floppy/datafiles/
Ddd_file3 backup_list lost+found smit.script
4 backup_list lost+found smit.script
5 backup_list lost+found smit.script
6 backup_list lost+found smit.script
7 backup_list lost+found smit.script
8 backup_list lost+found smit.script
22 backup_list lost+found smit.script
23 backup_list lost+found smit.script
24 backup_list lost+found smit.script
25 backup_list lost+found smit.script
[all …]
/external/llvm-project/lldb/test/API/commands/command/script/
Dpy_import1 script import sys, os
2 script sys.path.append(os.path.join(os.getcwd(), os.pardir))
3 script import welcome
4 script import bug11569
5 command script add welcome --class welcome.WelcomeCommand
6 command script add targetname --class welcome.TargetnameCommand
7 command script add longwait --function welcome.print_wait_impl
8 command script import mysto.py --allow-reload
9 command script add tell_sync --function welcome.check_for_synchro --synchronicity sync
10 command script add tell_async --function welcome.check_for_synchro --synchronicity async
[all …]
/external/angle/infra/specs/
Dgn_isolate_map.pyl31 "script": "//scripts/run_gtest_angle_test.py",
32 "type": "script",
36 "script": "//scripts/run_gtest_angle_test.py",
37 "type": "script",
41 "script": "//scripts/run_gtest_angle_test.py",
42 "type": "script",
46 "script": "//scripts/run_gtest_angle_test.py",
47 "type": "script",
51 "script": "//scripts/run_gtest_angle_test.py",
52 "type": "script",
[all …]
/external/pdfium/core/fxcrt/xml/
Dcfx_xmlparser_unittest.cpp40 CFX_XMLElement* script = doc->GetRoot()->GetFirstChildNamed(L"script"); in TEST_F() local
41 ASSERT_TRUE(script != nullptr); in TEST_F()
43 EXPECT_EQ(L"application/x-javascript", script->GetAttribute(L"contentType")); in TEST_F()
44 EXPECT_EQ(L"1", script->GetAttribute(L"display")); in TEST_F()
65 CFX_XMLElement* script = doc->GetRoot()->GetFirstChildNamed(L"script"); in TEST_F() local
66 ASSERT_TRUE(script != nullptr); in TEST_F()
67 EXPECT_EQ(cdata, script->GetTextData()); in TEST_F()
90 CFX_XMLElement* script = doc->GetRoot()->GetFirstChildNamed(L"script"); in TEST_F() local
91 ASSERT_TRUE(script != nullptr); in TEST_F()
92 EXPECT_EQ(cdata, script->GetTextData()); in TEST_F()
[all …]
/external/llvm-project/lld/test/ELF/linkerscript/
Dsections-padding.s5 # RUN: echo "SECTIONS { .mysec : { *(.mysec*) } =0x1122 }" > %t.script
6 # RUN: ld.lld -o %t.out --script %t.script %t
10 # RUN: echo "SECTIONS { .mysec : { *(.mysec*) } =(0x1100+0x22) }" > %t.script
11 # RUN: ld.lld -o %t.out --script %t.script %t
16 # RUN: echo "SECTIONS { .mysec : { *(.mysec*) } =0x99887766 }" > %t.script
17 # RUN: ld.lld -o %t.out --script %t.script %t
22 # RUN: echo "SECTIONS { .mysec : { *(.mysec*) } }" > %t.script
23 # RUN: ld.lld -o %t.out --script %t.script %t
28 # RUN: echo "SECTIONS { .mysec : { *(.mysec*) } =777 }" > %t.script
29 # RUN: ld.lld -o %t.out --script %t.script %t
[all …]
Dregion-alias.s11 # RUN: }" > %t.script
14 # RUN: echo "REGION_ALIAS (\"ALIAS_TEXT\", ROM);" > %t.script.inc
15 # RUN: echo "REGION_ALIAS (\"ALIAS_DATA\", RAM);" >> %t.script.inc
16 # RUN: ld.lld %t --script %t.script -o %t2
22 # RUN: echo "REGION_ALIAS (\"ALIAS_TEXT\", ROM);" > %t.script.inc
23 # RUN: echo "REGION_ALIAS (\"ALIAS_DATA\", ROM);" >> %t.script.inc
24 # RUN: ld.lld %t --script %t.script -o %t2
30 # RUN: echo "REGION_ALIAS (\"ROM\", ROM);" > %t.script.inc
31 # RUN: not ld.lld %t --script %t.script -o /dev/null 2>&1 | \
33 # ERR1: {{.*}}script.inc:1: redefinition of memory region 'ROM'
[all …]
Dassert.s4 # RUN: echo "SECTIONS { ASSERT(1, fail) }" > %t1.script
5 # RUN: ld.lld -shared -o %t1 --script %t1.script %t1.o
8 # RUN: echo "SECTIONS { ASSERT(0, fail) }" > %t3.script
9 # RUN: not ld.lld -o /dev/null -T %t3.script %t1.o 2>&1 | FileCheck --check-prefix=FAIL %s
10 # RUN: ld.lld -o /dev/null -T %t3.script %t1.o --noinhibit-exec 2>&1 | FileCheck --check-prefix=FAI…
13 # RUN: echo "SECTIONS { . = ASSERT(0x1000, fail); }" > %t4.script
14 # RUN: ld.lld -shared -o %t4 --script %t4.script %t1.o
17 # RUN: echo "SECTIONS { .foo : { *(.foo) } }" > %t5.script
18 # RUN: echo "ASSERT(SIZEOF(.foo) == 8, fail);" >> %t5.script
19 # RUN: ld.lld -shared -o %t5 --script %t5.script %t1.o
[all …]
Dsort.s6 # RUN: echo "SECTIONS { .aaa : { *(.aaa.*) } }" > %t1.script
7 # RUN: ld.lld -o %t1 --script %t1.script %t2.o %t1.o
19 # RUN: echo "SECTIONS { .aaa : { *(SORT(.aaa.*)) } }" > %t2.script
20 # RUN: ld.lld -o %t2 --script %t2.script %t2.o %t1.o
33 # RUN: echo "SECTIONS { .aaa : { *(SORT(.aaa.*)) } }" > %t3.script
34 # RUN: ld.lld -o %t3 --script %t3.script %t1.o %t2.o
46 # RUN: echo "SECTIONS { .aaa : { KEEP (*(SORT(.aaa.*))) } }" > %t3.script
47 # RUN: ld.lld -o %t3 --script %t3.script %t2.o %t1.o
51 # RUN: echo "SECTIONS { .aaa : { *(SORT_BY_NAME(.aaa.*)) } }" > %t4.script
52 # RUN: ld.lld -o %t4 --script %t4.script %t2.o %t1.o
[all …]
Dnumbers.s16 # RUN: }" > %t.script
17 # RUN: ld.lld %t --script %t.script -o %t2
31 # RUN: echo "SECTIONS { . = 0x11h; }" > %t2.script
32 # RUN: not ld.lld %t --script %t2.script -o /dev/null 2>&1 | \
36 # RUN: echo "SECTIONS { . = 0x11k; }" > %t3.script
37 # RUN: not ld.lld %t --script %t3.script -o /dev/null 2>&1 | \
41 # RUN: echo "SECTIONS { . = 0x11m; }" > %t4.script
42 # RUN: not ld.lld %t --script %t4.script -o /dev/null 2>&1 | \
46 # RUN: echo "SECTIONS { . = 1zh; }" > %t5.script
47 # RUN: not ld.lld %t --script %t5.script -o /dev/null 2>&1 | \
[all …]
Dinfo-section-type.s7 # RUN: echo "SECTIONS { .bar : { *(.foo) } };" > %t.script
8 # RUN: ld.lld -o %t --script %t.script %t.o
16 # RUN: echo "SECTIONS { .bar (COPY) : { *(.foo) } };" > %t.script
17 # RUN: ld.lld -o %t --script %t.script %t.o
24 # RUN: echo "SECTIONS { .bar (INFO) : { *(.foo) } };" > %t.script
25 # RUN: ld.lld -o %t --script %t.script %t.o
28 # RUN: echo "SECTIONS { .bar (OVERLAY) : { *(.foo) } };" > %t.script
29 # RUN: ld.lld -o %t --script %t.script %t.o
32 # RUN: echo "SECTIONS { .bar (INFO) : { . += 1; } };" > %t.script
33 # RUN: ld.lld -o %t --script %t.script %t.o
[all …]
Dgroup.s10 # RUN: echo "GROUP(\"%t\")" > %t.script
11 # RUN: ld.lld -o %t2 %t.script
14 # RUN: echo "INPUT(\"%t\")" > %t.script
15 # RUN: ld.lld -o %t2 %t.script
18 # RUN: echo "GROUP(\"%t\" libxyz.a )" > %t.script
19 # RUN: not ld.lld -o /dev/null %t.script 2>/dev/null
20 # RUN: ld.lld -o %t2 %t.script -L%t.dir
23 # RUN: echo "GROUP(\"%t\" =libxyz.a )" > %t.script
24 # RUN: not ld.lld -o /dev/null %t.script 2>/dev/null
25 # RUN: ld.lld -o %t2 %t.script --sysroot=%t.dir
[all …]
Dsymbols.s7 # RUN: echo "SECTIONS {.text : {*(.text.*)} text_end = .;}" > %t.script
8 # RUN: ld.lld -o %t1 --script %t.script %t
19 # RUN: echo "SECTIONS { PROVIDE_HIDDEN(newsym = 1);}" > %t.script
20 # RUN: ld.lld -o %t1 --script %t.script %t
25 # RUN: echo "SECTIONS { PROVIDE(somesym = 1);}" > %t.script
26 # RUN: ld.lld -o %t1 --script %t.script %t
32 # RUN: echo "SECTIONS { PROVIDE_HIDDEN(somesym = 1);}" > %t.script
33 # RUN: ld.lld -o %t1 --script %t.script %t
38 # RUN: echo "SECTIONS { HIDDEN(newsym = 1);}" > %t.script
39 # RUN: ld.lld -o %t1 --script %t.script %t
[all …]
Dlinkerscript.s6 # RUN: echo "EXTERN( undef undef2 \"undef3\" \"undef4@@other\")" > %t.script
7 # RUN: ld.lld %t -o %t2 %t.script
10 # RUN: echo "OUTPUT_FORMAT(elf64-x86-64) /*/*/ GROUP(\"%t\" )" > %t.script
11 # RUN: ld.lld -o %t2 %t.script
15 # RUN: echo "OUTPUT(\"%t.out\")" > %t.script
16 # RUN: ld.lld %t.script %t
19 # RUN: echo "SEARCH_DIR(/lib/foo/blah)" > %t.script
20 # RUN: ld.lld %t.script %t -o %t.out
23 # RUN: echo ";SEARCH_DIR(x);SEARCH_DIR(y);" > %t.script
24 # RUN: ld.lld %t.script %t -o %t.out
[all …]
Dmemory-err.s6 # RUN: echo 'MEMORY { ram (rwx) : XYZ = 0x8000 } }' > %t.script
7 # RUN: not ld.lld -o /dev/null -T %t.script %t.o 2>&1 | FileCheck --check-prefix=ERR1 %s
8 # ERR1: {{.*}}.script:1: expected one of: ORIGIN, org, or o
12 # RUN: echo 'MEMORY { ram (rwx) : ORIGIN = 0x8000, XYZ = 256K } }' > %t.script
13 # RUN: not ld.lld -o /dev/null -T %t.script %t.o 2>&1 | FileCheck --check-prefix=ERR2 %s
14 # ERR2: {{.*}}.script:1: expected one of: LENGTH, len, or l
18 # RUN: echo 'MEMORY { ram (rwx) : o = 8, l = 256K ram (rx) : o = 0, l = 256K }' > %t.script
19 # RUN: not ld.lld -o /dev/null -T %t.script %t.o 2>&1 | FileCheck --check-prefix=ERR3 %s
20 # ERR3: {{.*}}.script:1: region 'ram' already defined
28 # RUN: }' > %t.script
[all …]
Dfilename-spec.s6 # RUN: echo "SECTIONS{.foo :{ KEEP(*x.o(.foo)) KEEP(*y.o(.foo)) }}" > %t1.script
7 # RUN: ld.lld -o %t1 --script %t1.script %tx.o %ty.o
12 # RUN: echo "SECTIONS{.foo :{ KEEP(*y.o(.foo)) KEEP(*x.o(.foo)) }}" > %t2.script
13 # RUN: ld.lld -o %t2 --script %t2.script %tx.o %ty.o
20 # RUN: echo "SECTIONS{.foo :{ *x.o(.foo) *y.o(.foo) }}" > %t3.script
21 # RUN: ld.lld -o %t3 --script %t3.script %tx.o %ty.o
24 # RUN: echo "SECTIONS{.foo :{ *y.o(.foo) *x.o(.foo) }}" > %t4.script
25 # RUN: ld.lld -o %t4 --script %t4.script %tx.o %ty.o
33 …IONS{.foo :{ \"%/t.dir/filename-spec2.o\"(.foo) \"%/t.dir/filename-spec1.o\"(.foo) }}" > %t5.script
34 # RUN: ld.lld -o %t5 --script %t5.script \
[all …]
/external/llvm-project/lld/test/ELF/
Dversion-script-complex-wildcards.s4 # RUN: echo "FOO { global: extern \"C++\" { ab[c]*; }; };" > %t.script
5 # RUN: ld.lld --version-script %t.script -shared %t.o -o %t.so
10 # RUN: echo "FOO { global: extern \"C++\" { ab[b]*; }; };" > %t1.script
11 # RUN: ld.lld --version-script %t1.script -shared %t.o -o %t1.so
16 # RUN: echo "FOO { global: extern \"C++\" { ab[a-b]*; }; };" > %t2.script
17 # RUN: ld.lld --version-script %t2.script -shared %t.o -o %t2.so
20 # RUN: echo "FOO { global: extern \"C++\" { ab[a-c]*; }; };" > %t3.script
21 # RUN: ld.lld --version-script %t3.script -shared %t.o -o %t3.so
26 # RUN: echo "FOO { global: extern \"C++\" { ab[a-bc-d]*; }; };" > %t4.script
27 # RUN: ld.lld --version-script %t4.script -shared %t.o -o %t4.so
[all …]
Dversion-script.s6 # RUN: echo "{ global: foo1; foo3; local: *; };" > %t.script
8 # RUN: ld.lld --version-script %t.script -shared %t.o %t2.so -o %t.so --fatal-warnings
11 # RUN: echo "# comment" > %t3.script
12 # RUN: echo "{ local: *; # comment" >> %t3.script
13 # RUN: echo -n "}; # comment" >> %t3.script
14 # RUN: ld.lld --version-script %t3.script -shared %t.o %t2.so -o %t3.so
18 # RUN: echo "VERSION_1.0 { global : foo1; local : *; };" > %t4.script
19 # RUN: echo "VERSION_2.0 { global: foo3; local: *; };" >> %t4.script
20 # RUN: ld.lld --version-script %t4.script -shared %t.o %t2.so -o %t4.so --fatal-warnings
23 # RUN: echo "VERSION_1.0 { global: foo1; local: *; };" > %t5.script
[all …]
Dversion-script-noundef.s3 # RUN: echo "VERSION_1.0 { global: bar; };" > %t.script
5 # RUN: ld.lld --version-script %t.script -shared %t.o -o /dev/null --fatal-warnings
6 # RUN: ld.lld --version-script %t.script -shared --undefined-version %t.o -o %t.so
7 # RUN: not ld.lld --version-script %t.script -shared --no-undefined-version \
9 # ERR1: version script assignment of 'VERSION_1.0' to symbol 'bar' failed: symbol not defined
11 # RUN: echo "VERSION_1.0 { global: und; };" > %t2.script
12 # RUN: not ld.lld --version-script %t2.script -shared --no-undefined-version \
14 # ERR2: version script assignment of 'VERSION_1.0' to symbol 'und' failed: symbol not defined
16 # RUN: echo "VERSION_1.0 { local: und; };" > %t3.script
17 # RUN: not ld.lld --version-script %t3.script -shared --no-undefined-version \
[all …]
/external/doclava/res/assets/templates-sdk/
Dtrailer.cs8 <script type="text/javascript">
14 </script>
17 <script type="text/javascript">
22 </script>
25 <script src="https://developer.android.com/ytblogger_lists_unified.js" defer></script>
26 <script src="/jd_lists_unified_en.js?v=17" defer></script>
27 <script src="/reference/lists.js?v=17" defer></script>
28 <script src="/reference/gcm_lists.js?v=17" defer></script>
29 <script src="/reference/gms_lists.js?v=17" defer></script>
30 <script>
[all …]
/external/deqp-deps/amber/src/vkscript/
Dcommand_parser_test.cc35 Script script; in TEST_F() local
36 CommandParser cp(&script, &pipeline, 1, data); in TEST_F()
73 Script script; in TEST_F() local
74 CommandParser cp(&script, &pipeline, 1, data); in TEST_F()
95 Script script; in TEST_F() local
96 CommandParser cp(&script, &pipeline, 1, data); in TEST_F()
117 Script script; in TEST_F() local
118 CommandParser cp(&script, &pipeline, 1, data); in TEST_F()
139 Script script; in TEST_F() local
140 CommandParser cp(&script, &pipeline, 1, data); in TEST_F()
[all …]
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DLanguageTest.java48 String script = null;
50 script = scripts.iterator().next();
51 addMap(language2script, language, script, type); in addMap() argument
52 addMap(script2language, script, language, type); in addMap() argument
53 scriptSet.add(script);
59 if (script != null) {
72 for (String script : scriptSet) {
73 String bestLanguage = getBest(script2language, script, "und");
74 String bestTerritory = getBest(script2territory, script, "ZZ");
75 script2likely.put(script, bestLanguage + "_" + script + "_" in script2likely.put() argument
[all …]
/external/doclava/res/assets/templates/
Dhead_tag.cs18 <script src="<?cs var:toroot ?>assets/search_autocomplete.js" type="text/javascript"></script>
19 <script src="<?cs var:toroot ?>assets/jquery-resizable.min.js" type="text/javascript"></script>
20 <script src="<?cs var:toroot ?>assets/doclava-developer-docs.js" type="text/javascript"></script>
21 <script src="<?cs var:toroot ?>assets/prettify.js" type="text/javascript"></script>
22 <script type="text/javascript">
24 </script><?cs
26 <script src="<?cs var:toroot ?>assets/doclava-developer-reference.js" type="text/javascript"></scri…
27 <script src="<?cs var:toroot ?>navtree_data.js" type="text/javascript"></script><?cs
29 <script src="<?cs var:toroot ?>assets/customizations.js" type="text/javascript"></script>
/external/llvm-project/llvm/utils/lit/tests/unit/
DTestRunner.py76 script = parseIntegratedTestScript(
79 if isinstance(script, lit.Test.Result):
82 assert isinstance(script, list)
83 assert len(script) == 0
84 return script
132 script = self.parse_test(parsers, allow_result=True)
133 self.assertTrue(isinstance(script, lit.Test.Result))
134 self.assertEqual(script.code, lit.Test.UNRESOLVED)
137 script.output)
143 script = self.parse_test(parsers, allow_result=True)
[all …]
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DScriptRunModuleWriter.java33 int script = scriptData.getRecord(record).scriptCode(); in writeScriptRuns() local
40 output.print(scriptData.getTag(script)); in writeScriptRuns()
44 output.println(scriptData.getName(script)); in writeScriptRuns()
63 for (int script = minScript; script <= maxScript; script += 1) { in writeScriptRuns()
64 scriptRangeOffsets[script - minScript] = new Vector(); in writeScriptRuns()
73 for (int script = minScript; script <= maxScript; script += 1) { in writeScriptRuns()
74 Vector offsets = scriptRangeOffsets[script - minScript]; in writeScriptRuns()
77 output.print(scriptData.getTag(script)); in writeScriptRuns()
94 for (int script = minScript; script <= maxScript; script += 1) { in writeScriptRuns()
96 output.print(scriptData.getTag(script)); in writeScriptRuns()
[all …]

12345678910>>...189