/frameworks/base/graphics/java/android/graphics/ |
TableMaskFilter.java | 24 public TableMaskFilter(byte[] table) { 25 if (table.length < 256) { 26 throw new RuntimeException("table.length must be >= 256"); 28 native_instance = nativeNewTable(table); 43 private static native long nativeNewTable(byte[] table);
|
/packages/apps/OMA-DM/engine/dmlib/tool-src/db_wizard_tool/com/mot/dm/dbtool/ |
ValTab.java | 5 public int table = 0x00; field in class:ValTab
|
/external/chromium_org/chrome/browser/resources/memory_internals/ |
list.css | 5 table.list { 10 table.list tr:nth-child(odd) td { 14 table.list td { 19 table.list .header th { 24 table.list .bottom th, 25 table.list th.bottom {
|
/external/chromium_org/base/metrics/ |
stats_table_unittest.cc | 24 // locations in the table. 28 StatsTable table(StatsTable::TableIdentifier(), kMaxThreads, kMaxCounter); 32 int slot_id = table.RegisterThread(thread_name); 35 // Fill up the table with counters. 40 int counter_id = table.FindCounter(counter_name); 45 slot_id = table.RegisterThread("too many threads"); 49 int counter_id = table.FindCounter(counter_base_name); 110 // Create a stats table. 113 StatsTable table(StatsTable::TableIdentifier(), kMaxThreads, kMaxCounter); 114 StatsTable::set_current(&table); [all...] |
/external/chromium_org/native_client_sdk/src/libraries/xray/ |
hashtable.c | 29 XRAY_NO_INSTRUMENT void XRayHashTableGrow(struct XRayHashTable* table); 31 XRAY_NO_INSTRUMENT void XRayHashTableInit(struct XRayHashTable* table, 54 int XRayHashTableGetCapacity(struct XRayHashTable* table) { 55 return table->capacity; 59 int XRayHashTableGetCount(struct XRayHashTable* table) { 60 return table->count; 65 void* XRayHashTableLookup(struct XRayHashTable* table, uint32_t key) { 67 uint32_t m = table->capacity - 1; 72 /* An empty entry means the {key, data} isn't in the table. */ 73 if (NULL == table->array[j].data) 176 struct XRayHashTable* table; local [all...] |
/external/libexif/libexif/fuji/ |
mnote-fuji-tag.c | 34 } table[] = { variable in typeref:struct:__anon27482 76 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++) 77 if (table[i].tag == t) return (table[i].name); 87 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++) 88 if (table[i].tag == t) return (_(table[i].title)); 97 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++ [all...] |
/external/speex/libspeex/ |
fftwrap.c | 86 struct drft_lookup *table; local 87 table = speex_alloc(sizeof(struct drft_lookup)); 88 spx_drft_init((struct drft_lookup *)table, size); 89 return (void*)table; 92 void spx_fft_destroy(void *table) 94 spx_drft_clear(table); 95 speex_free(table); 98 void spx_fft(void *table, float *in, float *out) 103 float scale = 1./((struct drft_lookup *)table)->n; 105 for (i=0;i<((struct drft_lookup *)table)->n;i++ 139 struct mkl_config *table = (struct mkl_config *) speex_alloc(sizeof(struct mkl_config)); local 182 struct fftw_config *table = (struct fftw_config *) speex_alloc(sizeof(struct fftw_config)); local 255 struct kiss_config *table; local [all...] |
/external/srec/portable/src/ |
phashtable.c | 40 PHashTable *table; member in struct:PHashTableEntry_t 76 PHashTable **table) 81 if (table == NULL || 125 *table = tmp; 129 ESR_ReturnCode PHashTableDestroy(PHashTable *table) 133 if (table == NULL) 136 block = table->entryBlock; 144 FREE(table->entries); 145 FREE(table); 149 ESR_ReturnCode PHashTableGetSize(PHashTable *table, [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderTableCol.cpp | 51 // If border was changed, notify table. 53 RenderTable* table = this->table(); local 54 if (table && !table->selfNeedsLayout() && !table->normalChildNeedsLayout() && oldStyle && oldStyle->border() != style()->border()) 55 table->invalidateCollapsedBorders(); 75 table()->addColumn(this); 81 table()->removeColumn(this); 93 // with libraries.uc.edu, which makes a <p> be a table-column 124 RenderTable* RenderTableCol::table() const function in class:WebCore::RenderTableCol 126 RenderObject* table = parent(); local [all...] |
/external/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/ |
table.pass.cpp | 14 // const mask* table() const throw(); 25 assert(f.table() == f.classic_table()); 28 std::ctype<char>::mask table[256]; local 29 std::locale l(std::locale::classic(), new std::ctype<char>(table)); 31 assert(f.table() == table);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/ |
table.pass.cpp | 14 // const mask* table() const throw(); 25 assert(f.table() == f.classic_table()); 28 std::ctype<char>::mask table[256]; local 29 std::locale l(std::locale::classic(), new std::ctype<char>(table)); 31 assert(f.table() == table);
|
/libcore/luni/src/main/java/java/lang/ |
ThreadLocal.java | 56 Object[] table = values.table; local 58 if (this.reference == table[index]) { 59 return (T) table[index + 1]; 134 * (hash & (table.length - 1)) points to a key and not a value. 160 private Object[] table; field in class:ThreadLocal.Values 190 this.table = fromParent.table.clone(); 205 Object[] table = this.table; local 268 Object[] table = this.table; local 425 Object[] table = this.table; local [all...] |
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
OpenTypeVerticalDataTest.cpp | 51 const TestTable* table = OpenType::validateTable<TestTable>(buffer); local 52 EXPECT_TRUE(table); 55 table = OpenType::validateTable<TestTable>(buffer); 56 EXPECT_FALSE(table); 59 table = OpenType::validateTable<TestTable>(buffer); 60 EXPECT_TRUE(table); 66 const TestTable* table = OpenType::validateTable<TestTable>(buffer); local 67 ASSERT_TRUE(table); 70 EXPECT_FALSE(table->validateOffset<uint8_t>(*buffer, -1)); 74 EXPECT_TRUE(table->validateOffset<uint8_t>(*buffer, offset)) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
symbol_table.c | 30 * Link to the next symbol in the table with the same name 39 * Link to the next symbol in the table with the same scope 74 /** Linkage in list of all headers in a given symbol table. */ 101 /** Hash table containing all symbols in the symbol table. */ 107 /** List of all symbol headers in the table. */ 134 check_symbol_table(struct _mesa_symbol_table *table) 139 for (scope = table->current_scope; scope != NULL; scope = scope->next) { 159 _mesa_symbol_table_pop_scope(struct _mesa_symbol_table *table) 161 struct scope_level *const scope = table->current_scope 458 struct _mesa_symbol_table *table = calloc(1, sizeof(*table)); local [all...] |
/external/chromium_org/third_party/skia/tools/lua/ |
agg_dash.lua | 9 function increment_inner(table, key, value) 10 table[key] = (table[key] or 0) + value 13 function increment(table, tableKey, key, value) 14 if (table[tableKey] == nil) then 15 table[tableKey] = {} 17 increment_inner(table[tableKey], key, value)
|
/external/icu/icu4c/source/test/letest/ |
FontTableCache.cpp | 19 const void *table; member in struct:FontTableCacheEntry 35 fTableCache[i].table = NULL; 43 LE_DELETE_ARRAY(fTableCache[i].table); 46 fTableCache[i].table = NULL; 55 void FontTableCache::freeFontTable(const void *table) const 57 LE_DELETE_ARRAY(table); 65 return fTableCache[i].table; 69 const void *table = readFontTable(tableTag, length); local 71 ((FontTableCache *) this)->add(tableTag, table, length); 73 return table; [all...] |
/external/icu/icu4c/source/test/perf/leperf/ |
FontTableCache.cpp | 19 const void *table; member in struct:FontTableCacheEntry 35 fTableCache[i].table = NULL; 43 LE_DELETE_ARRAY(fTableCache[i].table); 46 fTableCache[i].table = NULL; 55 void FontTableCache::freeFontTable(const void *table) const 57 LE_DELETE_ARRAY(table); 65 return fTableCache[i].table; 69 const void *table = readFontTable(tableTag, length); local 71 ((FontTableCache *) this)->add(tableTag, table, length); 73 return table; [all...] |
/external/mesa3d/src/mesa/program/ |
symbol_table.c | 30 * Link to the next symbol in the table with the same name 39 * Link to the next symbol in the table with the same scope 74 /** Linkage in list of all headers in a given symbol table. */ 101 /** Hash table containing all symbols in the symbol table. */ 107 /** List of all symbol headers in the table. */ 134 check_symbol_table(struct _mesa_symbol_table *table) 139 for (scope = table->current_scope; scope != NULL; scope = scope->next) { 159 _mesa_symbol_table_pop_scope(struct _mesa_symbol_table *table) 161 struct scope_level *const scope = table->current_scope 458 struct _mesa_symbol_table *table = calloc(1, sizeof(*table)); local [all...] |
/external/skia/tools/lua/ |
agg_dash.lua | 9 function increment_inner(table, key, value) 10 table[key] = (table[key] or 0) + value 13 function increment(table, tableKey, key, value) 14 if (table[tableKey] == nil) then 15 table[tableKey] = {} 17 increment_inner(table[tableKey], key, value)
|
/art/runtime/ |
mapping_table.h | 25 // A utility for processing the raw uleb128 encoded mapping table created by the quick compiler. 32 const uint8_t* table = encoded_table_; variable 33 if (table == nullptr) { 36 return DecodeUnsignedLeb128(&table); 41 const uint8_t* table = encoded_table_; variable 42 if (table == nullptr) { 45 uint32_t total_size = DecodeUnsignedLeb128(&table); 46 uint32_t pc_to_dex_size = DecodeUnsignedLeb128(&table); 52 const uint8_t* table = encoded_table_; local 53 if (table != nullptr) 124 const uint8_t* table = encoded_table_; variable 128 DecodeUnsignedLeb128(&table); \/\/ Total_size, unused. variable 135 const uint8_t* table = encoded_table_; local [all...] |
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/ |
symshift.pl | 3 # "plane" and create combined symbol table 9 # This script creates a symbol table which must be used when 87 and converts into one symbol table with ids in range [0..2^16-1] which 127 foreach $table (@alltables) { 128 $table{$plane{$table}} = $table; 184 foreach $table (@alltables) { 185 #printf STDERR "doing table $table (plane %d)\n", $plane{$table} [all...] |
/external/chromium_org/ui/file_manager/file_manager/foreground/css/ |
table.css | 5 /* Derived from /ui/webui/resources/css/table.css. */ 11 .table[hasElementFocus] > list > [lead] { 15 .table-row { 21 .table-row-cell { 26 .table-row-cell > * { 32 .table-header { 37 .table-header-inner { 45 .table-header-cell { 52 .table-header-label { 58 .table-header-splitter [all...] |
/external/chromium_org/third_party/brotli/src/woff2/ |
font.cc | 28 Font::Table* Font::FindTable(uint32_t tag) { 29 std::map<uint32_t, Font::Table>::iterator it = tables.find(tag); 33 const Font::Table* Font::FindTable(uint32_t tag) const { 34 std::map<uint32_t, Font::Table>::const_iterator it = tables.find(tag); 51 Font::Table table; local 52 if (!file.ReadU32(&table.tag) || 53 !file.ReadU32(&table.checksum) || 54 !file.ReadU32(&table.offset) || 55 !file.ReadU32(&table.length)) 85 const Font::Table& table = i.second; local 107 const Font::Table& table = i.second; local [all...] |
woff2_enc.cc | 74 bool ReadLongDirectory(Buffer* file, std::vector<Table>* tables, 77 Table* table = &(*tables)[i]; local 78 if (!file->ReadU32(&table->tag) || 79 !file->ReadU32(&table->flags) || 80 !file->ReadU32(&table->src_length) || 81 !file->ReadU32(&table->transform_length) || 82 !file->ReadU32(&table->dst_length)) { 96 void StoreTableEntry(const Table& table, size_t* offset, uint8_t* dst) 220 Table table; variable [all...] |
/frameworks/rs/cpu_ref/linkloader/include/impl/ |
ELFSectionSymTab.hxx | 26 for (size_t i = 0; i < table.size(); ++i) { 27 delete table[i]; 34 for (size_t i = 0; i < table.size(); ++i) { 35 if (table[i] && table[i]->isConcreteFunc()) { 45 for (size_t i = 0; i < table.size(); ++i) { 46 if (table[i] && table[i]->isExternFunc()) { 55 for (size_t i = 0; i < table.size(); ++i) { 56 ELFSymbolTy *symbol = table[i] [all...] |