/external/python/cpython2/Tools/scripts/ |
D | suff.py | 13 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/ |
D | arm-thunk-linkerscript-large.s | 26 .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\():
|
D | arm-thumb-mix-range-thunk-os.s | 27 .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\():
|
D | arm-thunk-linkerscript-sort.s | 16 .macro FUNCTION suff argument 17 .section .text.\suff\(), "ax", %progbits 20 .globl tfunc\suff\() 21 .type tfunc\suff\(), %function 22 tfunc\suff\():
|
D | arm-thumb-condbranch-thunk.s | 20 .macro FUNCTION suff argument 21 .section .text.\suff\(), "ax", %progbits 24 .globl tfunc\suff\() 25 .type tfunc\suff\(), %function 26 tfunc\suff\():
|
D | arm-thunk-multipass.s | 13 .macro FUNCTION suff argument 14 .section .text.\suff\(), "ax", %progbits 17 .globl tfunc\suff\() 18 .type tfunc\suff\(), %function 19 tfunc\suff\():
|
D | arm-thumb-range-thunk-os.s | 25 .macro FUNCTION suff argument 26 .section .text.\suff\(), "ax", %progbits 29 .globl tfunc\suff\() 30 .type tfunc\suff\(), %function 31 tfunc\suff\():
|
D | arm-thunk-re-add.s | 17 .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/ |
D | suff.py | 14 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/ |
D | utypes.h | 163 #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/ |
D | utypes.h | 163 #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/ |
D | utypes.h | 163 #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/ |
D | utypes.h | 163 #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/ |
D | version.c | 217 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/ |
D | PathBrowser.py | 82 for suff, mode, flag in suffixes: 83 i = -len(suff) 86 if normed_name[i:] == suff:
|
/external/python/cpython3/Lib/idlelib/ |
D | pathbrowser.py | 88 for suff in suffixes: 89 i = -len(suff) 92 if normed_name[i:] == suff:
|
/external/toybox/toys/pending/ |
D | diff.c | 64 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/ |
D | ihooks.py | 252 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
|
D | mimetypes.py | 225 for suff in suffixes: 226 self.add_type(type, '.' + suff, strict)
|
D | modulefinder.py | 262 for suff in suffixes: 263 n = len(suff) 264 if name[-n:] == suff:
|
/external/python/cpython3/Lib/ |
D | mimetypes.py | 228 for suff in suffixes: 229 self.add_type(type, '.' + suff, strict)
|
D | modulefinder.py | 291 for suff in suffixes: 292 n = len(suff) 293 if name[-n:] == suff:
|
/external/angle/third_party/vulkan-deps/glslang/src/Test/ |
D | tokenPaste.vert | 89 #define M_NEST2(q) int q ## suff
|
/external/deqp-deps/glslang/Test/ |
D | tokenPaste.vert | 89 #define M_NEST2(q) int q ## suff
|
/external/clang/lib/Edit/ |
D | RewriteObjCFoundationAPI.cpp | 700 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()
|