HomeSort by relevance Sort by last modified time
    Searched refs:table (Results 126 - 150 of 675) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu4c/common/
ucnvmbcs.h 56 * (This only works with a utf8Friendly table.)
64 * slightly and optionally adds a table for conversion to MBCS (non-SBCS)
80 * UTF-8 lead byte and middle trail byte. Unlike the older MBCS stage 2 table,
118 * will be able to use the base table and ignore the extension.
120 * The unicodeMask in the static data is part of the base table data structure.
123 * The static data unicodeMask refers only to the base table's properties if
124 * a base table is included.
170 * -- base table name for extension-only table
175 * -- normal base table with optional extensio
    [all...]
  /external/freetype/src/psnames/
psmodule.c 297 /* Build a table that maps Unicode values to glyph indices. */
300 PS_Unicodes table,
312 /* we first allocate the table */
313 table->num_maps = 0;
314 table->maps = 0;
316 if ( !FT_NEW_ARRAY( table->maps, num_glyphs + EXTRA_GLYPH_LIST_SIZE ) )
324 map = table->maps;
364 /* now compress the table a bit */
365 count = (FT_UInt)( map - table->maps );
370 FT_FREE( table->maps )
    [all...]
  /external/chromium/third_party/icu/source/tools/makeconv/
gencnvex.c 41 CnvExtAddTable(NewConverter *cnvData, UCMTable *table, UConverterStaticData *staticData);
52 /* toUnicode (state table in ucm->states) */
126 /* write the header and base table name for an extension-only table */
140 /* write the header and the base table name */
291 * the toUnicode table.
293 * for the base toUnicode table but not for the base fromUnicode table.
294 * The table must be sorted.
298 reduceToUMappings(UCMTable *table) {
    [all...]
  /external/icu4c/tools/makeconv/
gencnvex.c 41 CnvExtAddTable(NewConverter *cnvData, UCMTable *table, UConverterStaticData *staticData);
52 /* toUnicode (state table in ucm->states) */
126 /* write the header and base table name for an extension-only table */
140 /* write the header and the base table name */
291 * the toUnicode table.
293 * for the base toUnicode table but not for the base fromUnicode table.
294 * The table must be sorted.
298 reduceToUMappings(UCMTable *table) {
    [all...]
  /external/openssl/crypto/engine/
eng_int.h 117 /* This represents an implementation table. Dependent code should instantiate it
120 int engine_table_register(ENGINE_TABLE **table, ENGINE_CLEANUP_CB *cleanup,
122 void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e);
123 void engine_table_cleanup(ENGINE_TABLE **table);
125 ENGINE *engine_table_select(ENGINE_TABLE **table, int nid);
127 ENGINE *engine_table_select_tmp(ENGINE_TABLE **table, int nid, const char *f, int l);
131 void engine_table_doall(ENGINE_TABLE *table, engine_table_doall_cb *cb, void *arg);
  /dalvik/vm/
IndirectRefTable.c 18 * Indirect reference table management.
32 pRef->table = (Object**) malloc(initialCount * sizeof(Object*));
33 if (pRef->table == NULL)
36 memset(pRef->table, 0xd1, initialCount * sizeof(Object*));
57 free(pRef->table);
58 pRef->table = NULL;
63 * Remove one or more segments from the top. The table entry identified
66 * Returns false if "cookie" is invalid or the table has only one segment.
74 * this would represent an expansion of the table.
78 LOGE("Attempt to expand table with segment pop (%d to %d)\n"
    [all...]
ReferenceTable.h 18 * Maintain a table of references. Used for internal local references,
21 * None of the table functions are synchronized.
27 * Table definition.
32 * If "allocEntries" is not equal to "maxEntries", the table may expand when
34 * pointers into "table" rather than offsets, use a fixed-size table.
37 * table/nextEntry is allowed.)
41 Object** table; /* bottom of the list */ member in struct:ReferenceTable
50 * If "initialCount" != "maxCount", the table will expand as required.
52 * Returns "false" if table allocation fails
    [all...]
  /frameworks/base/tools/preload/
sorttable.js 10 Add class="sortable" to any table you'd like to make sortable
34 forEach(document.getElementsByTagName('table'), function(table) {
35 if (table.className.search(/\bsortable\b/) != -1) {
36 sorttable.makeSortable(table);
42 makeSortable: function(table) {
43 if (table.getElementsByTagName('thead').length == 0) {
44 // table doesn't have a tHead. Since it should have, create one and
45 // put the first table row in it.
47 the.appendChild(table.rows[0])
    [all...]
  /external/bzip2/
bzip.css 9 #f2f2f9 very light blue nav table background
10 #3366cc medium blue nav table border
53 table.nav {
60 table.nav a { text-decoration: none; }
61 table.nav a:hover { text-decoration: underline; }
62 table.nav td { font-size: 85%; }
  /external/srec/srec/include/
prelib.h 45 void create_lookup_logadd(logadd_table_info *table, float mul_scale);
51 void destroy_lookup_logadd(logadd_table_info *table);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
Android.mk 9 symbol-table.cpp \
  /external/webkit/WebKitTools/android/flex-2.5.4a/
sym.c 1 /* sym - symbol table routines */
46 /* addsym - add symbol and definitions to symbol table
51 int addsym( sym, str_def, int_def, table, table_size )
55 hash_table table;
59 register struct hash_entry *sym_entry = table[hash_val];
78 flexfatal( _( "symbol table memory allocation failed" ) );
80 if ( (successor = table[hash_val]) != 0 )
93 table[hash_val] = new_entry;
128 /* findsym - find symbol in symbol table */
130 struct hash_entry *findsym( sym, table, table_size
    [all...]
  /external/freetype/src/pshinter/
pshrec.c 48 /* destroy hints table */
50 ps_hint_table_done( PS_Hint_Table table,
53 FT_FREE( table->hints );
54 table->num_hints = 0;
55 table->max_hints = 0;
59 /* ensure that a table can contain "count" elements */
61 ps_hint_table_ensure( PS_Hint_Table table,
65 FT_UInt old_max = table->max_hints;
72 /* try to grow the table */
74 if ( !FT_RENEW_ARRAY( table->hints, old_max, new_max )
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsProvider.java 87 * Decode a content URL into the table, projection, and arguments
91 public String table; field in class:SettingsProvider.SqlArguments
98 this.table = url.getPathSegments().get(0);
99 if (!DatabaseHelper.isValidTable(this.table)) {
100 throw new IllegalArgumentException("Bad root path: " + this.table);
109 this.table = url.getPathSegments().get(0);
110 if (!DatabaseHelper.isValidTable(this.table)) {
111 throw new IllegalArgumentException("Bad root path: " + this.table);
113 if ("system".equals(this.table) || "secure".equals(this.table)) {
149 String table = tableUri.getPathSegments().get(0); local
171 String property = null, table = uri.getPathSegments().get(0); local
    [all...]
  /external/icu4c/layout/
NonContextualGlyphSubstProc.cpp 38 switch (SWAPW(header->table.format))
  /external/qemu/
keymaps.h 55 void *init_keyboard_layout(const name2keysym_t *table, const char *language);
  /external/skia/src/ports/
SkFontHost_gamma.cpp 30 static void build_power_table(uint8_t table[], float ee) {
39 table[i] = SkToU8(xx);
62 static void dump_a_table(const char name[], const uint8_t table[],
65 SkDebugf("\/\/ Gamma table for %g\n", gamma);
70 tmp.printf("0x%02X, ", *table++);
101 // If the luminance is <= this value, then apply the black gamma table
104 // If the luminance is >= this value, then apply the white gamma table
  /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
81 buf.append(table[(string[i] >>> 4) & 0xf]);
82 buf.append(table[string[i] & 0xf]);
  /external/iproute2/netem/
paretonormal.c 2 * Paretoormal distribution table generator
54 double table[TABLESIZE+1]; local
58 table[i] = x;
61 "# This is the distribution table for the paretonormal distribution.\n"
67 normvalue = (int) rint(table[i]*TABLEFACTOR);
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
AddColumnTest.java 17 package android.widget.layout.table;
19 import android.widget.layout.table.AddColumn;
30 * {@link android.widget.layout.table.AddColumn} is
31 * setup to exercise the case of adding row programmatically in a table.
47 mTable = (TableLayout) activity.findViewById(R.id.table);
  /packages/apps/Gallery3D/src/com/cooliris/picasa/
TableContentProvider.java 42 public void addMapping(String authority, String path, String mimeSubtype, EntrySchema table) {
43 // Add the table URI mapping.
47 mappings.add(new Mapping(table, mimeSubtype, false));
51 mappings.add(new Mapping(table, mimeSubtype, true));
94 String tableName = mapping.table.getTableName();
112 String tableName = mapping.table.getTableName();
132 String tableName = mapping.table.getTableName();
166 String tableName = mapping.table.getTableName();
188 String tableName = mapping.table.getTableName();
211 public EntrySchema table; field in class:TableContentProvider.Mapping
    [all...]
  /prebuilt/windows/sdl/host/include/SDL/
SDL_types.h 33 /* The number of elements in a table */
34 #define SDL_TABLESIZE(table) (sizeof(table)/sizeof(table[0]))
  /external/webkit/WebCore/rendering/
RenderTableSection.cpp 80 RenderTable* recalcTable = table();
115 RenderObject* row = new (renderArena()) RenderTableRow(document() /* anonymous table row */);
140 // If the next renderer is actually wrapped in an anonymous table row, we need to go up and find that.
165 int nCols = max(1, table()->numEffCols());
185 Vector<RenderTable::ColumnStruct>& columns = table()->columns();
189 // (see the annotation on table cell layouting in the CSS specs and the testcase below:
190 // <TABLE border>
193 // </TABLE>
235 table()->appendColumn(cSpan);
239 table()->splitColumn(m_cCol, cSpan)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
CatchStructs.java 49 * {@code null-ok;} the underlying table; set in
52 private CatchTable table; field in class:CatchStructs
79 this.table = null;
89 if (table == null) {
90 table = code.getCatches();
101 return table.size();
123 int size = table.size();
132 handlerOffsets.put(table.get(i).getHandlers(), null);
202 int tableSize = table.size();
204 CatchTable.Entry one = table.get(i)
    [all...]
  /external/chromium/third_party/icu/source/test/letest/
FontObject.cpp 55 void FontObject::deleteTable(void *table)
57 delete[] (char *) table;
62 le_uint16 table = 0; local
66 table = rangeShift;
72 if (SWAPL(directory->tableDirectory[table + probe].tag) <= tag) {
73 table += probe;
77 if (SWAPL(directory->tableDirectory[table].tag) == tag) {
78 return &directory->tableDirectory[table];
95 void *table = new char[*length]; local
98 fread(table, sizeof(char), *length, file)
    [all...]

Completed in 1250 milliseconds

1 2 3 4 56 7 8 91011>>