| /packages/apps/Browser/src/com/android/browser/ |
| PageDialogsHandler.java | 352 LinearLayout table = (LinearLayout)factory.inflate(R.layout.ssl_success, placeholder); local 353 TextView successString = (TextView)table.findViewById(R.id.success);
|
| /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:
|
| /prebuilt/linux-x86/toolchain/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 */
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/ |
| ApplicationToggle.java | 98 Composite table = createTableLayout(toolkit, 1 /* numColumns */); local 100 mTooltipFormText = createFormText(table, toolkit, true, "<form></form>", 104 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; 336 * 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...] |
| /dalvik/vm/analysis/ |
| Optimize.cpp | 60 * Create a table of inline substitutions. Sets gDvm.inlineSubs. 63 * into a hash table as the list size increases. 69 InlineSub* table; local 77 table = (InlineSub*) calloc(count + 1, sizeof(InlineSub)); 94 table[tableIndex].method = method; 95 table[tableIndex].inlineIdx = i; 99 /* mark end of table */ 100 table[tableIndex].method = NULL; 102 gDvm.inlineSubs = table; 522 * Check the table first. If not there, do the lookup by name [all...] |
| /external/bison/lib/ |
| hash.c | 1 /* hash - hashing table processing. 22 /* 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 544 Hash_table *table; local [all...] |
| /external/bluetooth/hcidump/parser/ |
| l2cap.c | 95 register cid_info *table = cid_table[in]; local 100 if ((pos < 0 && !table[i].cid) || table[i].cid == cid) 102 if (table[i].psm == psm) 107 table[pos].handle = handle; 108 table[pos].cid = cid; 109 table[pos].psm = psm; 110 table[pos].num = num; 111 table[pos].mode = 0; 159 register cid_info *table = cid_table[in] local 170 register cid_info *table = cid_table[in]; local 181 register cid_info *table = cid_table[in]; local 191 register cid_info *table = cid_table[in]; 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/icu4c/common/ |
| ucnv_bld.h | 98 void *table; /* Unused. This used to be a UConverterTable - Pointer to conversion data - see mbcs below */ member in struct:UConverterSharedData 119 * 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); 923 // 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...] |
| /external/javassist/src/main/javassist/bytecode/analysis/ |
| Analyzer.java | 35 * variable table at every reachable instruction in a method. During analysis, 216 ExceptionTable table = method.getCodeAttribute().getExceptionTable(); local 217 ExceptionInfo[] exceptions = new ExceptionInfo[table.size()]; 218 for (int i = 0; i < table.size(); i++) { 219 int index = table.catchType(i); 227 exceptions[i] = new ExceptionInfo(table.startPc(i), table.endPc(i), table.handlerPc(i), type); 409 // Offset table
|
| /external/kernel-headers/original/linux/netfilter/ |
| x_tables.h | 126 /* Which table. */ 190 char *table; member in struct:xt_match 238 char *table; member in struct:xt_target 273 /* The table itself */ 276 /* Size per table */ 297 unsigned int size, const char *table, unsigned int hook, 300 unsigned int size, const char *table, unsigned int hook, 303 extern int xt_register_table(struct xt_table *table, 306 extern void *xt_unregister_table(struct xt_table *table); 308 extern struct xt_table_info *xt_replace_table(struct xt_table *table, [all...] |
| /external/qemu/target-arm/ |
| op_helper.c | 38 uint64_t *table; local 39 table = (uint64_t *)&env->vfp.regs[rn]; 44 tmp = (table[index >> 3] >> ((index & 7) << 3)) & 0xff;
|
| /external/srec/tools/test_g2g/ |
| test_g2g.c | 515 static int table[2048]; local 521 for(j=0; j< (int)(sizeof(table)/sizeof(int)); j++) 522 table[j] = 0; 533 table[j] = a->pdata[i].code; 535 return &table[0];
|
| /external/webkit/Source/JavaScriptCore/runtime/ |
| JSObject.cpp | 56 const HashTable* table = classInfo->propHashTable(exec); local 57 if (!table) 59 table->initializeIfNeeded(exec); 60 ASSERT(table->table); 62 int hashSizeMask = table->compactSize - 1; 63 const HashEntry* entry = table->table; 434 // This could be a function within the static table? - should probably
|
| PropertyMapHashTable.h | 92 // used for iterating over the table in insertion order. 156 // Find a value in the table. 158 // Add a value to the table 160 // Remove a value from the table. 189 // Used to insert a value known not to be in the table, and where we know capacity to be available. 192 // Rehash the table. Used to grow, or to recover deleted slots. 195 // The capacity of the table of values is half of the size of the index. 211 // The table of values lies after the hash index. 212 ValueType* table(); 213 const ValueType* table() const 519 inline PropertyTable::ValueType* PropertyTable::table() function in class:JSC::PropertyTable 525 inline const PropertyTable::ValueType* PropertyTable::table() const function in class:JSC::PropertyTable [all...] |
| /external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
| SymbolTable.h | 11 // Symbol table for parsing. Has these design characteristics: 13 // * Same symbol table can be used to compile many shaders, to preserve 18 // so that symbol table lookups are never ambiguous. This allows 19 // a simpler symbol table structure. 21 // * Pushing and popping of scope, so symbol table will really be a stack 26 // in the symbol table. The parser can substitute constants at parse 30 // are tracked in the intermediate representation, not the symbol table. 204 // returning true means symbol was added to the table 245 // The symbol table cannot be used until push() is called, but 247 // that the symbol table has not been preloaded with built-ins 342 std::vector<TSymbolTableLevel*> table; member in class:TSymbolTable [all...] |
| /external/webkit/Source/WebKit/qt/tests/qwebelement/ |
| tst_qwebelement.cpp | 813 "<table>" 824 "</table>"; 827 QCOMPARE(body.findFirst("em table tbody tr td").toPlainText(), QString("hey")); 864 "<table>" 875 "</table>"; 878 QCOMPARE(body.findFirst("table tbody tr td em").toPlainText(), QString("hey")); 891 m_mainFrame->setHtml("<body><!--comment--><p>Test</p><!--another comment--><table>"); 898 QWebElement table = p.nextSibling(); local 899 QVERIFY(!table.isNull()); 900 QCOMPARE(table.tagName(), QString("TABLE")) 910 QWebElement table = body.lastChild(); local [all...] |
| /external/wpa_supplicant_6/wpa_supplicant/src/utils/ |
| eloop.c | 45 struct eloop_sock *table; member in struct:eloop_sock_table 80 static int eloop_sock_table_add_sock(struct eloop_sock_table *table, 86 if (table == NULL) 90 os_realloc(table->table, 91 (table->count + 1) * sizeof(struct eloop_sock)); 95 tmp[table->count].sock = sock; 96 tmp[table->count].eloop_data = eloop_data; 97 tmp[table->count].user_data = user_data; 98 tmp[table->count].handler = handler 219 struct eloop_sock_table *table; local 229 struct eloop_sock_table *table; local [all...] |
| /external/wpa_supplicant_8/src/utils/ |
| eloop.c | 53 struct eloop_sock *table; member in struct:eloop_sock_table 86 static void eloop_trace_sock_add_ref(struct eloop_sock_table *table) 89 if (table == NULL || table->table == NULL) 91 for (i = 0; i < table->count; i++) { 92 wpa_trace_add_ref(&table->table[i], eloop, 93 table->table[i].eloop_data) 281 struct eloop_sock_table *table; local 291 struct eloop_sock_table *table; local [all...] |