/ndk/sources/cxx-stl/stlport/src/ |
D | time_facets.cpp | 69 static void _Init_timeinfo_base(_Time_Info_Base& table) { in _Init_timeinfo_base() argument 70 table._M_time_format = "%H:%M:%S"; in _Init_timeinfo_base() 71 table._M_date_format = "%m/%d/%y"; in _Init_timeinfo_base() 72 table._M_date_time_format = "%m/%d/%y"; in _Init_timeinfo_base() 75 static void _Init_timeinfo(_Time_Info& table) { in _Init_timeinfo() argument 78 table._M_dayname[i] = default_dayname[i]; in _Init_timeinfo() 80 table._M_monthname[i] = default_monthname[i]; in _Init_timeinfo() 81 table._M_am_pm[0] = "AM"; in _Init_timeinfo() 82 table._M_am_pm[1] = "PM"; in _Init_timeinfo() 83 _Init_timeinfo_base(table); in _Init_timeinfo() [all …]
|
D | ctype.cpp | 380 const ctype_base::mask* table; member 383 : M(m), table(t) {} in _Ctype_w_is_mask() 385 { return _WCharIndex::in_range(c, ctype<char>::table_size) && (table[c] & M); } in operator ()() 395 const ctype_base::mask * table = ctype<char>::classic_table(); in do_is() local 396 return _WCharIndex::in_range(c, ctype<char>::table_size) && (m & table[c]); in do_is() 402 const ctype_base::mask * table = ctype<char>::classic_table(); in do_is() local 406 *vec = _WCharIndex::in_range(c, ctype<char>::table_size) ? table[c] : ctype_base::mask(0); in do_is()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/ |
D | table.pass.cpp | 25 assert(f.table() == f.classic_table()); in main() 28 std::ctype<char>::mask table[256]; in main() local 29 std::locale l(std::locale::classic(), new std::ctype<char>(table)); in main() 31 assert(f.table() == table); in main()
|
/ndk/sources/android/support/src/musl-ctype/ |
D | iswpunct.c | 3 static const unsigned char table[] = { variable 10 return (table[table[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1; in iswpunct()
|
D | iswalpha.c | 3 static const unsigned char table[] = { variable 10 return (table[table[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1; in iswalpha()
|
D | wcwidth.c | 3 static const unsigned char table[] = { variable 16 if ((table[table[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1) in wcwidth()
|
/ndk/sources/host-tools/make-3.81/ |
D | variable.c | 150 hash_init (&global_variable_set.table, VARIABLE_BUCKETS, in init_hash_global_variable_set() 176 var_slot = (struct variable **) hash_find_slot (&set->table, &var_key); in define_variable_in_set() 212 hash_insert_at (&set->table, v, var_slot); in define_variable_in_set() 287 && global_variable_set.table.ht_fill != last_var_count) in handle_special_var() 292 struct variable **vp = (struct variable **) global_variable_set.table.ht_vec; in handle_special_var() 293 struct variable **end = &vp[global_variable_set.table.ht_size]; in handle_special_var() 327 last_var_count = global_variable_set.table.ht_fill; in handle_special_var() 354 v = (struct variable *) hash_find_item ((struct hash_table *) &set->table, &var_key); in lookup_variable() 432 return (struct variable *) hash_find_item ((struct hash_table *) &set->table, &var_key); in lookup_variable_in_set() 454 hash_init (&l->set->table, PERFILE_VARIABLE_BUCKETS, in initialize_file_variables() [all …]
|
D | variable.h | 86 struct hash_table table; /* Hash table of variables. */ member
|
D | getloadavg.c | 792 table (TBL_LOADAVG, 0, &load_ave, 1, sizeof (load_ave)); in getloadavg() 813 table (TBL_LOADAVG, 0, &load_ave, 1, sizeof (load_ave)); in getloadavg()
|
/ndk/sources/host-tools/nawk-20071023/ |
D | maketab.c | 110 const char *table[SIZE]; variable 160 table[p->token-FIRSTTOKEN] = p->name; in main() 163 if (table[i]==0) in main() 166 printf("\t%s,\t/* %s */\n", table[i], names[i]); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.dtor/ |
D | dtor.pass.cpp | 42 std::ctype<char>::mask table[256]; in main() local 44 std::locale l(std::locale::classic(), new std::ctype<char>(table)); in main()
|
/ndk/docs/renderscript/ |
D | tabs.css | 18 display: table; 23 display: table-cell;
|
D | doxygen.css | 3 body, table, div, p, dl { selector 341 table.memberdecls { 614 table.doxtable { 618 table.doxtable td, table.doxtable th { 623 table.doxtable th { 632 table.fieldtable {
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
D | new5.cpp | 19 X table; in main() local
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
D | new5.cpp | 19 X table; in main() local
|
/ndk/sources/android/crazy_linker/ |
D | DESIGN.TXT | 56 - A table (called the "program header table"), containing entries describing 59 - A table (called the "dynamic table"), containing entries describing 63 - A table describing the symbols (function or global names) that the library 75 This step parses the program header table to identify 'loadable' segments, 84 This step parses the dynamic table to identify all the other shared
|
/ndk/sources/android/support/src/wcstox/ |
D | intscan.c | 35 static const unsigned char table[] = { -1, variable 56 const unsigned char *val = table+1; in __intscan()
|
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
D | filter-out | 9 also added to the text argument. This tests an internal hash table
|
/ndk/sources/host-tools/make-3.81/doc/ |
D | make-stds.texi | 313 @table @code 340 @end table 344 @table @code 373 @end table 398 @table @samp 452 @end table 459 @table @samp 551 @end table 555 @table @samp 586 @end table [all …]
|
/ndk/sources/host-tools/sed-4.2.1/doc/ |
D | sed.texi | 192 @table @code 370 @end table 458 @table @code 567 @end table 602 @table @code 624 @end table 661 @table @code 805 @end table 814 @table @samp 875 @end table [all …]
|
D | sed-in.texi | 191 @table @code 369 @end table 457 @table @code 566 @end table 601 @table @code 623 @end table 660 @table @code 804 @end table 813 @table @samp 874 @end table [all …]
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | regex_internal.h | 835 const int32_t *table, *indirect; in internal_function() local 842 table = (const int32_t *) _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEMB); in internal_function()
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
D | binary.sed | 157 # remove the table and leading zeros. If result is 0000...0, \3 matches
|
D | binary2.sed | 191 # remove the table and leading zeros. If result is 0000...0, \3 matches
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _ctype.h | 118 const mask* table() const _STLP_NOTHROW { return _M_ctype_table; } in table() function
|