/development/samples/SampleSyncAdapter/samplesyncadapter_server/static/css/ |
main.css | 47 table {
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
ECAlgorithms.java | 108 ECPoint[] table = new ECPoint[] { local 124 R = R.twicePlus(table[index]);
|
/external/chromium_org/chrome/browser/extensions/activity_log/ |
database_string_table.cc | 19 DatabaseStringTable::DatabaseStringTable(const std::string& table) 20 : table_(table) {} 27 "CREATE TABLE %s (id INTEGER PRIMARY KEY, value TEXT NOT NULL); "
|
/external/chromium_org/chrome/browser/resources/predictors/ |
predictors.css | 19 table {
|
/external/chromium_org/components/webdata/common/ |
web_data_service_backend.cc | 28 void WebDataServiceBackend::AddTable(scoped_ptr<WebDatabaseTable> table) { 30 tables_.push_back(table.release());
|
/external/chromium_org/net/dns/ |
address_sorter_posix.cc | 37 // Returns true if |p1| should precede |p2| in the table. 38 // Sorts table by decreasing prefix size to allow longest prefix matching. 44 // Creates sorted PolicyTable from |table| with |size| entries. 46 AddressSorterPosix::PolicyEntry* table, 48 AddressSorterPosix::PolicyTable result(table, table + size); 53 // Search |table| for matching prefix of |address|. |table| must be sorted by 54 // descending prefix (prefix of another prefix must be later in table). 55 unsigned GetPolicyValue(const AddressSorterPosix::PolicyTable& table, [all...] |
/external/chromium_org/ppapi/proxy/ |
truetype_font_resource.cc | 65 uint32_t table, 71 PpapiHostMsg_TrueTypeFont_GetTable(table, offset, max_data_length),
|
/external/chromium_org/ppapi/thunk/ |
ppb_truetype_font_dev_thunk.cc | 86 uint32_t table, 95 return enter.SetResult(enter.object()->GetTable(table,
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/ |
reset.css | 16 table, caption, tbody, tfoot, thead, tr, th, td {
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
passwd.c | 43 char *passwd, BIO *out, int quiet, int table, int reverse, 54 * -table - format output as table 55 * -reverse - switch table columns 72 int passed_salt = 0, quiet = 0, table = 0, reverse = 0; local 139 else if (strcmp(argv[i], "-table") == 0) 140 table = 1; 185 BIO_printf(bio_err, "-table format output as table\n"); 186 BIO_printf(bio_err, "-reverse switch table columns\n") [all...] |
/external/chromium_org/third_party/ots/src/ |
ots.cc | 132 // We need to parse GDEF table in advance of parsing GSUB/GPOS tables 133 // because they could refer GDEF table. 218 OpenTypeTable table; local 219 if (!file.ReadTag(&table.tag) || 220 !file.ReadU32(&table.chksum) || 221 !file.ReadU32(&table.offset) || 222 !file.ReadU32(&table.length)) { 226 table.uncompressed_length = table.length; 227 tables.push_back(table); 324 OpenTypeTable table; local [all...] |
/external/chromium_org/third_party/skia/tools/lua/ |
count_effects.lua | 12 if type(v) == "table" then
|
/external/chromium_org/tools/sheriffing/ |
waterfallinfo.js | 11 // Create a table cell that acts as a header for its bot section. 89 var table = document.getElementById('build-info'); 95 var headerRow = table.insertRow(-1); 132 table.appendChild(botRowElement);
|
/external/chromium_org/v8/src/ |
weak_collection.js | 80 // Replace the internal table with a new empty table. 160 // Replace the internal table with a new empty table.
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant-apache-bsf.jar | |
/external/guava/guava/src/com/google/common/collect/ |
ForwardingTable.java | 27 * A table which forwards all its method calls to another table. Subclasses 38 implements Table<R, C, V> { 42 @Override protected abstract Table<R, C, V> delegate(); 105 public void putAll(Table<? extends R, ? extends C, ? extends V> table) { 106 delegate().putAll(table);
|
HashBasedTable.java | 32 * Implementation of {@link Table} using hash tables. 46 * access this table concurrently and one of the threads modifies the table, it 96 * table. 98 * @param table the table to copy 100 * in {@code table} is null 103 Table<? extends R, ? extends C, ? extends V> table) { 105 result.putAll(table); [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ComputingConcurrentHashMapTest.java | 172 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local 178 int index = hash & (table.length() - 1); 183 table.set(index, entry); 201 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local 207 int index = hash & (table.length() - 1); 212 table.set(index, entry);
|
/external/icu/icu4c/source/i18n/ |
collationsettings.h | 121 void aliasReordering(const int32_t *codes, int32_t length, const uint8_t *table); 122 UBool setReordering(const int32_t *codes, int32_t length, const uint8_t table[256]); 197 /** 256-byte table for reordering permutation of primary lead bytes; NULL if no reordering. */ 205 * If 0, then the table and codes are aliases. 207 * the table and the codes are in the same memory block, with the codes first.
|
/external/libnl/lib/route/ |
route_utils.c | 18 * @par 1) Translating Routing Table Names 20 * // libnl is only aware of the de facto standard routing table names. 25 * // Translating a table name to its idenfier 26 * int table = rtnl_route_str2table("main"); 31 * rtnl_route_table2str(table, buf, sizeof(buf))); 47 * @name Routing Table Identifier Translations 78 char *rtnl_route_table2str(int table, char *buf, size_t size) 80 return __list_type2str(table, buf, size, &table_names);
|
/external/openssl/apps/ |
passwd.c | 43 char *passwd, BIO *out, int quiet, int table, int reverse, 54 * -table - format output as table 55 * -reverse - switch table columns 72 int passed_salt = 0, quiet = 0, table = 0, reverse = 0; local 139 else if (strcmp(argv[i], "-table") == 0) 140 table = 1; 185 BIO_printf(bio_err, "-table format output as table\n"); 186 BIO_printf(bio_err, "-reverse switch table columns\n") [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/ |
SDL_blit_0.c | 43 map = info->table; 97 map = (Uint16 *)info->table; 131 map = info->table; 169 map = (Uint32 *)info->table; 199 Uint8 *palmap = info->table; 251 Uint8 *palmap = info->table; 285 Uint8 *palmap = info->table; 318 Uint8 *palmap = info->table;
|
SDL_blit_1.c | 47 map = info->table; 94 map = (Uint16 *)info->table; 203 map = info->table; 248 map = (Uint32 *)info->table; 284 Uint8 *palmap = info->table; 326 Uint16 *palmap = (Uint16 *)info->table; 355 Uint8 *palmap = info->table; 385 Uint32 *palmap = (Uint32 *)info->table;
|
/external/skia/tools/lua/ |
count_effects.lua | 12 if type(v) == "table" then
|
/ndk/sources/android/support/src/wcstox/ |
intscan.c | 34 /* Lookup table for digit values. -1==255>=36 -> invalid */ 35 static const unsigned char table[] = { -1, variable 56 const unsigned char *val = table+1;
|