| /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/linux/ |
| map_to_7segment.h | 34 unsigned char table[128]; member in struct:seg7_conversion_map 36 #define SEG7_CONVERSION_MAP(_name, _map) struct seg7_conversion_map _name = { .table = { _map } }
|
| /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/linux/ |
| map_to_7segment.h | 34 unsigned char table[128]; member in struct:seg7_conversion_map 36 #define SEG7_CONVERSION_MAP(_name, _map) struct seg7_conversion_map _name = { .table = { _map } }
|
| /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/linux/ |
| map_to_7segment.h | 34 unsigned char table[128]; member in struct:seg7_conversion_map 36 #define SEG7_CONVERSION_MAP(_name, _map) struct seg7_conversion_map _name = { .table = { _map } }
|
| /prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
| setobject.h | 11 There are three kinds of slots in the table: 41 /* The table contains mask + 1 slots, and that's a power of 2. 47 /* table points to smalltable for small tables, else to 48 * additional malloc'ed memory. table is never NULL! This rule 51 setentry *table; member in struct:_setobject
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/ |
| Table_Suite.py | 1 """Suite Table Suite: Classes for manipulating tables 52 table = tables variable
|
| /prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
| setobject.h | 11 There are three kinds of slots in the table: 41 /* The table contains mask + 1 slots, and that's a power of 2. 47 /* table points to smalltable for small tables, else to 48 * additional malloc'ed memory. table is never NULL! This rule 51 setentry *table; member in struct:_setobject
|
| /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/src/com/google/common/collect/ |
| ComputingConcurrentHashMap.java | 100 AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table; local 101 int index = hash & (table.length() - 1); 102 ReferenceEntry<K, V> first = table.get(index); 139 table.set(index, e);
|
| /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
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/ |
| ProjectSelectionPage.java | 47 import org.eclipse.swt.widgets.Table; 98 Table table = new Table(listComposite, local 100 mTableViewer = new CheckboxTableViewer(table); 101 table.setLayout(new TableLayout()); 104 table.setLayoutData(data);
|
| /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/common/db/ |
| SelectionBuilder.java | 50 * Cursor c = builder.table(FeedContract.Entry.TABLE_NAME) // String TABLE_NAME = "entry" 56 * <p>In this example, the table name and filters ({@code WHERE} clauses) are both explicitly 77 * Cursor c = builder.table(Tables.SESSIONS_JOIN_BLOCKS_ROOMS) 87 * modified table name (since this class doesn't directly support these), and an inner join using 169 * Table name to use for SQL {@code FROM} statement. 178 * @param table Table name 181 public SelectionBuilder table(String table) { method in class:SelectionBuilder 182 mTable = table; [all...] |
| /developers/samples/android/common/src/java/com/example/android/common/db/ |
| SelectionBuilder.java | 50 * Cursor c = builder.table(FeedContract.Entry.TABLE_NAME) // String TABLE_NAME = "entry" 56 * <p>In this example, the table name and filters ({@code WHERE} clauses) are both explicitly 77 * Cursor c = builder.table(Tables.SESSIONS_JOIN_BLOCKS_ROOMS) 87 * modified table name (since this class doesn't directly support these), and an inner join using 169 * Table name to use for SQL {@code FROM} statement. 178 * @param table Table name 181 public SelectionBuilder table(String table) { method in class:SelectionBuilder 182 mTable = table; [all...] |
| /development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/db/ |
| SelectionBuilder.java | 50 * Cursor c = builder.table(FeedContract.Entry.TABLE_NAME) // String TABLE_NAME = "entry" 56 * <p>In this example, the table name and filters ({@code WHERE} clauses) are both explicitly 77 * Cursor c = builder.table(Tables.SESSIONS_JOIN_BLOCKS_ROOMS) 87 * modified table name (since this class doesn't directly support these), and an inner join using 169 * Table name to use for SQL {@code FROM} statement. 178 * @param table Table name 181 public SelectionBuilder table(String table) { method in class:SelectionBuilder 182 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_org/chrome/browser/sync/ |
| sync_ui_util_unittest.cc | 141 GoogleServiceAuthError::State table[] = { local 156 for (size_t i = 0; i < arraysize(table); ++i) { 158 table[i], 162 table[i],
|
| /external/chromium_org/chromeos/network/onc/ |
| onc_translator_onc_to_shill.cc | 74 // using |table|. It is an error if no matching table entry is found. Writes 77 const StringTranslationEntry table[], 183 const StringTranslationEntry* table = local 186 TranslateWithTableAndSet(inner, table, shill::kEapPhase2AuthProperty); 239 const StringTranslationEntry table[], 242 if (TranslateStringToShill(table, onc_value, &shill_value)) {
|
| /external/chromium_org/native_client_sdk/src/libraries/xray/ |
| hashtable.c | 29 XRAY_NO_INSTRUMENT void XRayHashTableGrow(struct XRayHashTable* table); 31 XRAY_NO_INSTRUMENT void XRayHashTableInit(struct XRayHashTable* table, 54 int XRayHashTableGetCapacity(struct XRayHashTable* table) { 55 return table->capacity; 59 int XRayHashTableGetCount(struct XRayHashTable* table) { 60 return table->count; 65 void* XRayHashTableLookup(struct XRayHashTable* table, uint32_t key) { 67 uint32_t m = table->capacity - 1; 72 /* An empty entry means the {key, data} isn't in the table. */ 73 if (NULL == table->array[j].data) 176 struct XRayHashTable* table; local [all...] |
| /external/chromium_org/net/spdy/ |
| hpack_encoder_test.cc | 23 explicit HpackHeaderTablePeer(HpackHeaderTable* table) 24 : table_(table) {} 42 HpackHeaderTable* table() { function in class:net::test::HpackEncoderPeer 46 return HpackHeaderTablePeer(table()); 94 static_ = peer_.table()->GetByIndex(1); 95 // Populate dynamic entries into the table fixture. For simplicity each 97 key_1_ = peer_.table()->TryAddEntry("key1", "value1"); 98 key_2_ = peer_.table()->TryAddEntry("key2", "value2"); 99 cookie_a_ = peer_.table()->TryAddEntry("cookie", "a=bb"); 100 cookie_c_ = peer_.table()->TryAddEntry("cookie", "c=dd") [all...] |
| hpack_huffman_table.cc | 21 // How many bits to index in the root decode table. 126 const DecodeTable table = decode_tables_[table_index]; local 129 uint32 index = (it->code << table.prefix_length); 130 index = index >> (32 - table.indexed_length); 132 CHECK_LT(index, table.size()); 133 DecodeEntry entry = Entry(table, index); 135 uint8 total_indexed = table.prefix_length + table.indexed_length; 141 SetEntry(table, index, entry); 146 // First visit to this placeholder. We need to create a new table 161 const DecodeTable& table = decode_tables_[i]; local 188 DecodeTable table; local 280 const DecodeTable* table = &decode_tables_[0]; local [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/html/ |
| HTMLViewSourceDocument.cpp | 87 RefPtrWillBeRawPtr<HTMLTableElement> table = HTMLTableElement::create(*this); local 88 body->parserAppendChild(table); 90 table->parserAppendChild(m_tbody); 200 // Create a table row.
|