/libcore/luni/src/main/java/java/util/ |
HashMap.java | 70 * An empty table shared by all zero-capacity maps (typically from default 73 * minimum-sized table. 91 * The hash table. If this hash map contains a mapping for null, it is 92 * not represented this hash table. 94 transient HashMapEntry<K, V>[] table; field in class:HashMap 113 * The table is rehashed when its size exceeds this threshold. 130 table = (HashMapEntry<K, V>[]) EMPTY_TABLE; 150 table = tab; 245 result.makeTable(table.length); 306 HashMapEntry<K, V>[] tab = table; [all...] |
Hashtable.java | 55 * An empty table shared by all zero-capacity maps (typically from default 58 * minimum-sized table. 76 * The hash table. 78 private transient HashtableEntry<K, V>[] table; field in class:Hashtable 92 * The table is rehashed when its size exceeds this threshold. 110 table = (HashtableEntry<K, V>[]) EMPTY_TABLE; 129 table = tab; 223 result.makeTable(table.length); 271 HashtableEntry<K, V>[] tab = table; 299 HashtableEntry<K, V>[] tab = table; [all...] |
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
SmsProvider.java | 345 String table = TABLE_SMS; local 383 table = "raw"; 387 table = "sr_pending"; 391 table = "attachments"; 395 table = "canonical_addresses"; 405 if (table.equals(TABLE_SMS)) { 490 rowID = db.insert(table, "body", values); 492 // Don't use a trigger for updating the words table because of a bug 495 if (table == TABLE_SMS) { 496 // Update the words table with a corresponding row. The words tabl 609 String table = TABLE_SMS; local [all...] |
/external/chromium/third_party/icu/source/tools/toolutil/ |
ucm.h | 46 * according to the state table 128 /* @return -1 illegal bytes 0 suitable for base table 1 needs to go into extension table */ 135 /* add a mapping to the base or extension table as appropriate */ 150 ucm_closeTable(UCMTable *table); 153 ucm_resetTable(UCMTable *table); 159 * Remove mappings with their move flag set from the base table 160 * and move some of them (with UCM_MOVE_TO_EXT) to the extension table. 166 * Read a table from a .ucm file, from after the CHARMAP line to 175 * Check the validity of mappings against a base table's states [all...] |
/external/icu4c/tools/toolutil/ |
ucm.h | 46 * according to the state table 128 /* @return -1 illegal bytes 0 suitable for base table 1 needs to go into extension table */ 135 /* add a mapping to the base or extension table as appropriate */ 150 ucm_closeTable(UCMTable *table); 153 ucm_resetTable(UCMTable *table); 159 * Remove mappings with their move flag set from the base table 160 * and move some of them (with UCM_MOVE_TO_EXT) to the extension table. 166 * Read a table from a .ucm file, from after the CHARMAP line to 175 * Check the validity of mappings against a base table's states [all...] |
/libcore/luni/src/main/java/org/apache/xml/utils/ |
NamespaceSupport2.java | 575 Hashtable table; local 577 // Select the appropriate table. 581 table = elementNameTable; 585 table = attributeNameTable; 591 name = (String[])table.get(qName); 632 table.put(name[2], name);
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
NamespaceSupport.java | 648 Hashtable table; 653 // Select the appropriate table. 655 table = attributeNameTable; 657 table = elementNameTable; 663 name = (String[])table.get(qName); 712 table.put(name[2], name); 642 Hashtable table; local
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/ |
SectionHelper.java | 151 * through the setLayoutData method. In some case, creating it will make the table parent 195 Composite table = toolkit.createComposite(composite); local 198 table.setLayout(layout); 199 toolkit.paintBordersFor(table); 201 ((Section) composite).setClient(table); 203 return table; 329 * through the setLayoutData method. In some case, creating it will make the table parent
|
/external/bison/src/ |
tables.c | 123 /* TABLE_SIZE is the allocated size of both TABLE and CHECK. We start 127 base_number *table; variable 129 /* The value used in TABLE to denote explicit syntax errors 141 | If TABLE (and CHECK) appear to be small to be addressed at | 142 | DESIRED, grow them. Note that TABLE[DESIRED] is to be used, so | 155 fprintf (stderr, "growing table and check from: %d to %d\n", 158 table = xnrealloc (table, table_size, sizeof *table); 165 table[old_size] = 0 [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/ |
DERBitString.java | 12 private static final char[] table = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; field in class:DERBitString 255 buf.append(table[(string[i] >>> 4) & 0xf]); 256 buf.append(table[string[i] & 0xf]);
|
/external/kernel-headers/original/linux/netfilter_arp/ |
arp_tables.h | 138 /* Which table: caller fills this in. */ 161 /* Which table. */ 196 /* Which table: user fills this in. */ 244 extern int arpt_register_table(struct arpt_table *table, 246 extern void arpt_unregister_table(struct arpt_table *table); 251 struct arpt_table *table,
|
/external/kernel-headers/original/linux/netfilter_ipv6/ |
ip6_tables.h | 2 * 25-Jul-1998 Major changes to allow for ip chain table 161 /* Which table: caller fills this in. */ 184 /* Which table. */ 219 /* Which table: user fills this in. */ 296 extern int ip6t_register_table(struct ip6t_table *table, 298 extern void ip6t_unregister_table(struct ip6t_table *table); 303 struct ip6t_table *table,
|
/bionic/libc/bionic/ |
pthread-timers.c | 122 /** GLOBAL TABLE OF THREAD TIMERS 232 /* the static timer table - we only create it if the process 267 thr_timer_table_t* table = __timer_table_get(); local 268 thr_timer_table_start_stop(table, stop); 275 thr_timer_table_t* table = __timer_table_get(); local 276 thr_timer_t* timer = thr_timer_table_from_id( table, id, 0 ); 329 thr_timer_table_t* table = __timer_table_get(); local 330 thr_timer_t* timer = thr_timer_table_alloc( table ); 385 thr_timer_table_t* table = __timer_table_get(); local 386 thr_timer_t* timer = thr_timer_table_from_id(table, id, 1) [all...] |
/dalvik/vm/mterp/armv5te/ |
OP_IPUT_OBJECT_QUICK.S | 13 ldr r2, [rGLUE, #offGlue_cardTable] @ r2<- card table base
|
OP_NEW_ARRAY.S | 52 mov r2, #ALLOC_DONT_TRACK @ don't track in local refs table
|
/external/openssl/apps/ |
passwd.c | 43 char *passwd, BIO *out, int quiet, int table, int reverse, 54 * -table - format output as table 55 * -reverse - switch table columns 72 int passed_salt = 0, quiet = 0, table = 0, reverse = 0; local 139 else if (strcmp(argv[i], "-table") == 0) 140 table = 1; 185 BIO_printf(bio_err, "-table format output as table\n"); 186 BIO_printf(bio_err, "-reverse switch table columns\n") [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/ |
SDL_blit_0.c | 43 map = info->table; 97 map = (Uint16 *)info->table; 131 map = info->table; 169 map = (Uint32 *)info->table; 199 Uint8 *palmap = info->table; 251 Uint8 *palmap = info->table; 285 Uint8 *palmap = info->table; 318 Uint8 *palmap = info->table;
|
SDL_blit_1.c | 47 map = info->table; 94 map = (Uint16 *)info->table; 203 map = info->table; 248 map = (Uint32 *)info->table; 284 Uint8 *palmap = info->table; 326 Uint16 *palmap = (Uint16 *)info->table; 355 Uint8 *palmap = info->table; 385 Uint32 *palmap = (Uint32 *)info->table;
|
/external/webkit/WebCore/accessibility/gtk/ |
AccessibilityObjectWrapperAtk.cpp | 136 static AccessibilityObject* core(AtkTable* table) 138 return core(ATK_OBJECT(table)); 625 0 /* value table */ [all...] |
/external/webkit/WebCore/rendering/ |
RenderTableSection.h | 54 RenderTable* table() const { return toRenderTable(parent()); } function in class:WebCore::RenderTableSection 100 table()->setNeedsSectionRecalc();
|
/external/webkit/WebKitTools/QueueStatusServer/model/ |
attachment.py | 79 table = { 83 state = table.get(status.message)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
UiElementDetail.java | 229 // Before changing the table, commit all dirty state. 245 // creation of the master table. 296 Composite table = useSubsections ? null : masterTable; local 302 } else if (table == null || attr_desc instanceof SeparatorAttributeDescriptor) { 311 table = createSubSectionTable(toolkit, masterTable, title); 320 ui_attr.createUiControl(table, managedForm); 324 ((Section) table.getParent()).setExpanded(true); 367 * Create a sub Section and its embedding wrapper table with 2 columns. 368 * @return The table, child of a new section. 374 // if the parent is a table with more than one column an extra table with one colum 385 Composite table; local [all...] |
/external/icu4c/common/ |
unorm.cpp | 301 const uint16_t *table; local 312 table=canonStartSets+canonStartSets[_NORM_SET_INDEX_CANON_SETS_LENGTH]; 319 if(c<table[i]) { 327 if(c==table[start]) { 328 i=table[start+1]; 344 table=canonStartSets+canonStartSets[_NORM_SET_INDEX_CANON_SETS_LENGTH]+ 355 h=table[i]&0x1f; /* high word */ 356 if(high<h || (high==h && low<table[i+1])) { 364 h=table[start]; 365 if(high==(h&0x1f) && low==table[start+1]) [all...] |
/external/skia/src/core/ |
SkBitmapProcState.cpp | 149 #define PREAMBLE(state) const SkPMColor* SK_RESTRICT table = state.fBitmap->getColorTable()->lockColors() 150 #define RETURNDST(src) table[src] 151 #define SRC_TO_FILTER(src) table[src] 164 const SkPMColor* SK_RESTRICT table = state.fBitmap->getColorTable()->lockColors() 165 #define RETURNDST(src) SkAlphaMulQ(table[src], alphaScale) 166 #define SRC_TO_FILTER(src) table[src] 276 #define PREAMBLE(state) const uint16_t* SK_RESTRICT table = state.fBitmap->getColorTable()->lock16BitCache() 277 #define RETURNDST(src) table[src] 278 #define SRC_TO_FILTER(src) table[src] 331 #define PREAMBLE(state) const SkPMColor* SK_RESTRICT table = state.fBitmap->getColorTable()->lockColors( [all...] |
/external/v8/src/ |
unicode.cc | 48 // All access to the character table should go through this function. 50 static inline uchar TableGet(const int32_t* table, int index) { 51 return table[D * index]; 63 * Look up a character in the unicode table using a mix of binary and 67 * high values in the lower end of the table so this function uses a 72 static bool LookupPredicate(const int32_t* table, uint16_t size, uchar chr) { 79 uchar current_value = GetEntry(TableGet<kEntryDist>(table, mid)); 84 GetEntry(TableGet<kEntryDist>(table, mid + 1)) > value)) { 96 int32_t field = TableGet<kEntryDist>(table, low); 109 // Look up the mapping for the given character in the specified table, [all...] |