/external/webkit/Source/WebCore/rendering/ |
RenderTableSection.h | 54 RenderTable* table() const { return toRenderTable(parent()); } function in class:WebCore::RenderTableSection
|
/external/webkit/Source/WebKit/gtk/webkit/ |
webkitsoupauthdialog.c | 159 table_add_entry(GtkWidget* table, 177 gtk_table_attach(GTK_TABLE(table), label, 180 gtk_table_attach_defaults(GTK_TABLE(table), entry, 206 GtkWidget* table; local 272 /* The table that holds the entries */ 285 table = gtk_table_new(hasRealm ? 3 : 2, 2, FALSE); 286 gtk_table_set_col_spacings(GTK_TABLE(table), 12); 287 gtk_table_set_row_spacings(GTK_TABLE(table), 6); 288 gtk_container_add(GTK_CONTAINER(entryContainer), table); local 298 gtk_table_attach_defaults(GTK_TABLE(table), serverMessageDescriptionLabel [all...] |
webkitwebhistoryitem.cpp | 91 GHashTable* table = webkit_history_items(); local 92 g_hash_table_insert(table, historyItem, webHistoryItem); 517 GHashTable* table = webkit_history_items(); local 518 WebKitWebHistoryItem* webHistoryItem = (WebKitWebHistoryItem*) g_hash_table_lookup(table, item.get());
|
/external/zlib/src/test/ |
infcover.c | 622 code *next, table[ENOUGH_DISTS]; local 629 next = table; 633 next = table;
|
/libcore/luni/src/main/java/java/lang/ |
ThreadLocal.java | 56 Object[] table = values.table; local 58 if (this.reference == table[index]) { 59 return (T) table[index + 1]; 134 * (hash & (table.length - 1)) points to a key and not a value. 160 private Object[] table; field in class:ThreadLocal.Values 190 this.table = fromParent.table.clone(); 205 Object[] table = this.table; local 268 Object[] table = this.table; local 425 Object[] table = this.table; local [all...] |
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/ |
mySSLSession.java | 26 private Hashtable table; field in class:mySSLSession 37 table = new Hashtable(); 128 Object obj1 = table.put(s, obj); 142 Object obj = table.remove(s); 153 return table.get(s); 159 Enumeration enumeration = table.keys();
|
/ndk/sources/cxx-stl/stlport/src/ |
time_facets.cpp | 65 // _Init_time_info: initialize table with 69 static void _Init_timeinfo_base(_Time_Info_Base& table) { 70 table._M_time_format = "%H:%M:%S"; 71 table._M_date_format = "%m/%d/%y"; 72 table._M_date_time_format = "%m/%d/%y"; 75 static void _Init_timeinfo(_Time_Info& table) { 78 table._M_dayname[i] = default_dayname[i]; 80 table._M_monthname[i] = default_monthname[i]; 81 table._M_am_pm[0] = "AM"; 82 table._M_am_pm[1] = "PM" 149 const string& format, const _TimeInfo& table, const tm* t) { variable 216 const _TimeInfo& table, const tm* t) { variable [all...] |
/ndk/sources/host-tools/make-3.81/ |
variable.h | 45 Each bucket of the hash table is a chain of these, 86 struct hash_table table; /* Hash table of variables. */ member in struct:variable_set
|
/packages/apps/Browser/src/com/android/browser/ |
PageDialogsHandler.java | 353 LinearLayout table = (LinearLayout)factory.inflate(R.layout.ssl_success, placeholder); local 354 TextView successString = (TextView)table.findViewById(R.id.success);
|
/packages/apps/Exchange/exchange2/tests/src/com/android/exchange/provider/ |
MockProvider.java | 68 /*package*/ static final int TABLE = 100; 118 String table = uri.getPath().substring(1); local 120 Uri newUri = new Uri.Builder().scheme("content").authority(AUTHORITY).path(table) 127 sURIMatcher.addURI(AUTHORITY, table, TABLE); 128 sURIMatcher.addURI(AUTHORITY, table + "/#", RECORD); 147 case TABLE: 186 case TABLE:
|
/packages/apps/Exchange/tests/src/com/android/exchange/provider/ |
MockProvider.java | 68 /*package*/ static final int TABLE = 100; 118 String table = uri.getPath().substring(1); local 120 Uri newUri = new Uri.Builder().scheme("content").authority(AUTHORITY).path(table) 127 sURIMatcher.addURI(AUTHORITY, table, TABLE); 128 sURIMatcher.addURI(AUTHORITY, table + "/#", RECORD); 147 case TABLE: 186 case TABLE:
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
fib_rules.h | 23 __u8 table; member in struct:fib_rule_hdr 48 FRA_TABLE, /* Extended table id */ 58 FR_ACT_TO_TBL, /* Pass to fixed table */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
fib_rules.h | 23 __u8 table; member in struct:fib_rule_hdr 48 FRA_TABLE, /* Extended table id */ 58 FR_ACT_TO_TBL, /* Pass to fixed table */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
fib_rules.h | 23 __u8 table; member in struct:fib_rule_hdr 48 FRA_TABLE, /* Extended table id */ 58 FR_ACT_TO_TBL, /* Pass to fixed table */
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/ |
ApplicationToggle.java | 99 Composite table = createTableLayout(toolkit, 1 /* numColumns */); local 101 mTooltipFormText = createFormText(table, toolkit, true, "<form></form>", 105 mCheckbox = toolkit.createButton(table,
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/ |
SectionHelper.java | 153 * through the setLayoutData method. In some case, creating it will make the table parent 197 Composite table = toolkit.createComposite(composite); local 200 table.setLayout(layout); 201 toolkit.paintBordersFor(table); 203 ((Section) composite).setClient(table); 205 return table; 340 * through the setLayoutData method. In some case, creating it will make the table parent
|
UiElementPart.java | 37 * This part is designed to be displayed in a page that has a table column layout. 49 /** Table that contains all the attributes */ 138 * Sets the table where the attribute UI needs to be created. 140 protected void setTable(Composite table) { 141 mTable = table; 145 * Returns the table where the attribute UI needs to be created. 152 * Add all the attribute UI widgets into the underlying table layout. 157 Composite table = getTable(); local 158 if (table == null || managedForm == null) { 163 for (Control c : table.getChildren()) [all...] |
/external/bison/lib/ |
hash.c | 1 /* hash - hashing table processing. 20 /* A generic hash table package. */ 56 are not empty, there are N_ENTRIES active entries in the table. */ 86 /* A hash table contains many internal entries, each holding a pointer to 91 and the current table size. At each slot position in the hash table, 97 entries divided by the table size. Finding the slot for a data is usually 100 larger hash table size (that is, a larger number of buckets) is prone to 103 Long buckets slow down the lookup algorithm. One might use big hash table 105 become inordinate, as unused slots in the hash table take some space. Th 598 Hash_table *table; local [all...] |
/external/chromium/base/metrics/ |
stats_table.cc | 28 // | Thread names table | 30 // | Thread TID table | 32 // | Thread PID table | 34 // | Counter names table | 51 // the rows and columns of the table to particular threads, locking is 55 // shared-memory table only, and is used when we create new counters (e.g. 57 // data from the table does not require any locking at the shared memory 60 // Each process which accesses the table will create a StatsTable object. 61 // The StatsTable maintains a hash table of the existing counters in the 62 // table for faster lookup. Since the hash table is process specific 250 StatsTable* table; member in struct:base::StatsTable::TLSData 435 StatsTable *table = StatsTable::current(); local [all...] |
/external/chromium/chrome/browser/ui/gtk/bookmarks/ |
bookmark_editor_gtk.cc | 251 // |+- GtkTable |table| ------------------------------------------+| 289 GtkWidget* table; local 299 table = gtk_util::CreateLabeledControlsGroup(NULL, 308 table = gtk_util::CreateLabeledControlsGroup(NULL, 314 gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0); local
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
HtmlTooltipHelper.java | 11 package org.eclipse.wb.internal.core.model.property.table; 48 * @coverage core.model.property.table 62 String html = "<table cellspacing=2 cellpadding=0 border=0 margins=0 id=_wbp_tooltip_body>"; 67 html += "</table>";
|
/external/icu4c/common/ |
ucnv_bld.h | 99 void *table; /* Unused. This used to be a UConverterTable - Pointer to conversion data - see mbcs below */ member in struct:UConverterSharedData 120 * The table field above also remains to avoid updating all static
|
/external/icu4c/i18n/ |
uspoof_impl.cpp | 129 // Binary search the spoof data key table for the inChar 158 // table we need. See if there is an adjacent key that does 176 // No key entry for this char & table. 188 // an index into the string table (for longer strings) 196 // For these, get the real length from the string lengths table, 197 // which maps string table indexes to lengths. 198 // All strings of the same length are stored contiguously in the string table. 239 UTrie2 *table = local 244 uint32_t index = utrie2_get32(table, c); 933 // String Table Sectio [all...] |
/external/icu4c/tools/toolutil/ |
ucm.c | 64 ucm_printMapping(UCMTable *table, UCMapping *m, FILE *f) { 65 printMapping(m, UCM_GET_CODE_POINTS(table, m), UCM_GET_BYTES(table, m), f); 69 ucm_printTable(UCMTable *table, FILE *f, UBool byUnicode) { 73 m=table->mappings; 74 length=table->mappingsLength; 77 ucm_printMapping(table, m, f); 80 const int32_t *map=table->reverseMap; 82 ucm_printMapping(table, m+map[i], f); 212 UCMTable *table=(UCMTable *)context local 694 UCMTable *table; local 879 UCMTable *table=(UCMTable *)uprv_malloc(sizeof(UCMTable)); local [all...] |
/external/iptables/iptables/ |
iptables-xml.c | 101 #define maxChains 10240 /* max chains per table */ 288 an empty chain at table-end time */ 330 printf(" </table>\n"); 335 openTable(char *table) 339 strncpy(curTable, table, IPT_TABLE_MAXNAMELEN); 342 printf(" <table "); 358 // (or I guess -j SNAT in nat table, but we don't check for that yet 591 //xmlAttrS("table",curTable); // not needed in full mode 689 /* New table */ 690 char *table; local [all...] |