HomeSort by relevance Sort by last modified time
    Searched defs:table (Results 26 - 50 of 553) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/inspector/front-end/
MetricsSidebarPane.js 131 "table-cell": true,
132 "table-column": true,
133 "table-column-group": true,
134 "table-footer-group": true,
135 "table-header-group": true,
136 "table-row": true,
137 "table-row-group": true
142 "table-column": true,
143 "table-column-group": true,
144 "table-footer-group": true
    [all...]
CSSKeywordCompletions.js 74 "table-layout": [
294 "none", "inline", "block", "list-item", "run-in", "compact", "inline-block", "table", "inline-table",
295 "table-row-group", "table-header-group", "table-footer-group", "table-row", "table-column-group",
296 "table-column", "table-cell", "table-caption", "-webkit-box", "-webkit-inline-box", "-wap-marquee
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractTableReadTest.java 30 * Test cases for {@link Table} read operations.
36 protected Table<String, Integer, Character> table; field in class:AbstractTableReadTest
39 * Creates a table with the specified data.
41 * @param data the table data, repeating the sequence row key, column key,
47 protected abstract Table<String, Integer, Character>
51 assertEquals(expectedSize, table.size());
56 table = create();
60 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
61 assertTrue(table.contains("foo", 1))
    [all...]
TablesTransformValuesTest.java 40 @Override protected Table<String, Integer, Character> create(
42 Table<String, Integer, String> table = HashBasedTable.create(); local
46 table.put((String) data[i], (Integer) data[i+1], value);
48 return Tables.transformValues(table, FIRST_CHARACTER);
51 // Null support depends on the underlying table and function.
58 table.put("foo", 1, 'a');
65 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
66 Table<String, Integer, Character> other = HashBasedTable.create();
71 table.putAll(other)
    [all...]
AbstractTableTest.java 26 * Test cases for a {@link Table} implementation supporting reads and writes.
35 Table<String, Integer, Character> table, Object... data) {
38 table.put(
52 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
54 table.clear();
55 assertEquals(0, table.size());
56 assertFalse(table.containsRow("foo"));
59 table.clear();
66 assertNull(table.put("foo", 1, 'a'))
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTooltipProvider.java 11 package org.eclipse.wb.internal.core.model.property.table;
27 * @coverage core.model.property.table
97 PropertyTable table = m_site.getTable(); local
98 // convert location from tooltip to table
101 p = table.toControl(p);
102 // send MouseDown to table
106 table.notifyListeners(SWT.MouseDown, newEvent);
IPropertyExceptionHandler.java 11 package org.eclipse.wb.internal.core.model.property.table;
21 * @coverage core.model.property.table
  /dalvik/vm/
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...]
  /external/e2fsprogs/lib/ss/
invocation.c 32 register ss_data **table; local
35 table = _ss_table;
38 if (table == (ss_data **) NULL) {
39 table = (ss_data **) malloc(2 * size);
40 table[0] = table[1] = (ss_data *)NULL;
44 for (sci_idx = 1; table[sci_idx] != (ss_data *)NULL; sci_idx++)
46 table = (ss_data **) realloc((char *)table,
48 table[sci_idx+1] = (ss_data *) NULL
    [all...]
  /external/guava/guava-gwt/src/com/google/common/collect/
HashBasedTable_CustomFieldSerializer.java 41 HashBasedTable<Object, Object, Object> table = HashBasedTable.create(); local
43 table.row(row.getKey()).putAll((Map<?, ?>) row.getValue());
45 return table;
  /external/iproute2/ip/
ip_common.h 45 __u32 table = r->rtm_table; local
47 table = *(__u32*) RTA_DATA(tb[RTA_TABLE]);
48 return table;
  /external/iproute2/netem/
normal.c 2 * Normal distribution table generator
29 double table[TABLESIZE+1]; local
33 table[i] = x;
37 printf("# This is the distribution table for the normal distribution.\n");
39 int value = (int) rint(table[i]*TABLEFACTOR);
  /external/skia/include/effects/
SkTableMaskFilter.h 16 Applies a table lookup on each of the alpha values in the mask.
22 SkTableMaskFilter(const uint8_t table[256]);
25 /** Utility that sets the gamma table
27 static void MakeGammaTable(uint8_t table[256], SkScalar gamma);
29 /** Utility that creates a clipping table: clamps values below min to 0
32 static void MakeClipTable(uint8_t table[256], uint8_t min, uint8_t max);
35 uint8_t table[256]; local
36 MakeGammaTable(table, gamma);
37 return SkNEW_ARGS(SkTableMaskFilter, (table));
41 uint8_t table[256] local
    [all...]
  /external/srec/srec/clib/
log_add.c 56 logtab->table = logtab__table;
58 prdata* table = (prdata *) CALLOC(logtab->add_log_limit + 2, sizeof(prdata), "clib.logadd"); local
59 logtab->table = table;
66 table[ii] = (prdata)(logtab->scale * mul_scale * log(1
69 PRINT_SOME_CODE(" %d,", table[ii]);
74 PLogMessage("L: log table scale is %f\n", (float)logtab->scale);
75 PLogMessage("L: log table has %d entries\n", (int)logtab->add_log_limit);
79 log_report("T: %d %f\n", ii, (float)logtab->table[ii]);
90 ASSERT(logtab->table);
    [all...]
  /external/srec/srec/include/
log_tabl.h 35 const int *table; member in struct:__anon15438
  /external/v8/test/cctest/
test-dictionary.cc 45 Handle<ObjectHashTable> table = FACTORY->NewObjectHashTable(23); local
48 table = PutIntoObjectHashTable(table, a, b);
49 CHECK_EQ(table->NumberOfElements(), 1);
50 CHECK_EQ(table->Lookup(*a), *b);
51 CHECK_EQ(table->Lookup(*b), HEAP->undefined_value());
55 CHECK_EQ(table->NumberOfElements(), 1);
56 CHECK_EQ(table->Lookup(*a), *b);
57 CHECK_EQ(table->Lookup(*b), HEAP->undefined_value());
60 table = PutIntoObjectHashTable(table, a, FACTORY->NewJSArray(13))
106 Handle<ObjectHashSet> table = FACTORY->NewObjectHashSet(1); local
129 Handle<ObjectHashTable> table = FACTORY->NewObjectHashTable(1); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
AddColumn.java 17 package android.widget.layout.table;
30 * This test adds an extra row with an extra column in the table.
41 final TableLayout table = (TableLayout) findViewById(R.id.table);
49 table.addView(newRow, new TableLayout.LayoutParams());
  /frameworks/rs/driver/linkloader/include/
StubLayout.h 25 unsigned char *table; member in class:StubLayout
34 void initStubTable(unsigned char *table, size_t count);
  /ndk/tests/device/test-stlport_shared-exception/jni/
new5.cpp 19 X table; local
  /ndk/tests/device/test-stlport_static-exception/jni/
new5.cpp 19 X table; local
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TableLayout8.java 40 final TableLayout table = (TableLayout) findViewById(R.id.menu); local
45 table.setColumnStretchable(1, mStretch);
49 mStretch = table.isColumnStretchable(1);
51 appendRow(table);
54 private void appendRow(TableLayout table) {
69 table.addView(row, new TableLayout.LayoutParams());
TableLayout7.java 41 final TableLayout table = (TableLayout) findViewById(R.id.menu); local
46 table.setColumnCollapsed(2, mShortcutsCollapsed);
53 table.setColumnCollapsed(0, mCheckmarksCollapsed);
57 mCheckmarksCollapsed = table.isColumnCollapsed(0);
58 mShortcutsCollapsed = table.isColumnCollapsed(2);
60 appendRow(table);
63 private void appendRow(TableLayout table) {
78 table.addView(row, new TableLayout.LayoutParams());
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SignerInformationStore.java 13 private Map table = new HashMap(); field in class:SignerInformationStore
25 List list = (ArrayList)table.get(sid);
29 table.put(sid, list);
104 List list = (ArrayList)table.get(selector);
  /external/llvm/utils/emacs/
llvm-mode.el 6 (defvar llvm-mode-syntax-table nil
7 "Syntax table used while in LLVM mode.")
49 ;; ---------------------- Syntax table ---------------------------
53 (if (not llvm-mode-syntax-table)
55 (setq llvm-mode-syntax-table (make-syntax-table))
59 llvm-mode-syntax-table)))
91 ;; --------------------- Abbrev table -----------------------------
93 (defvar llvm-mode-abbrev-table nil
94 "Abbrev table used while in LLVM mode."
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTableDream.java 22 * Example interactive screen saver: flick photos onto a table.
39 PhotoTable table = (PhotoTable) findViewById(R.id.table); local
40 if (table != null) {
41 table.setDream(this);
51 setContentView(R.layout.table);

Completed in 1239 milliseconds

12 3 4 5 6 7 8 91011>>