/external/svox/pico/lib/ |
D | picobase.c | 101 picoos_uint32 lc; in base_utf32_lowercase() local 103 lc = utf32; in base_utf32_lowercase() 105 lc = (utf32 + 32); in base_utf32_lowercase() 107 lc = (utf32 + 40); in base_utf32_lowercase() 132 lc = (utf32 + 1); in base_utf32_lowercase() 142 lc = (utf32 - 8); in base_utf32_lowercase() 146 lc = (utf32 - 8); in base_utf32_lowercase() 151 lc = (utf32 + 16); in base_utf32_lowercase() 156 lc = (utf32 + 26); in base_utf32_lowercase() 159 lc = 8112; in base_utf32_lowercase() [all …]
|
/external/eigen/bench/btl/data/ |
D | perlib_plot_settings.txt | 1 eigen3 ; with lines lw 4 lt 1 lc rgbcolor "black" 2 eigen2 ; with lines lw 3 lt 1 lc rgbcolor "#999999" 3 EigenBLAS ; with lines lw 3 lt 3 lc rgbcolor "#999999" 4 eigen3_novec ; with lines lw 2 lt 1 lc rgbcolor "#999999" 5 eigen3_nogccvec ; with lines lw 2 lt 2 lc rgbcolor "#991010" 6 INTEL_MKL ; with lines lw 3 lt 1 lc rgbcolor "#ff0000" 7 ATLAS ; with lines lw 3 lt 1 lc rgbcolor "#008000" 8 gmm ; with lines lw 3 lt 1 lc rgbcolor "#0000ff" 9 ublas ; with lines lw 3 lt 1 lc rgbcolor "#00b7ff" 10 mtl4 ; with lines lw 3 lt 1 lc rgbcolor "#d18847" [all …]
|
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/ |
D | LoginContext1Test.java | 831 LoginContext lc = new LoginContext(CONFIG_NAME); in testLogin_minus1() local 832 lc.login(); in testLogin_minus1() 853 LoginContext lc = new LoginContext(CONFIG_NAME); in testLogin_00() local 854 lc.login(); in testLogin_00() 855 lc.login(); in testLogin_00() 867 LoginContext lc = new LoginContext(CONFIG_NAME); in testLogin_01() local 868 lc.login(); in testLogin_01() 869 Subject subj0 = lc.getSubject(); in testLogin_01() 871 lc.logout(); in testLogin_01() 873 lc.login(); in testLogin_01() [all …]
|
/external/elfutils/libelf-po/ |
D | Makefile.in | 123 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ 124 if test -n "$$lc"; then \ 125 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu… 126 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 127 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 128 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 129 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 132 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 135 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 137 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ [all …]
|
D | Makefile | 149 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ 150 if test -n "$$lc"; then \ 151 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu… 152 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 153 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 154 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 155 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 158 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 161 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 163 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ [all …]
|
D | Makefile.in.in | 123 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ 124 if test -n "$$lc"; then \ 125 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu… 126 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 127 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 128 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 129 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 132 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 135 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 137 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ [all …]
|
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/ |
D | LanguageCallbackTest.java | 36 LanguageCallback lc; field in LanguageCallbackTest 42 lc = new LanguageCallback(); in testLanguageCallback_01() 44 lc.setLocale(locale); in testLanguageCallback_01() 45 assertEquals("US", lc.getLocale().getCountry()); in testLanguageCallback_01() 52 lc = new LanguageCallback(); in testLanguageCallback_02() 53 assertNull(lc.getLocale()); in testLanguageCallback_02() 55 lc.setLocale(null); in testLanguageCallback_02()
|
/external/v8/test/mjsunit/ |
D | regexp-multiline.js | 82 function check_case(lc, uc) { argument 83 var a = new RegExp("^" + lc + "$"); 85 a = new RegExp("^" + lc + "$", "i"); 89 assertFalse(A.test(lc)); 91 assertTrue(A.test(lc)); 93 a = new RegExp("^[" + lc + "]$"); 95 a = new RegExp("^[" + lc + "]$", "i"); 99 assertFalse(A.test(lc)); 101 assertTrue(A.test(lc));
|
D | regexp-multiline-stack-trace.js | 86 function check_case(lc, uc) { argument 87 var a = new RegExp("^" + lc + "$"); 89 a = new RegExp("^" + lc + "$", "i"); 93 assertFalse(A.test(lc)); 95 assertTrue(A.test(lc)); 97 a = new RegExp("^[" + lc + "]$"); 99 a = new RegExp("^[" + lc + "]$", "i"); 103 assertFalse(A.test(lc)); 105 assertTrue(A.test(lc));
|
/external/webkit/Source/WebKit/gtk/po/ |
D | GNUmakefile.am | 142 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ 143 if test -n "$$lc"; then \ 144 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu… 145 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 146 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 147 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 148 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 151 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 154 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 156 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ [all …]
|
/external/stlport/src/c_locale_win32/ |
D | c_locale_win32.c | 184 _Locale_lcid_t lc; member 190 _Locale_lcid_t lc; member 198 _Locale_lcid_t lc; member 214 _Locale_lcid_t lc; member 219 _Locale_lcid_t lc; member 269 { return (ltype != 0) ? <ype->lc : 0; } in _Locale_get_ctype_hint() 271 { return (lnumeric != 0) ? &lnumeric->lc : 0; } in _Locale_get_numeric_hint() 273 { return (ltime != 0) ? <ime->lc : 0; } in _Locale_get_time_hint() 275 { return (lcollate != 0) ? &lcollate->lc : 0; } in _Locale_get_collate_hint() 277 { return (lmonetary != 0) ? &lmonetary->lc : 0; } in _Locale_get_monetary_hint() [all …]
|
D | c_wlocale_win32.c | 26 _Locale_lcid_t lc; member 49 LCMapStringW(ltype->lc.id, LCMAP_LOWERCASE, &in_c, 1, &res, 1); in _WLocale_tolower() 57 LCMapStringW(ltype->lc.id, LCMAP_UPPERCASE, &in_c, 1, &res, 1); in _WLocale_toupper() 72 if (__GetLCIDFromName(name, &lcodecvt->lc.id, cp_name, lc_hint) == -1) in _Locale_codecvt_create() 95 return __GetLocaleName(lcodecvt->lc.id, cp_buf, buf); in _Locale_codecvt_name() 204 result = CompareStringW(lcol->lc.id, 0, s1, size1, s2, size2); in _WLocale_strcmp_aux() 236 result = LCMapStringW(lcol->lc.id, LCMAP_SORTKEY, src, (int)src_size, dst, (int)dst_size); in _WLocale_strxfrm() 248 GetLocaleInfoW(lnum->lc.id, LOCALE_SDECIMAL, buf, 4); in _WLocale_decimal_point() 254 GetLocaleInfoW(lnum->lc.id, LOCALE_STHOUSAND, buf, 4); in _WLocale_thousands_sep() 274 { GetLocaleInfoW(lmon->lc.id, LOCALE_SINTLSYMBOL, buf, (int)bufSize); return buf; } in _WLocale_int_curr_symbol() [all …]
|
/external/qemu/distrib/sdl-1.2.15/src/loadso/macosx/ |
D | SDL_dlcompat.c | 593 struct load_command *lc = 0; in search_linked_libs() local 598 lc = (struct load_command *)((char *)mh + sizeof(struct mach_header)); in search_linked_libs() 599 for (n = 0; n < mh->ncmds; n++, lc = (struct load_command *)((char *)lc + lc->cmdsize)) in search_linked_libs() 601 if ((LC_LOAD_DYLIB == lc->cmd) || (LC_LOAD_WEAK_DYLIB == lc->cmd)) in search_linked_libs() 604 my_find_image((char *)(((struct dylib_command *)lc)->dylib.name.offset + in search_linked_libs() 605 (char *)lc)))) in search_linked_libs() 1195 struct load_command *lc = 0; in image_for_address() local 1203 lc = (struct load_command *)((char *)mh + sizeof(struct mach_header)); in image_for_address() 1204 for (j = 0; j < mh->ncmds; j++, lc = (struct load_command *)((char *)lc + lc->cmdsize)) in image_for_address() 1206 if (LC_SEGMENT == lc->cmd && in image_for_address() [all …]
|
/external/webkit/Tools/android/flex-2.5.4a/MISC/fastwc/ |
D | wc4.l | 9 int cc = 0, wc = 0, lc = 0; 12 {word}{ws}*\n ++wc; cc += yyleng; ++lc; 14 {words}{word}{ws}*\n wc += 2; cc += yyleng; ++lc; 16 {words}{2}{word}{ws}*\n wc += 3; cc += yyleng; ++lc; 18 {words}{3}{word}{ws}*\n wc += 4; cc += yyleng; ++lc; 22 \n+ cc += yyleng; lc += yyleng; 25 printf( "%8d %8d %8d\n", lc, wc, cc );
|
D | wc2.l | 8 int cc = 0, wc = 0, lc = 0; 11 {word}{ws}*\n cc += yyleng; ++wc; ++lc; 15 \n+ cc += yyleng; lc += yyleng; 18 printf( "%8d %8d %8d\n", lc, wc, cc );
|
D | wc3.l | 9 int cc = 0, wc = 0, lc = 0; 12 {word}{ws}*\n cc += yyleng; ++wc; ++lc; 19 \n+ cc += yyleng; lc += yyleng; 22 printf( "%8d %8d %8d\n", lc, wc, cc );
|
/external/v8/tools/ |
D | gc-nvp-trace-processor.py | 238 Plot(Item('Scavenge', scavenge_scope, lc = 'green'), 239 Item('Marking', 'mark', lc = 'purple'), 240 Item('Sweep', 'sweep', lc = 'blue'), 241 Item('External', 'external', lc = '#489D43'), 242 Item('Other', other_scope, lc = 'grey'), 243 Item('IGC Steps', 'stepstook', lc = '#FF6347')) 249 Plot(Item('Scavenge', scavenge_scope, lc = 'green'), 250 Item('Marking', 'mark', lc = 'purple'), 251 Item('Sweep', 'sweep', lc = 'blue'), 252 Item('External', 'external', lc = '#489D43'), [all …]
|
/external/skia/src/core/ |
D | SkTSearch.cpp | 68 return SkStrSearch(base, count, tolc.lc(), len, elemSize); in SkStrLCSearch() 89 char* lc; in SkAutoAsciiToLC() local 91 lc = fStorage; in SkAutoAsciiToLC() 93 lc = (char*)sk_malloc_throw(len + 1); in SkAutoAsciiToLC() 95 fLC = lc; in SkAutoAsciiToLC() 104 lc[i] = c; in SkAutoAsciiToLC() 106 lc[len] = 0; in SkAutoAsciiToLC()
|
/external/e2fsprogs/po/ |
D | Makefile.in.in | 174 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ 175 if test -n "$$lc"; then \ 176 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu… 177 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 178 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 179 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 180 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 183 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 186 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 188 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ [all …]
|
/external/elfutils/po/ |
D | Makefile.in.in | 204 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ 205 if test -n "$$lc"; then \ 206 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu… 207 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 208 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 209 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 210 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 213 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 216 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 218 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ [all …]
|
/external/libmtp/src/ |
D | util.c | 75 uint32_t ln, lc; in data_dump_ascii() local 79 lc = 0; in data_dump_ascii() 87 fprintf(f, "%02x", bp[16*lc+i]); in data_dump_ascii() 97 unsigned char ch= bp[16*lc+i]; in data_dump_ascii() 103 lc++; in data_dump_ascii()
|
/external/bison/po/ |
D | Makefile.in.in | 237 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ 238 if test -n "$$lc"; then \ 239 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu… 240 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 241 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 242 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 243 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 246 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 249 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 251 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ [all …]
|
/external/bison/runtime-po/ |
D | Makefile.in.in | 237 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ 238 if test -n "$$lc"; then \ 239 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu… 240 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 241 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 242 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 243 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 246 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 249 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 251 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | onyx_if.c | 217 LAYER_CONTEXT *lc = &cpi->layer_context[cpi->current_layer]; in save_layer_context() local 220 lc->target_bandwidth = cpi->target_bandwidth; in save_layer_context() 221 lc->starting_buffer_level = cpi->oxcf.starting_buffer_level; in save_layer_context() 222 lc->optimal_buffer_level = cpi->oxcf.optimal_buffer_level; in save_layer_context() 223 lc->maximum_buffer_size = cpi->oxcf.maximum_buffer_size; in save_layer_context() 224 lc->starting_buffer_level_in_ms = cpi->oxcf.starting_buffer_level_in_ms; in save_layer_context() 225 lc->optimal_buffer_level_in_ms = cpi->oxcf.optimal_buffer_level_in_ms; in save_layer_context() 226 lc->maximum_buffer_size_in_ms = cpi->oxcf.maximum_buffer_size_in_ms; in save_layer_context() 227 lc->buffer_level = cpi->buffer_level; in save_layer_context() 228 lc->bits_off_target = cpi->bits_off_target; in save_layer_context() [all …]
|
/external/valgrind/main/coregrind/m_ume/ |
D | macho.c | 489 struct load_command *lc; in load_thin_file() local 549 for (lc = (struct load_command *)(headers + sizeof(mh)); in load_thin_file() 550 lc < lcend; in load_thin_file() 551 lc = (struct load_command *)(lc->cmdsize + (vki_uint8_t *)lc)) in load_thin_file() 553 if ((vki_uint8_t *)lc < headers || in load_thin_file() 554 lc->cmdsize+(vki_uint8_t *)lc > headers_end) { in load_thin_file() 559 switch (lc->cmd) { in load_thin_file() 564 = (struct entry_point_command*)lc; in load_thin_file() 578 if (lc->cmdsize < sizeof(struct SEGMENT_COMMAND)) { in load_thin_file() 582 segcmd = (struct SEGMENT_COMMAND *)lc; in load_thin_file() [all …]
|