HomeSort by relevance Sort by last modified time
    Searched refs:table (Results 176 - 200 of 1283) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/Tools/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/webp/src/enc/
cost.h 38 static inline int VP8LevelCost(const uint16_t* const table, int level) {
40 + table[level > MAX_VARIABLE_LEVEL ? MAX_VARIABLE_LEVEL : level];
  /cts/tools/tradefed-host/res/report/
cts_result.css 26 table.title {
34 table.summary {
42 table.summary th {
48 table.summary td {
57 table.testsummary {
64 table.testsummary th {
70 table.testsummary td {
76 table.testdetails {
88 table.testdetails th {
97 table.testdetails td
    [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 84 * Decode a content URL into the table, projection, and arguments
88 public String table; field in class:SettingsProvider.SqlArguments
95 this.table = url.getPathSegments().get(0);
96 if (!DatabaseHelper.isValidTable(this.table)) {
97 throw new IllegalArgumentException("Bad root path: " + this.table);
106 this.table = url.getPathSegments().get(0);
107 if (!DatabaseHelper.isValidTable(this.table)) {
108 throw new IllegalArgumentException("Bad root path: " + this.table);
110 if ("system".equals(this.table) || "secure".equals(this.table)) {
146 String table = tableUri.getPathSegments().get(0); local
168 String property = null, table = uri.getPathSegments().get(0); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
consoleLogs.php 30 <table border=0 cellspacing=5 cellpadding=2 width="100%" >
37 </table>
38 <table border="0">
68 </table>
  /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);
  /external/guava/guava-tests/test/com/google/common/collect/
TransposedTableTest.java 29 @Override protected Table<String, Integer, Character> create(
31 Table<Integer, String, Character> original = HashBasedTable.create();
32 Table<String, Integer, Character> table = Tables.transpose(original); local
33 table.clear();
34 populate(table, data);
35 return table;
39 Table<Integer, String, Character> original = HashBasedTable.create();
44 Table<Integer, String, Character> original = HashBasedTable.create();
45 Table<String, Integer, Character> transpose = Tables.transpose(original)
    [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/webrtc/src/system_wrappers/source/
data_log_unittest.cc 21 // A class for storing the values expected from a log table column when
22 // verifying a log table file.
45 // Verifies that the log table stored in the file "log_file" corresponds to
74 // Verifies the table header stored in "line" to correspond with the header
91 // one line read from a log table file. An element can either be a column
118 ASSERT_EQ(DataLog::AddTable(DataLog::Combine("a proper table", 1)), 0);
121 ASSERT_LT(DataLog::AddTable(DataLog::Combine("table failure", 1)), 0);
126 DataLog::Combine("a proper table", 1));
131 DataLog::AddTable(DataLog::Combine("table", 1));
132 DataLog::AddColumn(DataLog::Combine("table", 1), "arrival", 1)
146 FILE* table = fopen("table_1.txt", "r"); local
228 FILE* table = fopen("table_2.txt", "r"); local
251 FILE* table = fopen("table_3.txt", "r"); local
270 FILE* table = fopen("table_4.txt", "r"); local
    [all...]