Searched defs:table (Results 126 - 150 of 701) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DFontSize.cpp85 // WinIE/Nav4 table for font sizes. Designed to match the legacy font mapping system of HTML.
102 // Strict mode table matches MacIE and Mozilla's settings exactly.
119 // For values outside the range of the table, we use Todd Fahrner's suggested scale
132 // Look up the entry in the table.
138 // Value is outside the range of the table. Apply the scale factor instead.
146 static int findNearestLegacyFontSize(int pixelFontSize, const T* table, int multiplier) argument
148 // Ignore table[0] because xx-small does not correspond to any legacy font size.
150 if (pixelFontSize * 2 < (table[i] + table[i + 1]) * multiplier)
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTableRowElement.cpp59 ContainerNode* table = parentNode(); local
60 if (!table)
62 table = table->parentNode();
63 if (!table || !isHTMLTableElement(table))
73 if (HTMLTableSectionElement* head = toHTMLTableElement(table)->tHead()) {
82 for (Node *node = table->firstChild(); node; node = node->nextSibling()) {
94 if (HTMLTableSectionElement* foot = toHTMLTableElement(table)->tFoot()) {
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLIdentifier.cpp44 DEFINE_STATIC_LOCAL(IdentifierTable, table, ());
45 ASSERT(isMainThread() || !table.isEmpty());
46 return table;
52 const IdentifierTable& table = identifierTable(); local
53 return table.contains(string->hash());
64 const IdentifierTable& table = identifierTable(); local
65 ASSERT(!table.isEmpty());
67 IdentifierTable::const_iterator it = table.find(hash);
68 if (it == table.end())
96 IdentifierTable& table local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableCol.cpp52 // If border was changed, notify table.
54 RenderTable* table = this->table(); local
55 if (table && !table->selfNeedsLayout() && !table->normalChildNeedsLayout() && oldStyle && oldStyle->border() != style()->border())
56 table->invalidateCollapsedBorders();
76 table()->addColumn(this);
82 table()->removeColumn(this);
94 // with libraries.uc.edu, which makes a <p> be a table
125 RenderTable* RenderTableCol::table() const function in class:WebCore::RenderTableCol
127 RenderObject* table = parent(); local
[all...]
H A DRenderTableRow.h46 RenderTable* table() const { return toRenderTable(parent()->parent()); } function in class:WebCore::FINAL
74 if (section()->hasSameDirectionAs(table()))
82 if (section()->hasSameDirectionAs(table()))
/external/chromium_org/third_party/freetype/src/sfnt/
H A Dttpost.c5 /* 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 ar
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/chromium_org/third_party/harfbuzz-ng/src/
H A Dmain.cc29 #include "hb-ot-layout-gdef-table.hh"
98 printf (" %d table(s) found in font\n", num_tables);
100 const OpenTypeTable &table = font.get_table (n_table); local
102 (const char *)table.tag,
103 (unsigned int) table.offset,
104 (unsigned int) table.length);
106 switch (table.tag) {
112 const GSUBGPOS &g = *CastP<GSUBGPOS> (font_data + table.offset);
115 printf (" %d script(s) found in table\n", num_scripts);
147 printf (" %d feature(s) found in table\
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dlocresdata.cpp30 * Lookup a resource bundle table item with fallback on the table level.
33 * This function takes the name of a top-level table and of an item in that table
34 * and performs a lookup of both, falling back until a bundle contains a table
50 UResourceBundle *rb=NULL, table, subTable; local
74 ures_initStackObject(&table);
76 ures_getByKeyWithFallback(rb, tableKey, &table, &errorCode);
80 ures_getByKeyWithFallback(&table,subTableKey, &subTable, &errorCode);
88 ures_getByKeyWithFallback(&table,subTableKe
[all...]
/external/chromium_org/third_party/libwebp/enc/
H A Dcost.c21 // Boolean-cost cost table
55 // For each given level, the following table gives the pattern of contexts to
366 uint16_t* const table = proba->level_cost_[ctype][band][ctx]; local
369 table[0] = VP8BitCost(0, p[1]);
371 table[v] = cost_base + VariableLevelCost(v, p);
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dsinglepix.c119 const _glapi_proc *const table = (_glapi_proc *) GET_DISPATCH(); local
121 (PFNGLGETSEPARABLEFILTEREXTPROC) table[359];
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_texfetch.c54 * Implemented with a 256-entry lookup table.
59 static GLfloat table[256]; local
62 /* compute lookup table now */
67 table[i] = cs / 12.92f;
70 table[i] = (GLfloat) pow((cs + 0.055) / 1.055, 2.4);
75 return table[cs8];
1122 /* check that the table entries are sorted by format name */
/external/chromium_org/third_party/skia/src/effects/
H A DSkTableMaskFilter.cpp20 SkTableMaskFilter::SkTableMaskFilter(const uint8_t table[256]) { argument
21 memcpy(fTable, table, sizeof(fTable));
42 const uint8_t* table = fTable; local
48 dstP[x] = table[srcP[x]];
85 void SkTableMaskFilter::MakeGammaTable(uint8_t table[256], SkScalar gamma) { argument
92 table[i] = SkPin32(sk_float_round2int(powf(x, g) * 255), 0, 255);
97 void SkTableMaskFilter::MakeClipTable(uint8_t table[256], uint8_t min, argument
108 memset(table, 0, min + 1);
112 table[i] = value;
114 memset(table
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dmini_disassembler.cc155 const OpcodeTable& table = s_ia32_opcode_map_[table_index]; // Get our table local
156 unsigned char current_byte = (*start_byte) >> table.shift_;
157 current_byte = current_byte & table.mask_; // Mask out the bits we will use
159 // Check whether the byte we have is inside the table we have.
160 if (current_byte < table.min_lim_ || current_byte > table.max_lim_) {
165 const Opcode& opcode = table.table_[current_byte];
175 // the table for the opcode's next byte.
208 if (table
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dmini_disassembler.cc155 const OpcodeTable& table = s_ia32_opcode_map_[table_index]; // Get our table local
156 unsigned char current_byte = (*start_byte) >> table.shift_;
157 current_byte = current_byte & table.mask_; // Mask out the bits we will use
159 // Check whether the byte we have is inside the table we have.
160 if (current_byte < table.min_lim_ || current_byte > table.max_lim_) {
165 const Opcode& opcode = table.table_[current_byte];
175 // the table for the opcode's next byte.
208 if (table
[all...]
/external/chromium_org/tools/memory_watcher/
H A Dmini_disassembler.cc120 const OpcodeTable& table = s_ia32_opcode_map_[table_index]; // Get our table local
121 unsigned char current_byte = (*start_byte) >> table.shift_;
122 current_byte = current_byte & table.mask_; // Mask out the bits we will use
124 // Check whether the byte we have is inside the table we have.
125 if (current_byte < table.min_lim_ || current_byte > table.max_lim_) {
130 const Opcode& opcode = table.table_[current_byte];
140 // the table for the opcode's next byte.
173 if (table
[all...]
/external/chromium_org/tools/traceline/traceline/sidestep/
H A Dmini_disassembler.cc143 const OpcodeTable& table = s_ia32_opcode_map_[table_index]; // Get our table local
144 unsigned char current_byte = (*start_byte) >> table.shift_;
145 current_byte = current_byte & table.mask_; // Mask out the bits we will use
147 // Check whether the byte we have is inside the table we have.
148 if (current_byte < table.min_lim_ || current_byte > table.max_lim_) {
153 const Opcode& opcode = table.table_[current_byte];
163 // the table for the opcode's next byte.
197 if (table
[all...]
/external/chromium_org/ui/views/controls/table/
H A Dtable_utils.cc5 #include "ui/views/controls/table/table_utils.h"
10 #include "ui/views/controls/table/table_view.h"
104 int GetClosestVisibleColumnIndex(const TableView* table, int x) { argument
106 table->visible_columns());
/external/chromium_org/v8/test/cctest/
H A Dtest-weakmaps.cc48 // Do not use handles for the hash table, it would make entries strong.
50 ObjectHashTable* table = ObjectHashTable::cast(table_obj); local
51 weakmap->set_table(table);
59 Handle<ObjectHashTable> table = PutIntoObjectHashTable( local
60 Handle<ObjectHashTable>(ObjectHashTable::cast(weakmap->table())),
63 weakmap->set_table(*table);
103 CHECK_EQ(1, ObjectHashTable::cast(weakmap->table())->NumberOfElements());
108 CHECK_EQ(1, ObjectHashTable::cast(weakmap->table())->NumberOfElements());
110 0, ObjectHashTable::cast(weakmap->table())->NumberOfDeletedElements());
126 CHECK_EQ(1, ObjectHashTable::cast(weakmap->table())
[all...]
H A Dtest-weaksets.cc48 // Do not use handles for the hash table, it would make entries strong.
50 ObjectHashTable* table = ObjectHashTable::cast(table_obj); local
51 weakset->set_table(table);
59 Handle<ObjectHashTable> table = PutIntoObjectHashTable( local
60 Handle<ObjectHashTable>(ObjectHashTable::cast(weakset->table())),
63 weakset->set_table(*table);
103 CHECK_EQ(1, ObjectHashTable::cast(weakset->table())->NumberOfElements());
108 CHECK_EQ(1, ObjectHashTable::cast(weakset->table())->NumberOfElements());
110 0, ObjectHashTable::cast(weakset->table())->NumberOfDeletedElements());
126 CHECK_EQ(1, ObjectHashTable::cast(weakset->table())
[all...]
/external/clang/test/Analysis/
H A Dmalloc-sizeof.c41 int *table = malloc(sizeof sTable); local
45 return table;
50 int *table = malloc(sizeof sTable); // expected-warning {{Result of 'malloc' is converted to a pointer of type 'int', which is incompatible with sizeof operand type 'const double [10]'}} local
51 return table;
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DCatchStructs.java47 * {@code null-ok;} the underlying table; set in
50 private CatchTable table; field in class:CatchStructs
77 this.table = null;
87 if (table == null) {
88 table = code.getCatches();
99 return table.size();
121 int size = table.size();
130 handlerOffsets.put(table.get(i).getHandlers(), null);
200 int tableSize = table.size();
202 CatchTable.Entry one = table
[all...]
/external/dropbear/libtomcrypt/src/hashes/
H A Dtiger.c39 #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
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DPropertyTooltipProvider.java11 package org.eclipse.wb.internal.core.model.property.table;
27 * @coverage core.model.property.table
97 PropertyTable table = m_site.getTable();
98 // convert location from tooltip to table
101 p = table.toControl(p);
102 // send MouseDown to table
106 table.notifyListeners(SWT.MouseDown, newEvent);
/external/elfutils/libelf/
H A Dnlist.c90 struct nlist_fshash *table; local
113 /* Find a symbol table. We prefer the real symbol table but if it
114 does not exist use the dynamic symbol table. */
138 table. */
152 /* Create the hash table. */
153 table = nlist_fshash_init (nsyms);
154 if (table == NULL)
180 /* And add it to the hash table. Note that we are using the
187 (void) nlist_fshash_overwrite (table, me
[all...]
/external/freetype/src/sfnt/
H A Dttpost.c5 /* 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 ar
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...]

Completed in 2004 milliseconds

1234567891011>>