Home
last modified time | relevance | path

Searched refs:suff (Results 1 – 25 of 64) sorted by relevance

123

/external/python/cpython2/Tools/scripts/
Dsuff.py13 suff = getsuffix(filename)
14 if not suffixes.has_key(suff):
15 suffixes[suff] = []
16 suffixes[suff].append(filename)
19 for suff in keys:
20 print repr(suff), len(suffixes[suff])
23 suff = ''
26 suff = filename[i:]
27 return suff
/external/llvm-project/lld/test/ELF/
Darm-thunk-linkerscript-large.s26 .macro FUNCTIONL suff argument
27 .section .text_l\suff\(), "ax", %progbits
30 .globl tfuncl\suff\()
31 .type tfuncl\suff\(), %function
32 tfuncl\suff\():
38 .macro FUNCTIONH suff argument
39 .section .text_h\suff\(), "ax", %progbits
42 .globl tfunch\suff\()
43 .type tfunch\suff\(), %function
44 tfunch\suff\():
Darm-thumb-mix-range-thunk-os.s27 .macro ARMFUNCTION suff argument
28 .section .text.\suff\(), "ax", %progbits
31 .globl afunc\suff\()
32 .type afunc\suff\(), %function
33 afunc\suff\():
38 .macro THUMBFUNCTION suff argument
39 .section .text.\suff\(), "ax", %progbits
42 .globl tfunc\suff\()
43 .type tfunc\suff\(), %function
44 tfunc\suff\():
Darm-thunk-linkerscript-sort.s16 .macro FUNCTION suff argument
17 .section .text.\suff\(), "ax", %progbits
20 .globl tfunc\suff\()
21 .type tfunc\suff\(), %function
22 tfunc\suff\():
Darm-thumb-condbranch-thunk.s20 .macro FUNCTION suff argument
21 .section .text.\suff\(), "ax", %progbits
24 .globl tfunc\suff\()
25 .type tfunc\suff\(), %function
26 tfunc\suff\():
Darm-thunk-multipass.s13 .macro FUNCTION suff argument
14 .section .text.\suff\(), "ax", %progbits
17 .globl tfunc\suff\()
18 .type tfunc\suff\(), %function
19 tfunc\suff\():
Darm-thumb-range-thunk-os.s25 .macro FUNCTION suff argument
26 .section .text.\suff\(), "ax", %progbits
29 .globl tfunc\suff\()
30 .type tfunc\suff\(), %function
31 tfunc\suff\():
Darm-thunk-re-add.s17 .macro FUNCTION suff argument
18 .section .text.\suff\(), "ax", %progbits
21 .globl tfunc\suff\()
22 .type tfunc\suff\(), %function
23 tfunc\suff\():
/external/python/cpython3/Tools/scripts/
Dsuff.py14 suff = getsuffix(filename)
15 suffixes.setdefault(suff, []).append(filename)
16 for suff, filenames in sorted(suffixes.items()):
17 print(repr(suff), len(filenames))
21 name, sep, suff = filename.rpartition('.')
22 return sep + suff if sep else ''
/external/icu/libicu/cts_headers/unicode/
Dutypes.h163 #define U_DEF2_ICUDATA_ENTRY_POINT(major,suff) U_DEF_ICUDATA_ENTRY_POINT(major,suff) argument
172 #define U_DEF_ICUDATA_ENTRY_POINT(major, suff) icudt##major##_dat argument
174 #define U_DEF_ICUDATA_ENTRY_POINT(major, suff) icudt##suff ## major##_dat argument
/external/icu/icu4c/source/common/unicode/
Dutypes.h163 #define U_DEF2_ICUDATA_ENTRY_POINT(major,suff) U_DEF_ICUDATA_ENTRY_POINT(major,suff) argument
172 #define U_DEF_ICUDATA_ENTRY_POINT(major, suff) icudt##major##_dat argument
174 #define U_DEF_ICUDATA_ENTRY_POINT(major, suff) icudt##suff ## major##_dat argument
/external/icu/libicu/ndk_headers/unicode/
Dutypes.h163 #define U_DEF2_ICUDATA_ENTRY_POINT(major,suff) U_DEF_ICUDATA_ENTRY_POINT(major,suff) argument
172 #define U_DEF_ICUDATA_ENTRY_POINT(major, suff) icudt##major##_dat argument
174 #define U_DEF_ICUDATA_ENTRY_POINT(major, suff) icudt##suff ## major##_dat argument
/external/icu/libandroidicu/include/unicode/
Dutypes.h163 #define U_DEF2_ICUDATA_ENTRY_POINT(major,suff) U_DEF_ICUDATA_ENTRY_POINT(major,suff) argument
172 #define U_DEF_ICUDATA_ENTRY_POINT(major, suff) icudt##major##_dat argument
174 #define U_DEF_ICUDATA_ENTRY_POINT(major, suff) icudt##suff ## major##_dat argument
/external/curl/lib/
Dversion.c217 char suff[2]; in curl_version() local
219 suff[0] = (RTMP_LIB_VERSION & 0xff) + 'a' - 1; in curl_version()
220 suff[1] = '\0'; in curl_version()
223 suff[0] = '\0'; in curl_version()
227 suff); in curl_version()
/external/python/cpython2/Lib/idlelib/
DPathBrowser.py82 for suff, mode, flag in suffixes:
83 i = -len(suff)
86 if normed_name[i:] == suff:
/external/python/cpython3/Lib/idlelib/
Dpathbrowser.py88 for suff in suffixes:
89 i = -len(suff)
92 if normed_name[i:] == suff:
/external/toybox/toys/pending/
Ddiff.c64 long a, b, c, d, prev, suff; member
667 if (i == x + 1) ptr1->suff = MAX(1,a - TT.ct); in do_diff()
670 ptr1->suff = (ptr1 - 1)->prev + 1; in do_diff()
671 else ptr1->suff = ptr1->a - TT.ct; in do_diff()
681 start1 = (ptr2->prev - ptr1->suff + 1); in do_diff()
683 start2 = MAX(1, ptr1->c - (ptr1->a - ptr1->suff)); in do_diff()
687 printf("@@ -%ld", start1 ? ptr1->suff: (ptr1->suff -1)); in do_diff()
688 if (end1 != -1) printf(",%ld ", ptr2->prev-ptr1->suff + 1); in do_diff()
699 if (t== ptr1) print_diff(t->suff, t->a-1, ' ', TT.offset[0], file[0].fp); in do_diff()
/external/python/cpython2/Lib/
Dihooks.py252 suff, mode, type = info
253 fullname = self.hooks.path_join(dir, name+suff)
263 (suff, mode, type) = info
291 file, filename, (suff, mode, type) = stuff
Dmimetypes.py225 for suff in suffixes:
226 self.add_type(type, '.' + suff, strict)
Dmodulefinder.py262 for suff in suffixes:
263 n = len(suff)
264 if name[-n:] == suff:
/external/python/cpython3/Lib/
Dmimetypes.py228 for suff in suffixes:
229 self.add_type(type, '.' + suff, strict)
Dmodulefinder.py291 for suff in suffixes:
292 n = len(suff)
293 if name[-n:] == suff:
/external/angle/third_party/vulkan-deps/glslang/src/Test/
DtokenPaste.vert89 #define M_NEST2(q) int q ## suff
/external/deqp-deps/glslang/Test/
DtokenPaste.vert89 #define M_NEST2(q) int q ## suff
/external/clang/lib/Edit/
DRewriteObjCFoundationAPI.cpp700 static bool has(StringRef suff, StringRef &text) { in getLiteralInfo()
701 if (text.endswith(suff)) { in getLiteralInfo()
702 text = text.substr(0, text.size()-suff.size()); in getLiteralInfo()

123