Searched refs:table (Results 151 - 175 of 1739) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/icu/source/test/letest/
H A DFontTableCache.h29 virtual void freeFontTable(const void *table) const;
33 void add(LETag tableTag, const void *table, size_t length);
/external/chromium_org/third_party/icu/source/test/perf/leperf/
H A DFontTableCache.h29 virtual void freeFontTable(const void *table) const;
33 void add(LETag tableTag, const void *table, size_t length);
/external/chromium_org/ui/webui/resources/js/cr/ui/table/
H A Dtable_column.js6 * @fileoverview This is a table column representation
9 cr.define('cr.ui.table', function() {
13 * A table column that wraps column ids and settings.
35 * @return {cr.ui.table.TableColumn} Clone of the given column.
47 * Renders table cell. This is the default render function.
50 * @param {cr.ui.Table} table The table.
53 renderFunction_: function(dataItem, columnId, table) {
54 var div = table.ownerDocument.createElement('div');
60 * Renders table heade
[all...]
/external/doclava/res/assets/templates/components/
H A Dsearch_box.cs7 <table class="gsc-search-box" cellpadding="0" cellspacing="0"><tbody>
18 <table id="search_filtered" cellspacing=0>
19 </table>
29 </table>
/external/guava/guava-tests/test/com/google/common/collect/
H A DHashBasedTableTest.java34 Table<String, Integer, Character> table = HashBasedTable.create();
35 table.put("foo", 4, 'a');
36 table.put("cat", 1, 'b');
37 table.clear();
38 populate(table, data);
39 return table;
82 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
83 SerializableTester.reserializeAndAssert(table);
/external/icu/icu4c/source/test/letest/
H A DFontTableCache.h29 virtual void freeFontTable(const void *table) const;
33 void add(LETag tableTag, const void *table, size_t length);
/external/icu/icu4c/source/test/perf/leperf/
H A DFontTableCache.h29 virtual void freeFontTable(const void *table) const;
33 void add(LETag tableTag, const void *table, size_t length);
/external/chromium_org/build/android/pylib/
H A Ddevice_settings.py25 desired_settings: A list of (table, [(key: value), ...]) for all
40 for table, key_value in desired_settings:
41 settings = content_settings.ContentSettings(table, device)
44 logging.info('\n%s %s', table, (80 - len(table)) * '-')
59 same value for that column are removed from the table prior to inserting the
78 for table, key, value in locksettings:
84 delete from '%(table)s' where %(primary_key)s='%(primary_value)s';
85 insert into '%(table)s' (%(columns)s) values (%(values)s);
87 'table'
[all...]
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Dkeyboard_overlay.css11 display: table;
16 display: table-row;
20 display: table-cell;
/external/chromium_org/chrome/browser/resources/suggestions_internals/
H A Dsuggestions_internals.css5 .suggestions-debug-table {
10 .suggestions-debug-table th {
14 .suggestions-debug-table td {
/external/chromium_org/content/browser/resources/media/
H A Dstats_table.js7 * Maintains the stats table.
27 * Adds |report| to the stats table of |peerConnectionElement|.
49 * @return {!Element} The stats table container.
53 var containerId = peerConnectionElement.id + '-table-container';
58 container.className = 'stats-table-container';
68 * Ensure the stats table for track specified by |report| of PeerConnection
76 * @return {!Element} The stats table element.
80 var tableId = peerConnectionElement.id + '-table-' + report.id;
81 var table = $(tableId);
82 if (!table) {
[all...]
/external/chromium_org/third_party/freetype/src/autofit/
H A Dafangles.c141 /* the following table has been automatically generated with */
248 FT_Pos* table )
258 if ( table[j] >= table[j - 1] )
261 swap = table[j];
262 table[j] = table[j - 1];
263 table[j - 1] = swap;
271 AF_Width table,
289 if ( table[
270 af_sort_and_quantize_widths( FT_UInt* count, AF_Width table, FT_Pos threshold ) argument
[all...]
/external/freetype/src/autofit/
H A Dafangles.c141 /* the following table has been automatically generated with */
248 FT_Pos* table )
258 if ( table[j] >= table[j - 1] )
261 swap = table[j];
262 table[j] = table[j - 1];
263 table[j - 1] = swap;
271 AF_Width table,
289 if ( table[
270 af_sort_and_quantize_widths( FT_UInt* count, AF_Width table, FT_Pos threshold ) argument
[all...]
/external/libcap-ng/libcap-ng-0.7/src/
H A Dlookup_table.c47 all strings referenced in the table and the table itself, which uses
76 static int capng_lookup_name(const struct transtab *table, argument
82 if (!strcasecmp(tabstr + table[i].offset, name))
83 return table[i].value;
88 static const char *capng_lookup_number(const struct transtab *table, argument
95 if (table[i].value == number)
96 return tabstr + table[i].offset;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTableRowsCollection.cpp43 // Because we know that the parent is a table or a section, it's safe to cast it to an HTMLElement
48 HTMLTableRowElement* HTMLTableRowsCollection::rowAfter(HTMLTableElement& table, HTMLTableRowElement* previous) argument
52 if (previous && previous->parentNode() != table) {
60 child = Traversal<HTMLElement>::firstChild(table);
72 child = Traversal<HTMLElement>::firstChild(table);
73 else if (previous->parentNode() == table)
88 child = Traversal<HTMLElement>::firstChild(table);
101 HTMLTableRowElement* HTMLTableRowsCollection::lastRow(HTMLTableElement& table) argument
103 for (HTMLElement* tfoot = Traversal<HTMLElement>::lastChild(table, HasHTMLTagName(tfootTag)); tfoot; tfoot = Traversal<HTMLElement>::previousSibling(*tfoot, HasHTMLTagName(tfootTag))) {
108 for (HTMLElement* child = Traversal<HTMLElement>::lastChild(table); chil
128 HTMLTableRowsCollection(ContainerNode& table) argument
134 create(ContainerNode& table, CollectionType type) argument
[all...]
/external/chromium_org/third_party/skia/gm/
H A Dtablecolorfilter.cpp53 static void make_table0(uint8_t table[]) { argument
56 table[i] = (n << 5) | (n << 2) | (n >> 1);
59 static void make_table1(uint8_t table[]) { argument
61 table[i] = i * i / 255;
64 static void make_table2(uint8_t table[]) { argument
67 table[i] = static_cast<uint8_t>(sqrtf(fi) * 255);
72 uint8_t table[256]; make_table0(table); local
73 return SkTableColorFilter::Create(table);
76 uint8_t table[25 local
80 uint8_t table[256]; make_table2(table); local
[all...]
/external/chromium_org/third_party/skia/src/effects/
H A DSkTableMaskFilter.cpp21 SkTableMaskFilter::SkTableMaskFilter(const uint8_t table[256]) { argument
22 memcpy(fTable, table, sizeof(fTable));
43 const uint8_t* table = fTable; local
49 dstP[x] = table[srcP[x]];
78 uint8_t table[256]; local
79 if (!buffer.readByteArray(table, 256)) {
82 return Create(table);
94 void SkTableMaskFilter::MakeGammaTable(uint8_t table[256], SkScalar gamma) { argument
101 table[i] = SkPin32(sk_float_round2int(powf(x, g) * 255), 0, 255);
106 void SkTableMaskFilter::MakeClipTable(uint8_t table[25 argument
[all...]
/external/doclava/res/assets/templates/
H A Ddiff.cs61 var table = $("#hierarchy")[0];
71 if (tr.rowIndex + 1 < table.rows.length) {
72 var tbody = table.rows[tr.rowIndex + 1].parentNode;
79 if (tr.rowIndex + 1 < table.rows.length
80 && $(table.rows[tr.rowIndex + 1]).hasClass("class-entry")) {
81 var tbody = table.rows[tr.rowIndex + 1].parentNode;
88 var table = $("#hierarchy")[0];
99 while (i < table.rows.length && $(table.rows[i]).hasClass("method-entry")) {
100 $(table
[all...]
/external/libexif/libexif/canon/
H A Dmnote-canon-tag.c33 } table[] = { variable in typeref:struct:__anon23648
134 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
135 if (table[i].tag == t) return table[i].name; /* do not translate */
164 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
165 if (table[i].tag == t) return (_(table[i].title));
193 for (i = 0; i < sizeof (table) / sizeo
[all...]
/external/libexif/libexif/pentax/
H A Dmnote-pentax-tag.c33 } table[] = { variable in typeref:struct:__anon23681
146 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
147 if (table[i].tag == t) return (table[i].name);
157 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
158 if (table[i].tag == t) return (_(table[i].title));
167 for (i = 0; i < sizeof (table) / sizeo
[all...]
/external/skia/gm/
H A Dtablecolorfilter.cpp53 static void make_table0(uint8_t table[]) { argument
56 table[i] = (n << 5) | (n << 2) | (n >> 1);
59 static void make_table1(uint8_t table[]) { argument
61 table[i] = i * i / 255;
64 static void make_table2(uint8_t table[]) { argument
67 table[i] = static_cast<uint8_t>(sqrtf(fi) * 255);
72 uint8_t table[256]; make_table0(table); local
73 return SkTableColorFilter::Create(table);
76 uint8_t table[25 local
80 uint8_t table[256]; make_table2(table); local
[all...]
/external/iproute2/netem/
H A Dmaketable.c2 * Experimental data distribution table generator
7 * From this, create the inverse distribution table used to approximate
73 /* Create a (normalized) distribution table from a set of observed
74 * values. The table is fixed to run from (as it happens) -4 to +4,
95 int *table; local
99 table = calloc(DISTTABLESIZE, sizeof(int));
100 if (!table) {
101 perror("table alloc");
112 ++table[index];
118 return table;
123 cumulativedist(int *table, int limit, int *total) argument
135 inverttable(int *table, int inversesize, int tablesize, int cumulative) argument
160 interpolatetable(short *table, int limit) argument
183 printtable(const short *table, int limit) argument
202 int *table; local
[all...]
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Ducm.c64 ucm_printMapping(UCMTable *table, UCMapping *m, FILE *f) { argument
65 printMapping(m, UCM_GET_CODE_POINTS(table, m), UCM_GET_BYTES(table, m), f);
69 ucm_printTable(UCMTable *table, FILE *f, UBool byUnicode) { argument
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 local
530 ucm_checkValidity(UCMTable *table, UCMStates *baseStates) argument
694 UCMTable *table; local
879 UCMTable *table=(UCMTable *)uprv_malloc(sizeof(UCMTable)); local
890 ucm_closeTable(UCMTable *table) argument
901 ucm_resetTable(UCMTable *table) argument
912 ucm_addMapping(UCMTable *table, UCMapping *m, UChar32 codePoints[UCNV_EXT_MAX_UCHARS], uint8_t bytes[UCNV_EXT_MAX_BYTES]) argument
[all...]
/external/icu/icu4c/source/tools/toolutil/
H A Ducm.c64 ucm_printMapping(UCMTable *table, UCMapping *m, FILE *f) { argument
65 printMapping(m, UCM_GET_CODE_POINTS(table, m), UCM_GET_BYTES(table, m), f);
69 ucm_printTable(UCMTable *table, FILE *f, UBool byUnicode) { argument
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 local
530 ucm_checkValidity(UCMTable *table, UCMStates *baseStates) argument
694 UCMTable *table; local
879 UCMTable *table=(UCMTable *)uprv_malloc(sizeof(UCMTable)); local
890 ucm_closeTable(UCMTable *table) argument
901 ucm_resetTable(UCMTable *table) argument
912 ucm_addMapping(UCMTable *table, UCMapping *m, UChar32 codePoints[UCNV_EXT_MAX_UCHARS], uint8_t bytes[UCNV_EXT_MAX_BYTES]) argument
[all...]
/external/chromium_org/chrome/browser/resources/
H A Dgesture_config.css11 display: table;
44 display: table-row;
48 display: table-cell;
59 display: table-cell;
63 display: table-cell;
73 display: table-cell;
80 display: table;

Completed in 627 milliseconds

1234567891011>>