Home
last modified time | relevance | path

Searched refs:txt (Results 1 – 25 of 3840) sorted by relevance

12345678910>>...154

/external/toybox/tests/
Dvi.test6 cp $FILES/vi/ascii.txt in.txt
7 cp $FILES/vi/dd_first.in cmd.txt
8 cp $FILES/vi/ascii_dd_first.out out.txt
14 rm in.txt cmd.txt out.txt
17 cp $FILES/vi/ascii.txt in.txt
18 cp $FILES/vi/dd_last.in cmd.txt
19 cp $FILES/vi/ascii_dd_last.out out.txt
25 rm in.txt cmd.txt out.txt
28 cp $FILES/vi/ascii.txt in.txt
29 cp $FILES/vi/dw_last.in cmd.txt
[all …]
Drm.test10 echo "abcdefghijklmnopqrstuvwxyz" > file.txt
20 echo "abcdefghijklmnopqrstuvwxyz" > file.txt && chmod 000 file.txt
25 touch file1.txt file2.txt
33 touch file1.txt file2.txt
43 touch dir1/file1.txt dir1/dir2/file2.txt dir1/dir2/dir3/file3.txt
55 touch d1/f1.txt d1/f2.txt
/external/boringssl/src/
Dsources.cmake9 crypto/cipher_extra/test/aes_128_cbc_sha1_tls_implicit_iv_tests.txt
10 crypto/cipher_extra/test/aes_128_cbc_sha1_tls_tests.txt
11 crypto/cipher_extra/test/aes_128_cbc_sha256_tls_tests.txt
12 crypto/cipher_extra/test/aes_128_ccm_bluetooth_tests.txt
13 crypto/cipher_extra/test/aes_128_ccm_bluetooth_8_tests.txt
14 crypto/cipher_extra/test/aes_128_ctr_hmac_sha256.txt
15 crypto/cipher_extra/test/aes_128_gcm_siv_tests.txt
16 crypto/cipher_extra/test/aes_128_gcm_tests.txt
17 crypto/cipher_extra/test/aes_192_gcm_tests.txt
18 crypto/cipher_extra/test/aes_256_cbc_sha1_tls_implicit_iv_tests.txt
[all …]
/external/curl/lib/
Dstrerror.c767 const char *txt; in Curl_sspi_strerror() local
785 txt = "No error"; in Curl_sspi_strerror()
788 txt = "CRYPT_E_REVOKED"; in Curl_sspi_strerror()
791 txt = "SEC_E_ALGORITHM_MISMATCH"; in Curl_sspi_strerror()
794 txt = "SEC_E_BAD_BINDINGS"; in Curl_sspi_strerror()
797 txt = "SEC_E_BAD_PKGID"; in Curl_sspi_strerror()
800 txt = "SEC_E_BUFFER_TOO_SMALL"; in Curl_sspi_strerror()
803 txt = "SEC_E_CANNOT_INSTALL"; in Curl_sspi_strerror()
806 txt = "SEC_E_CANNOT_PACK"; in Curl_sspi_strerror()
809 txt = "SEC_E_CERT_EXPIRED"; in Curl_sspi_strerror()
[all …]
/external/e2fsprogs/tests/f_unshare_blocks_no_space/
Dexpect.118 File /file4.txt (inode #24, mod time Mon Mar 5 20:30:04 2018)
20 /file18.txt (inode #32, mod time Mon Mar 5 20:30:04 2018)
21 /file6.txt (inode #31, mod time Mon Mar 5 20:30:04 2018)
22 /file12.txt (inode #30, mod time Mon Mar 5 20:30:04 2018)
23 /file3.txt (inode #29, mod time Mon Mar 5 20:30:04 2018)
24 /file9.txt (inode #28, mod time Mon Mar 5 20:30:04 2018)
25 /file8.txt (inode #27, mod time Mon Mar 5 20:30:04 2018)
26 /file15.txt (inode #26, mod time Mon Mar 5 20:30:04 2018)
27 /file20.txt (inode #25, mod time Mon Mar 5 20:30:04 2018)
30 File /file20.txt (inode #25, mod time Mon Mar 5 20:30:04 2018)
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Other/
Dlit-globbing.ll2 RUN: echo TA > %t/TA.txt
3 RUN: echo TB > %t/TB.txt
4 RUN: echo TAB > %t/TAB.txt
10 RUN: echo %t/T?.txt | FileCheck -check-prefix=QUESTION %s
11 RUN: echo %t/'T'?.txt | FileCheck -check-prefix=QUESTION %s
13 RUN: echo %t/T??.txt | FileCheck -check-prefix=QUESTION2 %s
14 RUN: echo %t/'T'??.txt | FileCheck -check-prefix=QUESTION2 %s
16 RUN: echo 'T*' 'T?.txt' 'T??.txt' | FileCheck -check-prefix=QUOTEDARGS %s
18 STAR-NOT: TB.txt
19 STAR: {{(TA.txt.*TAB.txt|TAB.txt.*TA.txt)}}
[all …]
/external/cldr/tools/scripts/
Dcldrres.mk39 GENRB_ALIAS_PATHS=$(GENRB_ALIAS_SOURCE:%.txt=$(LOCSRCDIR)/%.txt)
40 GENRB_SYNTHETIC_PATHS=$(GENRB_SYNTHETIC_ALIAS:%.txt=$(LOCSRCDIR)/%.txt)
41 COLLATION_ALIAS_PATHS=$(COLLATION_ALIAS_SOURCE:%.txt=$(COLSRCDIR)/%.txt)
42 COLLATION_SYNTHETIC_PATHS=$(COLLATION_SYNTHETIC_ALIAS:%.txt=$(COLSRCDIR)/%.txt)
43 COLLATION_EMPTY_PATHS=$(COLLATION_EMPTY_SOURCE:%.txt=$(COLSRCDIR)/%.txt)
44 GENRB_PATHS=$(GENRB_SOURCE:%.txt=$(LOCSRCDIR)/%.txt)
45 COLLATION_PATHS=$(COLLATION_SOURCE:%.txt=$(COLSRCDIR)/%.txt)
48 .PRECIOUS: $(GENRB_PATHS) $(LOCSRCDIR)/root.txt $(GENRB_ALIAS_PATHS) $(COLLATION_PATHS) $(COLSRCDIR…
51 $(LOCSRCDIR)/%.txt: $(CLDR_ROOT)/common/main/%.xml
55 $(COLSRCDIR)/%.txt: $(CLDR_ROOT)/common/collation/%.xml
[all …]
/external/markdown/markdown/extensions/
Dcodehilite.py84 txt = self._escape(self.src)
86 txt = self._number(txt)
88 txt = '<div class="%s"><pre>%s</pre></div>\n'% \
89 (self.css_class, txt)
90 return txt
103 def _escape(self, txt): argument
105 txt = txt.replace('&', '&amp;')
106 txt = txt.replace('<', '&lt;')
107 txt = txt.replace('>', '&gt;')
108 txt = txt.replace('"', '&quot;')
[all …]
/external/icu/icu4c/source/data/misc/
Dmiscfiles.mk28 zoneinfo64.txt supplementalData.txt likelySubtags.txt plurals.txt \
29 numberingSystems.txt icuver.txt icustd.txt metadata.txt metaZones.txt \
30 windowsZones.txt keyTypeData.txt timezoneTypes.txt currencyNumericCodes.txt \
31 genderList.txt dayPeriods.txt pluralRanges.txt
/external/icu/icu4c/source/data/translit/
Droot.txt4 // File: root.txt
23 resource:process(transliterator) {"am_am_Latn_BGN.txt"}
33 resource:process(transliterator) {"Any_Accents.txt"}
42 resource:process(transliterator) {"Any_Accents.txt"}
52 resource:process(transliterator) {"Any_Publishing.txt"}
61 resource:process(transliterator) {"Any_Publishing.txt"}
74 resource:process(transliterator) {"Arab_Latn.txt"}
86 resource:process(transliterator) {"Arab_Latn.txt"}
99 resource:process(transliterator) {"ar_ar_Latn_BGN.txt"}
112 resource:process(transliterator) {"hy_hy_Latn_BGN.txt"}
[all …]
/external/wpa_supplicant_8/src/common/
Dcli.c54 os_free(e->txt); in cli_txt_list_free()
69 const char *txt) in cli_txt_list_get() argument
74 if (os_strcmp(e->txt, txt) == 0) in cli_txt_list_get()
81 void cli_txt_list_del(struct dl_list *txt_list, const char *txt) in cli_txt_list_del() argument
85 e = cli_txt_list_get(txt_list, txt); in cli_txt_list_del()
91 void cli_txt_list_del_addr(struct dl_list *txt_list, const char *txt) in cli_txt_list_del_addr() argument
96 if (hwaddr_aton(txt, addr) < 0) in cli_txt_list_del_addr()
103 void cli_txt_list_del_word(struct dl_list *txt_list, const char *txt, in cli_txt_list_del_word() argument
109 end = os_strchr(txt, separator); in cli_txt_list_del_word()
111 end = txt + os_strlen(txt); in cli_txt_list_del_word()
[all …]
/external/bc/
D.gitignore15 .log_*.txt
16 .test.txt
17 .math.txt
18 .results.txt
19 .ops.txt
33 parse.txt
34 parse_results.txt
35 print.txt
36 print_results.txt
37 bessel.txt
[all …]
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl_ocsp.c25 static void tls_show_errors(int level, const char *func, const char *txt) in tls_show_errors() argument
30 func, txt, ERR_error_string(ERR_get_error(), NULL)); in tls_show_errors()
229 char *txt; in mem_bio_to_str() local
234 txt = os_malloc(rlen + 1); in mem_bio_to_str()
235 if (!txt) { in mem_bio_to_str()
240 res = BIO_read(out, txt, rlen); in mem_bio_to_str()
243 os_free(txt); in mem_bio_to_str()
247 txt[res] = '\0'; in mem_bio_to_str()
248 return txt; in mem_bio_to_str()
403 char *txt; in issuer_match() local
[all …]
/external/angle/src/libANGLE/renderer/gl/
DFeatureSupportGL.md7 …uffer_object](https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt)|2.0|--|Can potenti…
8txt)|3.0|[GL_ANGLE_framebuffer_blit](https://www.khronos.org/registry/gles/extensions/ANGLE/ANGLE_…
9txt)|3.0|[GL_EXT_multisampled_render_to_texture](https://www.khronos.org/registry/gles/extensions/…
10txt)|3.0|[GL_OES_depth_texture](https://www.khronos.org/registry/gles/extensions/OES/OES_depth_tex…
11txt) or [GL_EXT_draw_buffers2](https://www.opengl.org/registry/specs/EXT/draw_buffers2.txt)|3.0|[G…
12 …istry/specs/EXT/texture3D.txt)|3.0|[GL_OES_texture_3D](https://www.khronos.org/registry/gles/exten…
13 …es|3.0|[GL_EXT_texture_array](https://www.opengl.org/registry/specs/EXT/texture_array.txt)|3.0|--||
14 …/EXT_texture_storage.txt)|3.0|[GL_EXT_texture_storage](https://www.khronos.org/registry/gles/exten…
15 …niform_buffer_object](https://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt)|3.0|--||
16 |Sync objects|3.2|[GL_ARB_sync](https://www.opengl.org/registry/specs/ARB/sync.txt)|3.0|--||
[all …]
/external/OpenCL-CTS/test_conformance/conversions/
Drun_batch7 … CL_DEVICE_TYPE_CPU 0 100 > 0_32.txt; /usr/bin/arch -x86_64 ./test_conversions CL_DEVICE_TYPE_CP…
8 … CL_DEVICE_TYPE_CPU 100 100 > 1_32.txt; /usr/bin/arch -x86_64 ./test_conversions CL_DEVICE_TYPE_CP…
9 … CL_DEVICE_TYPE_CPU 200 100 > 2_32.txt; /usr/bin/arch -x86_64 ./test_conversions CL_DEVICE_TYPE_CP…
10 … CL_DEVICE_TYPE_CPU 300 100 > 3_32.txt; /usr/bin/arch -x86_64 ./test_conversions CL_DEVICE_TYPE_CP…
11 … CL_DEVICE_TYPE_CPU 400 100 > 4_32.txt; /usr/bin/arch -x86_64 ./test_conversions CL_DEVICE_TYPE_CP…
12 … CL_DEVICE_TYPE_CPU 500 100 > 5_32.txt; /usr/bin/arch -x86_64 ./test_conversions CL_DEVICE_TYPE_CP…
13 … CL_DEVICE_TYPE_CPU 600 100 > 6_32.txt; /usr/bin/arch -x86_64 ./test_conversions CL_DEVICE_TYPE_CP…
14 … CL_DEVICE_TYPE_CPU 700 100 > 7_32.txt; /usr/bin/arch -x86_64 ./test_conversions CL_DEVICE_TYPE_CP…
15 … CL_DEVICE_TYPE_CPU 800 100 > 8_32.txt; /usr/bin/arch -x86_64 ./test_conversions CL_DEVICE_TYPE_CP…
/external/u-boot/doc/board/xilinx/
Dxilinx.rst12 - Documentation/devicetree/bindings/ata/ahci-ceva.txt
14 - Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
15 - Documentation/devicetree/bindings/gpio/gpio-zynq.txt
17 - Documentation/devicetree/bindings/i2c/i2c-xiic.txt
18 - Documentation/devicetree/bindings/i2c/i2c-cadence.txt
20 - Documentation/devicetree/bindings/mmc/arasan,sdhci.txt
22 - Documentation/devicetree/bindings/net/macb.txt
23 - Documentation/devicetree/bindings/net/xilinx_axienet.txt
24 - Documentation/devicetree/bindings/net/xilinx_emaclite.txt
26 - Documentation/devicetree/bindings/serial/cdns,uart.txt
[all …]
/external/kotlinc/license/
DREADME.md1 The Apache 2 license (given in full in [LICENSE.txt](LICENSE.txt)) applies to all code in this repo…
11 - License: BSD ([license/third_party/asm_license.txt][asm])
15 - License: BSD ([license/third_party/asm_license.txt][asm])
19 - License: BSD ([license/third_party/asm_license.txt][asm])
23 - License: MIT ([license/third_party/pcollections_LICENSE.txt][pcollections])
27 - License: BSD ([license/third_party/asm_license.txt][asm])
31 - License: BSD ([license/third_party/asm_license.txt][asm])
35 - License: BSD ([license/third_party/dart_LICENSE.txt][dart])
39 - License: BSD ([license/third_party/dart_LICENSE.txt][dart])
43 - License: Netscape Public License 1.1 ([license/third_party/rhino_LICENSE.txt][rhino])
[all …]
/external/icu/icu4c/source/data/sprep/
Dsprepfiles.mk27 rfc3491.txt rfc3530cs.txt rfc3530csci.txt rfc3530mixp.txt rfc3722.txt \
28 rfc3920node.txt rfc3920res.txt rfc4011.txt rfc4013.txt rfc4505.txt \
29 rfc4518.txt rfc4518ci.txt
/external/toolchain-utils/binary_search_tool/full_bisect_test/
Dinteractive_test.sh21 full_bisect_test/bin-trees > full_bisect_test/temp_output.txt
23 diff full_bisect_test/temp_output.txt full_bisect_test/good-output.txt &> /dev/null
27 rm -f full_bisect_test/temp_output.txt
31 diff full_bisect_test/temp_output.txt full_bisect_test/bad-output-1.txt &> /dev/null
35 rm -f full_bisect_test/temp_output.txt
38 diff full_bisect_test/temp_output.txt full_bisect_test/bad-output-2.txt &> /dev/null
41 rm -f full_bisect_test/temp_output.txt
44 diff full_bisect_test/temp_output.txt full_bisect_test/bad-output-3.txt &> /dev/null
47 rm -f full_bisect_test/temp_output.txt
53 rm -f full_bisect_test/temp_output.txt
/external/u-boot/scripts/
Dbuild-whitelist.sh37 |sort |uniq >scripts/config_whitelist.txt.tmp1;
44 |sort |uniq >scripts/config_whitelist.txt.tmp2
47 comm -23 scripts/config_whitelist.txt.tmp1 scripts/config_whitelist.txt.tmp2 \
48 |sort |uniq >scripts/config_whitelist.txt.tmp3
52 if [ -r scripts/config_whitelist.txt ]; then
53 comm -12 scripts/config_whitelist.txt.tmp3 scripts/config_whitelist.txt \
54 > scripts/config_whitelist.txt.tmp4
55 mv scripts/config_whitelist.txt.tmp4 scripts/config_whitelist.txt
57 mv scripts/config_whitelist.txt.tmp3 scripts/config_whitelist.txt
60 rm scripts/config_whitelist.txt.tmp*
/external/tensorflow/tensorflow/lite/micro/tools/make/
Dmerge_arduino_zips_test.sh23 touch ${INPUT1_DIR}/a.txt
24 touch ${INPUT1_DIR}/b.txt
26 touch ${INPUT1_DIR}/sub1/c.txt
28 touch ${INPUT1_DIR}/sub2/d.txt
36 touch ${INPUT2_DIR}/a.txt
37 touch ${INPUT2_DIR}/e.txt
39 touch ${INPUT2_DIR}/sub1/f.txt
41 touch ${INPUT2_DIR}/sub3/g.txt
61 for EXPECTED_FILE in a.txt b.txt sub1/c.txt sub2/d.txt e.txt sub1/f.txt sub3/g.txt
/external/libopus/tests/
Drun_vectors.sh36 rm -f logs_mono.txt logs_mono2.txt
37 rm -f logs_stereo.txt logs_stereo2.txt
84 …if "$OPUS_DEMO" -d "$RATE" 1 "$VECTOR_PATH/testvector$file.bit" tmp.out >> logs_mono.txt 2>&1; then
90 "$OPUS_COMPARE" -r "$RATE" "$VECTOR_PATH/testvector${file}.dec" tmp.out >> logs_mono.txt 2>&1
92 "$OPUS_COMPARE" -r "$RATE" "$VECTOR_PATH/testvector${file}m.dec" tmp.out >> logs_mono2.txt 2>&1
115 …if "$OPUS_DEMO" -d "$RATE" 2 "$VECTOR_PATH/testvector$file.bit" tmp.out >> logs_stereo.txt 2>&1; t…
121 … "$OPUS_COMPARE" -s -r "$RATE" "$VECTOR_PATH/testvector${file}.dec" tmp.out >> logs_stereo.txt 2>&1
123 …"$OPUS_COMPARE" -s -r "$RATE" "$VECTOR_PATH/testvector${file}m.dec" tmp.out >> logs_stereo2.txt 2>…
137 mono1=`grep quality logs_mono.txt | awk '{sum+=$4}END{if (NR == 12) sum /= 12; else sum = 0; print …
138 mono2=`grep quality logs_mono2.txt | awk '{sum+=$4}END{if (NR == 12) sum /= 12; else sum = 0; print…
[all …]
/external/igt-gpu-tools/tools/registers/
Dcherryview1 vlv_pipe_a.txt
2 vlv_pipe_b.txt
3 chv_pipe_c.txt
4 chv_pipe_b_extra.txt
5 chv_display_base.txt
6 chv_dpio_phy_x2.txt
7 chv_dpio_phy_x1.txt
8 vlv_dsi.txt
9 vlv_cck.txt
10 gen7_other.txt
/external/e2fsprogs/util/ucd/
DREADME20 http://www.unicode.org/Public/11.0.0/ucd/CaseFolding.txt
21 http://www.unicode.org/Public/11.0.0/ucd/DerivedAge.txt
22 http://www.unicode.org/Public/11.0.0/ucd/extracted/DerivedCombiningClass.txt
23 http://www.unicode.org/Public/11.0.0/ucd/DerivedCoreProperties.txt
24 http://www.unicode.org/Public/11.0.0/ucd/NormalizationCorrections.txt
25 http://www.unicode.org/Public/11.0.0/ucd/NormalizationTest.txt
26 http://www.unicode.org/Public/11.0.0/ucd/UnicodeData.txt
30 414436796cf097df55f798e1585448ee CaseFolding-11.0.0.txt
31 6032a595fbb782694456491d86eecfac DerivedAge-11.0.0.txt
32 3240997d671297ac754ab0d27577acf7 DerivedCombiningClass-11.0.0.txt
[all …]
/external/libxml2/win32/
Dconfigure.js110 var txt;
111 txt = "Usage:\n";
112 txt += " cscript " + WScript.ScriptName + " <options>\n";
113 txt += " cscript " + WScript.ScriptName + " help\n\n";
114 txt += "Options can be specified in the form <option>=<value>, where the value is\n";
115 txt += "either 'yes' or 'no', if not stated otherwise.\n\n";
116 txt += "\nXML processor options, default value given in parentheses:\n\n";
117 txt += " trio: Enable TRIO string manipulator (" + (withTrio? "yes" : "no") + ")\n";
118 txt += " threads: Enable thread safety [no|ctls|native|posix] (" + (withThreads) + ") \n";
119 txt += " ftp: Enable FTP client (" + (withFtp? "yes" : "no") + ")\n";
[all …]

12345678910>>...154