| /frameworks/base/core/tests/coretests/src/android/widget/layout/table/ |
| CellSpanTest.java | 17 package android.widget.layout.table; 19 import android.widget.layout.table.CellSpan; 27 * {@link android.widget.layout.table.CellSpan} is
|
| FixedWidthTest.java | 17 package android.widget.layout.table; 19 import android.widget.layout.table.FixedWidth; 27 * {@link android.widget.layout.table.FixedWidth} is
|
| WeightTest.java | 17 package android.widget.layout.table; 19 import android.widget.layout.table.Weight; 27 * {@link android.widget.layout.table.Weight} is
|
| 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
|
| /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_bridge/ |
| ebt_among.h | 9 * Write-once-read-many hash table, used for checking if a given 22 * hash table, which are stored also in form of pairs of integers 40 int table[257]; member in struct:ebt_mac_wormhash
|
| /external/blktrace/doc/ |
| blktrace.tex | 486 & & action specifiers in section~\ref{sec:act-table} \\ \hline 593 \emph{a} & Action, a (small) string (1 or 2 characters) -- see table below for more details \\ \hline 627 \subsubsection{\label{sec:act-table}Action Table} 628 The following table shows the various actions which may be output. 648 \subsubsection{\label{sec:act-table}RWBS Description} [all...] |
| /external/bouncycastle/src/main/java/org/bouncycastle/asn1/ |
| DERUniversalString.java | 13 private static final char[] table = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; field in class:DERUniversalString 85 buf.append(table[(string[i] >>> 4) & 0xf]); 86 buf.append(table[string[i] & 0xf]);
|
| /external/chromium/chrome/browser/ui/login/ |
| login_prompt_gtk.cc | 82 GtkWidget* table = gtk_util::CreateLabeledControlsGroup(NULL, local 88 gtk_box_pack_start(GTK_BOX(root_.get()), table, FALSE, FALSE, 0); local
|
| /external/dropbear/libtomcrypt/src/hashes/ |
| tiger.c | 39 #define t1 (table) 40 #define t2 (table+256) 41 #define t3 (table+256*2) 42 #define t4 (table+256*3) 44 static const ulong64 table[4*256] = { variable [all...] |
| /external/elfutils/libelf/ |
| nlist.c | 57 struct nlist_fshash *table; local 80 /* Find a symbol table. We prefer the real symbol table but if it 81 does not exist use the dynamic symbol table. */ 105 table. */ 119 /* Create the hash table. */ 120 table = nlist_fshash_init (nsyms); 121 if (table == NULL) 147 /* And add it to the hash table. Note that we are using the 154 (void) nlist_fshash_overwrite (table, mem.str, 0, &mem) [all...] |
| /external/freetype/src/sfnt/ |
| ttpost.c | 5 /* Postcript name table processing for TrueType and OpenType fonts */ 21 /* The post table is not completely loaded by the core engine. This */ 62 /* table of Mac names. Thus, it is possible to build a version of */ 173 /* UNDOCUMENTED! The number of glyphs in this table can be smaller */ 174 /* than the value in the maxp table (cf. cyberbit.ttf). */ 177 /* in this table, so the test for this threshold has been dropped. */ 200 /* compute number of names stored in table */ 239 FT_TRACE6(( "load_format_20: %d byte left in post table\n", 251 " truncating at end of post table (%d byte left)\n", 266 " all entries in post table are already parsed, 279 TT_Post_20 table = &face->postscript_names.names.format_20; local 356 TT_Post_25 table = &face->postscript_names.names.format_25; local 428 TT_Post_20 table = &names->names.format_20; local 443 TT_Post_25 table = &names->names.format_25; local 516 TT_Post_20 table = &names->names.format_20; local 539 TT_Post_25 table = &names->names.format_25; local [all...] |
| /external/jpeg/ |
| jdmaster.c | 233 * a (subscript-check-less) C table lookup 238 * These processes all use a common table prepared by the routine below. 241 * of x is within MAXJSAMPLE+1 of the legal range, so a table running from 254 * So the post-IDCT limiting table ends up looking like this: 259 * Negative inputs select values from the upper half of the table after 262 * We can save some space by overlapping the start of the post-IDCT table 263 * with the simpler range limiting table. The post-IDCT table begins at 266 * Note that the table is allocated in near data space on PCs; it's small 272 /* Allocate and fill in the sample_range_limit table */ 274 JSAMPLE * table; local [all...] |
| /external/libpng/ |
| pngmem.c | 177 png_bytep table; local 198 table = farmalloc(total_size); 200 if (table == NULL) 211 if ((png_size_t)table & 0xfff0) 224 png_ptr->offset_table = table; 239 hptr = (png_byte huge *)table;
|
| /external/qemu/distrib/libpng-1.2.19/ |
| pngmem.c | 164 png_bytep table; local 185 table = farmalloc(total_size); 187 if (table == NULL) 198 if ((png_size_t)table & 0xfff0) 211 png_ptr->offset_table = table; 226 hptr = (png_byte huge *)table;
|
| /external/qemu/hw/ |
| smbios.c | 72 "cannot add table\n", type); 77 struct smbios_structure_header *table = (void *)(header + 1); local 78 if (type == table->type) { 79 fprintf(stderr, "SMBIOS type %d table already defined, " 173 struct smbios_table *table; local 187 sizeof(*table) + size); 188 table = (struct smbios_table *)(smbios_entries + smbios_entries_len); 189 table->header.type = SMBIOS_TABLE_ENTRY; 190 table->header.length = cpu_to_le16(sizeof(*table) + size) [all...] |
| /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)
|
| /prebuilt/linux-x86/toolchain/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
|
| /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(), 91 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(),
|
| /system/core/debuggerd/ |
| symbol_table.c | 35 * Create a symbol table from a given file 42 * Free symbol table with symbol_table_free() 46 struct symbol_table *table = NULL; local 53 XLOG2("Creating symbol table for %s\n", filename); 90 table = malloc(sizeof(struct symbol_table)); 91 if(!table) { 94 table->name = strdup(filename); 95 table->num_symbols = 0; 122 // Iterate through the dynamic symbol table, and count how many symbols 133 // Iterate through the symbol table, and count how many symbol [all...] |
| /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);
|
| /frameworks/base/telephony/java/com/android/internal/telephony/ |
| MccTable.java | 43 static ArrayList<MccEntry> table; field in class:MccTable 79 index = Collections.binarySearch(table, m); 84 return table.get(index); 258 table = new ArrayList<MccEntry>(240); 262 * The table below is built from two resources: 272 * This table has not been verified. 276 table.add(new MccEntry(202,"gr",2)); //Greece 277 table.add(new MccEntry(204,"nl",2,"nl")); //Netherlands (Kingdom of the) 278 table.add(new MccEntry(206,"be",2)); //Belgium 279 table.add(new MccEntry(208,"fr",2,"fr")); //Franc 512 Collections.sort(table); typedefs [all...] |