/external/webkit/Source/WebCore/platform/text/ |
TextCodecLatin1.cpp | 37 static const UChar table[256] = { member in namespace:WebCore 150 *destination = table[*source]; 174 if (table[b] == c)
|
/external/webrtc/src/system_wrappers/source/ |
data_log_unittest.cc | 21 // A class for storing the values expected from a log table column when 22 // verifying a log table file. 45 // Verifies that the log table stored in the file "log_file" corresponds to 74 // Verifies the table header stored in "line" to correspond with the header 91 // one line read from a log table file. An element can either be a column 118 ASSERT_EQ(DataLog::AddTable(DataLog::Combine("a proper table", 1)), 0); 121 ASSERT_LT(DataLog::AddTable(DataLog::Combine("table failure", 1)), 0); 126 DataLog::Combine("a proper table", 1)); 131 DataLog::AddTable(DataLog::Combine("table", 1)); 132 DataLog::AddColumn(DataLog::Combine("table", 1), "arrival", 1) 146 FILE* table = fopen("table_1.txt", "r"); local 228 FILE* table = fopen("table_2.txt", "r"); local 251 FILE* table = fopen("table_3.txt", "r"); local 270 FILE* table = fopen("table_4.txt", "r"); local [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/ |
HorizontalGravityTest.java | 17 package android.widget.layout.table; 19 import android.widget.layout.table.HorizontalGravity; 28 * {@link android.widget.layout.table.HorizontalGravity} is
|
VerticalGravityTest.java | 17 package android.widget.layout.table; 19 import android.widget.layout.table.VerticalGravity; 29 * {@link android.widget.layout.table.VerticalGravity} is
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/database/ |
ContactsTableUtil.java | 34 * Methods for operating on the contacts table. 44 final String table = Tables.CONTACTS; local 46 db.execSQL("CREATE INDEX contacts_has_phone_index ON " + table + " (" + 50 db.execSQL("CREATE INDEX contacts_name_raw_contact_id_index ON " + table + " (" + 54 db.execSQL(MoreDatabaseUtils.buildCreateIndexSql(table,
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
search.h | 80 /* Family of hash table handling functions. The functions also 82 functions all work on a signle internal hashing table. */ 84 /* Search for entry matching ITEM.key in internal hash table. If 90 /* Create a new hashing table which will at most contain NEL elements. */ 93 /* Destroy current internal hashing table. */ 100 struct _ENTRY *table; member in struct:hsearch_data
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
search.h | 80 /* Family of hash table handling functions. The functions also 82 functions all work on a signle internal hashing table. */ 84 /* Search for entry matching ITEM.key in internal hash table. If 90 /* Create a new hashing table which will at most contain NEL elements. */ 93 /* Destroy current internal hashing table. */ 100 struct _ENTRY *table; member in struct:hsearch_data
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
search.h | 80 /* Family of hash table handling functions. The functions also 82 functions all work on a signle internal hashing table. */ 84 /* Search for entry matching ITEM.key in internal hash table. If 90 /* Create a new hashing table which will at most contain NEL elements. */ 93 /* Destroy current internal hashing table. */ 100 struct _ENTRY *table; member in struct:hsearch_data
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/ |
ExportFieldsPart.java | 40 Composite table = createTableLayout(toolkit, 2 /* numColumns */); local 42 createLabel(table, toolkit, 46 Text packageField = createLabelAndText(table, toolkit, 51 Text projectsField = createLabelAndText(table, toolkit, 56 Text versionCodeField = createLabelAndText(table, toolkit, 61 Text keyStoreField = createLabelAndText(table, toolkit, 66 Text keyAliasField = createLabelAndText(table, toolkit,
|
ExportLinksPart.java | 47 final Composite table = createTableLayout(toolkit, 2 /* numColumns */); local 70 mFormText = createFormText(table, toolkit, true, buf.toString(), 94 MessageBox mb = new MessageBox(table.getShell(), SWT.OK);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/ |
OverviewExportPart.java | 65 Composite table = createTableLayout(toolkit, 2 /* numColumns */); local 66 createFormText(table, toolkit, true, "<form></form>", false /* setupLayoutData */); 70 Composite table = createTableLayout(toolkit, 2 /* numColumns */); local 84 FormText text = createFormText(table, toolkit, true, buf.toString(),
|
OverviewLinksPart.java | 48 Composite table = createTableLayout(toolkit, 2 /* numColumns */); local 84 mFormText = createFormText(table, toolkit, true, buf.toString(),
|
/external/apache-xml/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);
|
/external/guava/guava-tests/test/com/google/common/cache/ |
CacheTesting.java | 193 Map<?, ?> table = segmentTable(segment); local 197 assertTrue(table.size() <= segment.count); 198 for (Entry entry : table.entrySet()) { 313 AtomicReferenceArray<? extends ReferenceEntry<K, V>> table = segment.table; 315 for (int i = 0; i < table.length(); i++) { 316 for (ReferenceEntry<K, V> entry = table.get(i); entry != null; entry = entry.getNext()) {
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
NamespaceSupport.java | 645 Hashtable table; 650 // Select the appropriate table. 652 table = attributeNameTable; 654 table = elementNameTable; 660 name = (String[])table.get(qName); 709 table.put(name[2], name); 639 Hashtable table; local
|
/developers/samples/android/common/src/com/example/android/common/db/ |
SelectionBuilder.java | 52 * Cursor c = builder.table(FeedContract.Entry.TABLE_NAME) // String TABLE_NAME = "entry" 58 * <p>In this example, the table name and filters ({@code WHERE} clauses) are both explicitly 79 * Cursor c = builder.table(Tables.SESSIONS_JOIN_BLOCKS_ROOMS) 89 * modified table name (since this class doesn't directly support these), and an inner join using 171 * Table name to use for SQL {@code FROM} statement. 180 * @param table Table name 183 public SelectionBuilder table(String table) { method in class:SelectionBuilder 184 mTable = table; [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
DERBitString.java | 15 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 262 buf.append(table[(string[i] >>> 4) & 0xf]); 263 buf.append(table[string[i] & 0xf]);
|
/external/chromium/chrome/browser/accessibility/ |
renderer_accessibility_browsertest.cc | 215 // In a WebKit accessibility render tree for a table, each cell is a 223 "<table border=1><tr><td>1</td><td>2</td></tr></table>"; 229 const WebAccessibility& table = tree.children[0]; local 230 EXPECT_EQ(WebAccessibility::ROLE_TABLE, table.role); 231 const WebAccessibility& row = table.children[0]; 237 const WebAccessibility& column1 = table.children[1]; 242 const WebAccessibility& column2 = table.children[2];
|
/external/chromium/chrome/browser/ui/gtk/bookmarks/ |
bookmark_bubble_gtk.cc | 113 // message, and a right justified remove link button. |table| is the middle 133 // We use a table to allow the labels to line up with each other, along 135 GtkWidget* table = gtk_util::CreateLabeledControlsGroup( local 154 gtk_box_pack_start(GTK_BOX(content), table, TRUE, TRUE, 0); local 157 gtk_container_set_focus_child(GTK_CONTAINER(content), table); local
|
/external/chromium/net/base/ |
ssl_false_start_blacklist_process.cc | 6 // a static hash table so that it can be efficiently queried by Chrome. 200 fprintf(stderr, "Using %d entry hash table\n", kBuckets); 201 uint32 table[kBuckets]; local 218 table[i] = table_data.size(); 245 fprintf(out, " %u,\n", (unsigned) table[i]);
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
PropertyTableTooltipHelper.java | 11 package org.eclipse.wb.internal.core.model.property.table; 28 * @coverage core.model.property.table 39 public PropertyTableTooltipHelper(PropertyTable table) { 40 m_table = table;
|
/external/freetype/src/sfnt/ |
sfdriver.c | 64 * SFNT TABLE SERVICE 72 void* table; local 78 table = &face->header; 82 table = &face->horizontal; 86 table = face->vertical_info ? &face->vertical : 0; 90 table = face->os2.version == 0xFFFFU ? 0 : &face->os2; 94 table = &face->postscript; 98 table = &face->max_profile; 102 table = face->pclt.Version ? &face->pclt : 0; 106 table = 0 [all...] |
/external/guava/guava/src/com/google/common/collect/ |
ImmutableSet.java | 162 Object[] table = new Object[tableSize]; local 171 Object value = table[index]; 177 table[index] = element; 202 // Resize the table when the array includes too many duplicates. 206 return new RegularImmutableSet<E>(uniqueElements, hashCode, table, mask); 213 // If the set has this many elements, it will "max out" the table size 217 * Returns an array size suitable for the backing array of a hash table that 227 // The table can't be completely full or we'll get infinite reprobes
|
/external/icu4c/common/ |
ucol_data.h | 56 uint32_t unsafeCP; /* hash table of unsafe code points */ 57 uint32_t contrEndCP; /* hash table of final code points */ 79 uint32_t table; member in struct:__anon8574
|
/external/icu4c/i18n/ |
uspoof_wsconf.cpp | 46 // | | | |---- Which table, Any Case or Lower Case (A or L) 61 "\\s*(?:(A)|(L))" // The table A or L. Group 6 or 7 208 // select the table - (A) any case or (L) lower case only 209 UTrie2 *table = anyCaseTrie; local 211 table = lowerCaseTrie; 223 int32_t setIndex = utrie2_get32(table, cp); 235 bsset->trie = table; 245 utrie2_set32(table, cp, setIndex, &status);
|