HomeSort by relevance Sort by last modified time
    Searched refs:txt (Results 51 - 75 of 1213) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/syslinux/txt/
Makefile 31 DOCS = syslinux.txt syslinux-cli.txt syslinux.cfg.txt \
32 isolinux.txt pxelinux.txt
35 HTML_DOCS := $(patsubst %.txt,html/%.html,$(DOCS))
36 XHTML_DOCS := $(patsubst %.txt,%.html,$(DOCS))
37 # MAN_DOCS := $(patsubst %.txt,man/%.1,$(DOCS1)) $(patsubst %.txt,man/%.5,$(DOCS5))
38 TEXT_DOCS := $(patsubst %.txt,%.text,$(DOCS)
    [all...]
  /external/icu/icu4c/source/data/sprep/
sprepfiles.mk 5 # A list of txt's to build
19 # | SPREP_SOURCE_LOCAL = myStringPrep.txt ...
23 # | SPREP_SOURCE = rfc4518.txt
27 rfc3491.txt rfc3530cs.txt rfc3530csci.txt rfc3530mixp.txt rfc3722.txt \
28 rfc3920node.txt rfc3920res.txt rfc4011.txt rfc4013.txt rfc4505.txt
    [all...]
  /external/markdown/markdown/extensions/
codehilite.py 84 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):
105 txt = txt.replace('&', '&amp;')
106 txt = txt.replace('<', '&lt;'
    [all...]
fenced_code.py 102 def _escape(self, txt):
104 txt = txt.replace('&', '&amp;')
105 txt = txt.replace('<', '&lt;')
106 txt = txt.replace('>', '&gt;')
107 txt = txt.replace('"', '&quot;')
108 return txt
    [all...]
  /external/wpa_supplicant_8/src/common/
cli.c 54 os_free(e->txt);
69 const char *txt)
74 if (os_strcmp(e->txt, txt) == 0)
81 void cli_txt_list_del(struct dl_list *txt_list, const char *txt)
85 e = cli_txt_list_get(txt_list, txt);
91 void cli_txt_list_del_addr(struct dl_list *txt_list, const char *txt)
96 if (hwaddr_aton(txt, addr) < 0)
103 void cli_txt_list_del_word(struct dl_list *txt_list, const char *txt,
109 end = os_strchr(txt, separator)
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
ClassicToken.java 130 String txt = getText(); local
131 if ( txt!=null ) {
132 txt = txt.replaceAll("\n","\\\\n");
133 txt = txt.replaceAll("\r","\\\\r");
134 txt = txt.replaceAll("\t","\\\\t");
137 txt = "<no text>";
139 return "[@"+getTokenIndex()+",'"+txt+"',<"+type+">"+channelStr+","+line+":"+getCharPositionInLine()+"]"
    [all...]
  /external/boringssl/src/crypto/cipher_extra/test/
make_all_legacy_aead_tests.sh 5 go run make_legacy_aead_tests.go -cipher aes128 -mac sha1 > aes_128_cbc_sha1_tls_tests.txt
6 go run make_legacy_aead_tests.go -cipher aes128 -mac sha1 -implicit-iv > aes_128_cbc_sha1_tls_implicit_iv_tests.txt
7 go run make_legacy_aead_tests.go -cipher aes128 -mac sha256 > aes_128_cbc_sha256_tls_tests.txt
9 go run make_legacy_aead_tests.go -cipher aes256 -mac sha1 > aes_256_cbc_sha1_tls_tests.txt
10 go run make_legacy_aead_tests.go -cipher aes256 -mac sha1 -implicit-iv > aes_256_cbc_sha1_tls_implicit_iv_tests.txt
11 go run make_legacy_aead_tests.go -cipher aes256 -mac sha256 > aes_256_cbc_sha256_tls_tests.txt
12 go run make_legacy_aead_tests.go -cipher aes256 -mac sha384 > aes_256_cbc_sha384_tls_tests.txt
14 go run make_legacy_aead_tests.go -cipher 3des -mac sha1 > des_ede3_cbc_sha1_tls_tests.txt
15 go run make_legacy_aead_tests.go -cipher 3des -mac sha1 -implicit-iv > des_ede3_cbc_sha1_tls_implicit_iv_tests.txt
17 go run make_legacy_aead_tests.go -cipher aes128 -mac sha1 -ssl3 > aes_128_cbc_sha1_ssl3_tests.txt
    [all...]
  /prebuilts/go/darwin-x86/src/
cmp.bash 17 # It leaves and old.txt and new.txt file in the package
34 go build -gcflags "$FLAGS1 -S" -o /dev/null $pkg &> $DIR/old.txt
48 go build -gcflags "$FLAGS2 -S" -o /dev/null $pkg &> $DIR/new.txt
57 if cmp $DIR/old.txt $DIR/new.txt &> /dev/null
58 then rm $DIR/old.txt $DIR/new.txt
  /prebuilts/go/linux-x86/src/
cmp.bash 17 # It leaves and old.txt and new.txt file in the package
34 go build -gcflags "$FLAGS1 -S" -o /dev/null $pkg &> $DIR/old.txt
48 go build -gcflags "$FLAGS2 -S" -o /dev/null $pkg &> $DIR/new.txt
57 if cmp $DIR/old.txt $DIR/new.txt &> /dev/null
58 then rm $DIR/old.txt $DIR/new.txt
  /build/make/target/product/vndk/
Android.mk 10 llndk.libraries.txt \
11 vndksp.libraries.txt
  /dalvik/dx/tests/110-dex-preserve-this/
run 19 --dump-to=dump.txt --dump-method="Blort.test" *.class
21 cat dump.txt | awk '
  /external/syslinux/codepage/
Makefile 3 CPSRC = $(wildcard $(SRC)/*.txt)
5 GENFILES = $(patsubst %.txt,%.cp,$(CPOBJ))
7 .SUFFIXES: .txt .cp
13 %.cp: %.txt cptable.pl UnicodeData
  /external/syslinux/com32/libutil/
unbase64.c 40 size_t unbase64(unsigned char *buffer, size_t bufsiz, const char *txt)
60 while (*txt) {
61 if ((v = base64tbl[(unsigned char)*txt]) >= 0) {
72 txt++;
  /external/toolchain-utils/
perf-to-inst-page.sh 55 if (addr < $binary_maximum) print \$7,count,int(addr/$page_size)*$page_size}" > out.txt
58 test awk '{print $3}' out.txt | sort -n | uniq -c > inst-histo.txt
70 plot 'inst-histo.txt' using (\$2/1024/1024):1 with impulses notitle
74 num=$(awk 'END {print NR+1}' out.txt)
84 plot 'out.txt' using (\$0/$num*10):(\$3/1024/1024) with dots notitle
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/arm/armasm/testdata/
Makefile 1 newdecode.txt:
4 egrep ' (gnu|plan9) ' ../log |sort >newdecode.txt
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/arm/armasm/testdata/
Makefile 1 newdecode.txt:
4 egrep ' (gnu|plan9) ' ../log |sort >newdecode.txt
  /art/test/988-method-trace/
check 17 # Jack uses @hide API which gives it wrong method trace in the expected.txt
19 patch -p0 expected.txt < expected_jack.diff >/dev/null
  /external/bison/build-aux/
Makefile.am 19 prev-version.txt \
  /external/wpa_supplicant_8/wpa_supplicant/
wpas_glue.h 21 const char **txt);
26 const char *field_name, const char *txt);
  /frameworks/compile/slang/tests/
run_slang_tests.sh 18 # and outputs the results to $1/slang_tests/slang_tests_out.txt
23 /usr/bin/python2.7 frameworks/compile/slang/tests/slang_test.py -z 2> "$1"/slang_tests/slang_tests_out.txt
  /test/vts/script/
pypi-packages-local.sh 21 sudo pip install -r $ANDROID_BUILD_TOP/test/vts/script/pip_requirements.txt
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
rgn-over.s 1 .section .txt, "ax", "progbits"
  /external/icu/icu4c/source/test/perf/unisetperf/draft/
contperf.bat 11 for %%f in (udhr_eng.txt
12 udhr_deu.txt
13 udhr_fra.txt
14 udhr_rus.txt
15 udhr_tha.txt
16 udhr_jpn.txt
17 udhr_cmn.txt
span16perf.bat 11 for %%f in (udhr_eng.txt
12 udhr_deu.txt
13 udhr_fra.txt
14 udhr_rus.txt
15 udhr_tha.txt
16 udhr_jpn.txt
17 udhr_cmn.txt
span8perf.bat 11 for %%f in (udhr_eng.txt
12 udhr_deu.txt
13 udhr_fra.txt
14 udhr_rus.txt
15 udhr_tha.txt
16 udhr_jpn.txt
17 udhr_cmn.txt

Completed in 623 milliseconds

1 23 4 5 6 7 8 91011>>