HomeSort by relevance Sort by last modified time
    Searched refs:table (Results 851 - 875 of 2297) sorted by null

<<31323334353637383940>>

  /external/chromium_org/v8/src/
objects-debug.cc 660 WeakHashTable* table = WeakHashTable::cast(raw_table); local
662 CHECK(DependentCode::cast(table->Lookup(key_obj))->Contains(
686 VerifyHeapPointer(table());
687 CHECK(table()->IsOrderedHashTable() || table()->IsUndefined());
695 VerifyHeapPointer(table());
696 CHECK(table()->IsOrderedHashTable() || table()->IsUndefined());
704 VerifyHeapPointer(table());
705 CHECK(table()->IsOrderedHashTable() || table()->IsUndefined())
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
ucm.h 46 * according to the state table
129 /* @return -1 illegal bytes 0 suitable for base table 1 needs to go into extension table */
136 /* add a mapping to the base or extension table as appropriate */
151 ucm_closeTable(UCMTable *table);
154 ucm_resetTable(UCMTable *table);
160 * Remove mappings with their move flag set from the base table
161 * and move some of them (with UCM_MOVE_TO_EXT) to the extension table.
167 * Read a table from a .ucm file, from after the CHARMAP line to
176 * Check the validity of mappings against a base table's states
    [all...]
  /external/jemalloc/include/jemalloc/internal/
size_classes.sh 190 * SIZE_CLASSES: Complete table of
197 * lg_delta_lookup: Same as lg_delta if a lookup table size class, 'no'
200 * NLBINS: Number of bins supported by the lookup table.
203 * LOOKUP_MAXCLASS: Maximum size class included in lookup table.
240 * The small_size2bin lookup table uses uint8_t to encode each bin index, so we
  /external/sepolicy/tools/
sepolicy-check.c 131 src = hashtab_search(policy->p_types.table, s);
138 tgt = hashtab_search(policy->p_types.table, t);
145 cls = hashtab_search(policy->p_classes.table, c);
152 perm = hashtab_search(cls->permissions.table, p);
158 perm = hashtab_search(cls->comdatum->permissions.table, p);
  /external/skia/src/core/
SkMath.cpp 186 static void build_sintable(uint16_t table[]) {
191 table[i] = SkToU16(ival);
201 static SkFixed interp_table(const uint16_t table[], int index, int partial255) {
205 SkFixed lower = table[index];
206 SkFixed upper = (index == kTableSize - 1) ? SK_Fixed1 : table[index + 1];
  /external/skia/tools/bug_chomper/res/third_party/
jquery.tablednd.js 2 * TableDnD plug-in for JQuery, allows you to drag and drop table rows
24 * Pass a function that will be called when the row is dropped. The function takes 2 parameters: the table
26 * table.rows.
29 * table and the row which the user has started to drag.
45 * <tableID>[]=<rowID1>&<tableID>[]=<rowID2> so that you can send this back to the server. The table must have
60 /** Keep hold of the current table being dragged */
100 /** This function makes all the rows on the table draggable apart from those marked as "NoDrag" */
101 makeDraggable: function(table) {
103 var rows = table.rows; //getElementsByTagName("tr")
104 var config = table.tableDnDConfig
    [all...]
  /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
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
Security2Test.java 54 // to the allSupported table then increment the count of the
104 private void addOrIncrementTable(Map<String, Integer> table, String k) {
106 if (table.containsKey(key)) {
107 int before = table.get(key);
108 table.put(key, before + 1);
110 table.put(key, 1);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
SectionHelper.java 153 * through the setLayoutData method. In some case, creating it will make the table parent
197 Composite table = toolkit.createComposite(composite); local
200 table.setLayout(layout);
201 toolkit.paintBordersFor(table);
203 ((Section) composite).setClient(table);
205 return table;
340 * through the setLayoutData method. In some case, creating it will make the table parent
  /external/libsepol/src/
link.c 137 dest_perm = hashtab_search(dest_class->permissions.table, perm_id);
140 hashtab_search(dest_class->comdatum->permissions.table,
162 ret = hashtab_insert(dest_class->permissions.table,
255 new_class = hashtab_search(state->base->p_classes.table, id);
263 hashtab_search(state->cur->policy->p_classes_scope.table,
306 ret = hashtab_insert(state->base->p_classes.table,
333 hashtab_map(cladatum->permissions.table, permission_copy_callback,
356 base_role = hashtab_search(state->base->p_roles.table, id);
394 ret = hashtab_insert(state->base->p_roles.table,
416 (state->dest_decl->p_roles.table, new_id, new_role))
    [all...]
booleans.c 31 hashtab_search(policydb->p_bools.table, name);
135 *response = (hashtab_search(policydb->p_bools.table, name) != NULL);
156 booldatum = hashtab_search(policydb->p_bools.table, name);
  /external/bison/src/
tables.c 121 /* TABLE_SIZE is the allocated size of both TABLE and CHECK. We start
125 base_number *table; variable
127 /* The value used in TABLE to denote explicit syntax errors
139 | If TABLE (and CHECK) appear to be small to be addressed at |
140 | DESIRED, grow them. Note that TABLE[DESIRED] is to be used, so |
153 fprintf (stderr, "growing table and check from: %d to %d\n",
156 table = xnrealloc (table, table_size, sizeof *table);
163 table[old_size] = 0
    [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/common/extensions/docs/examples/api/cookies/
manager.js 145 var table = select("#cookies");
146 while (table.rows.length > 1) {
147 table.deleteRow(table.rows.length - 1);
179 var table = select("#cookies");
183 var row = table.insertRow(-1);
  /external/chromium_org/net/spdy/
hpack_constants.cc 31 table.reset(mutable_table.release());
38 scoped_ptr<const HpackHuffmanTable> table; member in struct:net::__anon13582::SharedHpackHuffmanTable
328 return *SharedHpackHuffmanTable::GetInstance()->table;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableCellElement.cpp 118 if (HTMLTableElement* table = findParentTable())
119 return table->additionalCellStyle();
177 RenderTableCell* cellAboveRenderer = tableCellRenderer->table()->cellAbove(tableCellRenderer);
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/cocoa/
FontPlatformDataCocoa.mm 294 CFDataRef table = CTFontCopyTable(ctFont, kCTFontTableMort, 0);
295 if (table) {
296 CFRelease(table);
299 table = CTFontCopyTable(ctFont, kCTFontTableMorx, 0);
300 if (table) {
301 CFRelease(table);
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
load_failures.js 107 '<table><tr><th>Test type</th><th>>1 week stale</th><th>>1 day stale, <1 week stale</th></tr>';
128 '<td>' + noBuildersHtml + '<table>' + failureHtml + '</table></td>' +
129 '<td><table>' + staleHtml + '</table></td>' +
132 html += '</table>';
  /external/chromium_org/tools/sheriffing/
failureinfo.js 76 * Build the HTML table row for a test failure. |test| is [ name, testData ].
171 var table = document.getElementById('failure-info'); variable
172 while (table.rows.length > 0) {
173 table.deleteRow(-1);
183 var headerRow = table.insertRow(-1);
189 table.appendChild(buildTestFailureTableRowHTML(flat[i]));
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
ComplexProperty.java 16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
17 import org.eclipse.wb.internal.core.model.property.table.PropertyTooltipProvider;
18 import org.eclipse.wb.internal.core.model.property.table.PropertyTooltipTextProvider;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTableTooltipHelper.java 11 package org.eclipse.wb.internal.core.model.property.table;
28 * @coverage core.model.property.table
39 public PropertyTableTooltipHelper(PropertyTable table) {
40 m_table = table;
  /external/fonttools/Lib/fontTools/ttLib/tables/
otConverters.py 9 """Given a table spec from otData.py, build a converter object for each
10 field of the table. This is called for each table in otData.py, and
41 convertersByName[cls.__name__] = Table(name, repeat, aux, cls)
46 convertersByName[cls.__name__] = Table(name, repeat, aux, cls)
181 table = self.tableClass()
182 table.decompile(reader, font)
183 return table
197 pass # NULL table, ignore
202 table = self.tableClass(
    [all...]
  /external/chromium_org/remoting/webapp/
window_frame.css 44 display: table;
48 display: table-row;
154 display: table-cell;
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodecLatin1.cpp 39 static const UChar table[256] = { member in namespace:WTF
154 if (table[*source] > 0xff)
157 *destination = table[*source];
180 *destination16 = table[*source];
205 *destination16 = table[*source];
230 if (table[b] == c)
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DbModifierWithNotification.java 98 public long insert(String table, String nullColumnHack, ContentValues values) {
100 long rowId = mDb.insert(table, nullColumnHack, values);
140 public int update(String table, ContentValues values, String whereClause, String[] whereArgs) {
143 int count = mDb.update(table, values, whereClause, whereArgs);
154 public int delete(String table, String whereClause, String[] whereArgs) {
156 int count = mDb.delete(table, whereClause, whereArgs);

Completed in 951 milliseconds

<<31323334353637383940>>