/frameworks/base/libs/androidfw/tests/ |
Theme_test.cpp | 40 ResTable table; local 41 ASSERT_EQ(NO_ERROR, table.add(system_arsc, system_arsc_len)); 42 ASSERT_EQ(NO_ERROR, table.add(app_arsc, app_arsc_len)); 44 ResTable::Theme theme1(table);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/data/ |
FilterStackDBHelper.java | 27 private static final String SQL_CREATE_TABLE = "CREATE TABLE "; 32 /** The table name */ 33 public static final String TABLE = "filterstack"; 60 createTable(db, FilterStack.TABLE, CREATE_FILTER_STACK); 65 dropTable(db, FilterStack.TABLE); 69 protected static void createTable(SQLiteDatabase db, String table, String[][] columns) { 71 create.append(table).append('('); 92 protected static void dropTable(SQLiteDatabase db, String table) { 95 db.execSQL("drop table if exists " + table); [all...] |
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
SettingsProvider.java | 131 // Keys (name column) from the 'secure' table that are now in the owner user's 'global' 132 // table, shared across all users 137 // Keys from the 'system' table now moved to 'global' 169 * Decode a content URL into the table, projection, and arguments 173 public String table; field in class:SettingsProvider.SqlArguments 181 this.table = url.getPathSegments().get(0); 182 if (!DatabaseHelper.isValidTable(this.table)) { 183 throw new IllegalArgumentException("Bad root path: " + this.table); 193 this.table = url.getPathSegments().get(0); 194 if (!DatabaseHelper.isValidTable(this.table)) { 242 String table = tableUri.getPathSegments().get(0); local 266 String property = null, table = uri.getPathSegments().get(0); local [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
table_util.js | 6 * @fileoverview DOM utility functions to aid in table navigation. 15 * Utility function to check if a particular table cell is a candidate 17 * @param {Node} cell The table cell. 18 * @return {boolean} Whether or not the table cell is acting as a header cell. 29 * header cells when applied across all table cells. 51 * particular table. 52 * @return {Array} An array that maps indexes representing table columns 117 * Returns a JavaScript array of all the non-nested rows in the given table. 119 * @param {Node} table A table node [all...] |
/external/chromium_org/chrome/renderer/pepper/ |
pepper_flash_font_file_host.cc | 53 uint32_t table) { 59 if (content::GetFontTable(fd_, table, 0 /* offset */, NULL, &length)) { 64 fd_, table, 0 /* offset */, contents_ptr, &length)) {
|
/external/chromium_org/components/visitedlink/renderer/ |
visitedlink_slave.cc | 34 // This function's job is to initialize the table with the given 36 void VisitedLinkSlave::OnUpdateVisitedLinks(base::SharedMemoryHandle table) { 37 DCHECK(base::SharedMemory::IsHandleValid(table)) << "Bad table handle"; 38 // since this function may be called again to change the table, we may need 44 shared_memory_ = new base::SharedMemory(table, true); 59 // now do the whole table because we know the length
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXTableRow.cpp | 70 AXObject* table = parentTable(); local 71 if (!table || !table->isAXTable()) 79 // This allows the table to be the one who sends notifications about tables.
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
prerror.h | 125 ** the high order 24 bits are an identifier of which error table the 127 ** number within the table. NSPR supports error tables whose first 131 ** Error table 0 is defined to match the UNIX system call error table 133 ** library. Other error table numbers are typically formed by 134 ** compacting together the first four characters of the error table 140 ** same. (However, if this is to be done, error table 0 should be 143 ** Libraries defining error codes need only provide a table mapping 145 ** calling a routine to install the table, making it ``known'' to NSPR 146 ** library. Once installed, a table may not be removed. Any erro [all...] |
/external/chromium_org/third_party/ots/src/ |
loca.cc | 16 Buffer table(data, length); 39 if (!table.ReadU16(&offset)) { 51 if (!table.ReadU32(&offset)) {
|
/external/e2fsprogs/e2fsck/ |
gen_crc32table.c | 25 * crc32init_le() - allocate and initialize LE table data 46 * crc32init_be() - allocate and initialize BE table data 62 static void output_table(uint32_t table[], int len, const char *trans) 69 printf("%s(0x%8.8xL), ", trans, table[i]); 71 printf("%s(0x%8.8xL)\n", trans, table[len - 1]);
|
/external/guava/guava-gwt/src/com/google/common/collect/ |
TreeBasedTable_CustomFieldSerializer.java | 48 TreeBasedTable<Object, Object, Object> table local 51 table.row(row.getKey()).putAll((Map<?, ?>) row.getValue()); 53 return table;
|
/external/iproute2/netem/ |
paretonormal.c | 2 * Paretoormal distribution table generator 54 double table[TABLESIZE+1]; local 58 table[i] = x; 61 "# This is the distribution table for the paretonormal distribution.\n" 67 normvalue = (int) rint(table[i]*TABLEFACTOR);
|
/external/libnl/src/ |
nl-fib-lookup.c | 19 " -t, --table <table> Table id\n" 36 int table = RT_TABLE_UNSPEC, scope = RT_SCOPE_UNIVERSE; local 42 {"table", 1, 0, 't'}, 57 table = strtoul(optarg, NULL, 0); 90 flnl_request_set_table(request, table);
|
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/ |
AddColumnTest.java | 17 package android.widget.layout.table; 19 import android.widget.layout.table.AddColumn; 30 * {@link android.widget.layout.table.AddColumn} is 31 * setup to exercise the case of adding row programmatically in a table. 47 mTable = (TableLayout) activity.findViewById(R.id.table);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
tcpmib.h | 39 MIB_TCP6ROW table[ANY_SIZE]; member in struct:_MIB_TCP6TABLE 56 MIB_TCP6ROW2 table[ANY_SIZE]; member in struct:_MIB_TCP6TABLE2 70 MIB_TCPROW2 table[ANY_SIZE]; member in struct:_MIB_TCPTABLE2
|
/external/chromium_org/third_party/qcms/src/ |
transform_util.c | 39 float lut_interp_linear(double value, uint16_t *table, size_t length) 46 value = table[upper]*(1. - (upper - value)) + table[lower]*(upper - value); 52 uint16_t lut_interp_linear16(uint16_t input_value, uint16_t *table, size_t length) 62 value = (table[upper]*(interp) + table[lower]*(65535 - interp))/65535; // 0..65535*65535 70 uint8_t lut_interp_linear_precache_output(uint32_t input_value, uint16_t *table, size_t length) 83 /* the table values range from 0..65535 */ 84 value = (table[upper]*(interp) + table[lower]*(PRECACHE_OUTPUT_MAX - interp)); // 0..(65535*PRECACHE_OUTPUT_MAX [all...] |
/external/chromium_org/net/spdy/ |
hpack_huffman_table_test.cc | 34 explicit HpackHuffmanTablePeer(const HpackHuffmanTable& table) 35 : table_(table) { } 58 void DumpDecodeTable(const DecodeTable& table) { 59 std::vector<DecodeEntry> entries = decode_entries(table); 60 LOG(INFO) << "Table size " << (1 << table.indexed_length) 61 << " prefix " << unsigned(table.prefix_length) 62 << " indexed " << unsigned(table.indexed_length); 64 while (i != table.size()) { 71 for (; (i + j) != table.size(); j++) 146 HpackHuffmanTable table; local 160 HpackHuffmanTable table; local 171 HpackHuffmanTable table; local 181 HpackHuffmanTable table; local 192 HpackHuffmanTable table; local 203 HpackHuffmanTable table; local 214 HpackHuffmanTable table; local 225 HpackHuffmanTable table; local [all...] |
/external/doclava/res/assets/templates/ |
diff.cs | 61 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.rows[i++]).show() [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/ |
ConfigTab.java | 35 import org.eclipse.swt.widgets.Table; 65 Table table; field in class:ConfigTab 104 * @param fullSelection Tells whether the table should have a full line selection or not 112 // Remove old table is present 113 boolean initResources = this.table == null; 114 if (this.table != null) { 121 // Create the "children" table 124 this.table = new Table(tabFolder, style) [all...] |
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
DefaultSignedAttributeTableGenerator.java | 22 private final Hashtable table; field in class:DefaultSignedAttributeTableGenerator 29 table = new Hashtable(); 35 * @param attributeTable initial attribute table to use. 42 table = attributeTable.toHashtable(); 46 table = new Hashtable(); 51 * Create a standard attribute table from the passed in parameters - this will 56 * @param parameters source parameters for table generation. 63 Hashtable std = copyHashTable(table); 101 * @return the populated attribute table
|
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/ |
horizontal_device_metrics_table.cc | 17 #include "sfntly/table/core/horizontal_device_metrics_table.h" 76 : Table(header, data), num_glyphs_(num_glyphs) { 96 FontDataTablePtr table = new HorizontalDeviceMetricsTable(header(), data, local 98 return table.Detach(); 109 HorizontalDeviceMetricsTable* table = local 111 if (table) { 112 table->num_glyphs_ = num_glyphs;
|
/external/chromium_org/third_party/skia/bench/ |
FontCacheBench.cpp | 91 char table[kMaxHashCount]; local 92 sk_bzero(table, sizeof(table)); 97 collisions += table[index]; 98 table[index] = 1;
|
/external/chromium_org/tools/code_coverage/ |
croc_html.py | 186 def AddSectionHeader(self, table, caption, itemtype, is_file=False): 187 """Adds a section header to the coverage table. 190 table: Table to add rows to. 197 table.E('tr').E('th', e_class='secdesc', colspan=8).Text(caption) 199 sec_hdr = table.E('tr') 221 def AddItem(self, table, itemname, stats, attrs, link=None): 225 table: Table to add item to. 231 row = table.E('tr' [all...] |
/external/sfntly/cpp/src/sfntly/table/core/ |
horizontal_device_metrics_table.cc | 17 #include "sfntly/table/core/horizontal_device_metrics_table.h" 76 : Table(header, data), num_glyphs_(num_glyphs) { 96 FontDataTablePtr table = new HorizontalDeviceMetricsTable(header(), data, local 98 return table.Detach(); 109 HorizontalDeviceMetricsTable* table = local 111 if (table) { 112 table->num_glyphs_ = num_glyphs;
|
/external/skia/bench/ |
FontCacheBench.cpp | 91 char table[kMaxHashCount]; local 92 sk_bzero(table, sizeof(table)); 97 collisions += table[index]; 98 table[index] = 1;
|