/external/chromium_org/ppapi/proxy/ |
flash_font_file_resource.cc | 34 PP_Bool FlashFontFileResource::GetFontTable(uint32_t table, 45 std::string* contents = GetFontTable(table); 49 RENDERER, PpapiHostMsg_FlashFontFile_GetFontTable(table), 54 contents = AddFontTable(table, out_contents); 67 std::string* FlashFontFileResource::GetFontTable(uint32_t table) const { 68 FontTableMap::const_iterator found = font_tables_.find(table); 74 std::string* FlashFontFileResource::AddFontTable(uint32_t table, 77 font_tables_[table] = heap_string;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
TableLayout.h | 35 explicit TableLayout(RenderTable* table) 36 : m_table(table)
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
QuantizedAllocation.cpp | 36 unsigned short QuantizedAllocation::table[QuantizedAllocation::kTableSize]; member in class:WTF::QuantizedAllocation 44 table[i] = currRounding - 1;
|
/external/chromium_org/third_party/icu/source/test/letest/ |
FontTableCache.h | 29 virtual void freeFontTable(const void *table) const; 33 void add(LETag tableTag, const void *table);
|
/external/chromium_org/ui/webui/resources/css/ |
table.css | 9 .table[hasElementFocus] > list > [lead] { 14 .table[hasElementFocus] > list > [selected] { 19 .table[hasElementFocus] > list > [lead][selected], 31 .table:focus { 35 .table { 41 .table-row { 47 .table-row-cell { 52 .table-row-cell > * { 59 .table-header { 65 .table-header-inner [all...] |
/external/icu4c/samples/layout/ |
FontTableCache.h | 27 virtual void freeFontTable(const void *table) const; 31 void add(LETag tableTag, const void *table);
|
/external/icu4c/test/letest/ |
FontTableCache.h | 29 virtual void freeFontTable(const void *table) const; 33 void add(LETag tableTag, const void *table);
|
/external/srec/srec/clib/ |
log_add.h | 32 ASSERT(logtab->table); 34 return (logtab->table[(int)(ival)]);
|
/system/core/include/corkscrew/ |
symbol_table.h | 39 * Loads a symbol table from a given file. 45 * Frees a symbol table. 47 void free_symbol_table(symbol_table_t* table); 50 * Finds a symbol associated with an address in the symbol table. 53 const symbol_t* find_symbol(const symbol_table_t* table, uintptr_t addr);
|
/art/runtime/ |
vmap_table.h | 28 explicit VmapTable(const uint8_t* table) : table_(table) { 33 const uint8_t* table = table_; local 34 size_t size = DecodeUnsignedLeb128(&table); 36 uint16_t entry = DecodeUnsignedLeb128(&table); 38 entry = DecodeUnsignedLeb128(&table); 44 const uint8_t* table = table_; local 45 return DecodeUnsignedLeb128(&table); 60 const uint8_t* table = table_; local 61 size_t end = DecodeUnsignedLeb128(&table); 90 const uint8_t* table = table_; local [all...] |
/external/chromium_org/third_party/qcms/src/ |
transform_util.h | 29 #define CLU(table,x,y,z) table[(x*len + y*x_len + z*xy_len)*3] 34 float lut_interp_linear(double value, uint16_t *table, size_t length); 35 float lut_interp_linear_float(float value, float *table, size_t length); 36 uint16_t lut_interp_linear16(uint16_t input_value, uint16_t *table, size_t length);
|
/external/guava/guava/src/com/google/common/collect/ |
RegularImmutableSet.java | 32 @VisibleForTesting final transient Object[] table; field in class:RegularImmutableSet 33 // 'and' with an int to get a valid table index. 38 Object[] elements, int hashCode, Object[] table, int mask) { 40 this.table = table; 50 Object candidate = table[i & mask];
|
/external/valgrind/main/include/ |
pub_tool_hashtable.h | 3 /*--- A hash table implementation. pub_tool_hashtable.h ---*/ 34 /* Generic type for a separately-chained hash table. Via a kind of dodgy 52 /* Make a new table. Allocates the memory with VG_(calloc)(), so can 53 be freed with VG_(free)(). The table starts small but will 58 /* Count the number of nodes in a table. */ 59 extern Int VG_(HT_count_nodes) ( VgHashTable table ); 61 /* Add a node to the table. Duplicate keys are permitted. */ 64 /* Looks up a VgHashNode in the table. Returns NULL if not found. If entries 67 extern void* VG_(HT_lookup) ( VgHashTable table, UWord key ); 69 /* Removes a VgHashNode from the table. Returns NULL if not found. * [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);
|
/external/v8/test/cctest/ |
test-weakmaps.cc | 41 // Do not use handles for the hash table, it would make entries strong. 43 ObjectHashTable* table = ObjectHashTable::cast(table_obj); local 44 weakmap->set_table(table); 52 Handle<ObjectHashTable> table = PutIntoObjectHashTable( local 53 Handle<ObjectHashTable>(ObjectHashTable::cast(weakmap->table())), 56 weakmap->set_table(*table); 88 CHECK_EQ(1, ObjectHashTable::cast(weakmap->table())->NumberOfElements()); 93 CHECK_EQ(1, ObjectHashTable::cast(weakmap->table())->NumberOfElements()); 95 0, ObjectHashTable::cast(weakmap->table())->NumberOfDeletedElements()); 111 CHECK_EQ(1, ObjectHashTable::cast(weakmap->table())->NumberOfElements()) [all...] |
/external/chromium_org/tools/usb_ids/ |
usb_ids.py | 23 table = {} 30 table[vendor["id"]] = vendor 46 return table 48 def GenerateDeviceDefinitions(table): 51 for vendor_id in sorted(table.keys()): 52 vendor = table[vendor_id] 65 def GenerateVendorDefinitions(table): 66 output = "const size_t UsbIds::vendor_size_ = %d;\n" % len(table.keys()) 69 for vendor_id in sorted(table.keys()): 70 vendor = table[vendor_id 88 table = ParseTable(opts.input) variable [all...] |
/external/chromium_org/third_party/ots/src/ |
os2.cc | 15 Buffer table(data, length); 20 if (!table.ReadU16(&os2->version) || 21 !table.ReadS16(&os2->avg_char_width) || 22 !table.ReadU16(&os2->weight_class) || 23 !table.ReadU16(&os2->width_class) || 24 !table.ReadU16(&os2->type) || 25 !table.ReadS16(&os2->subscript_x_size) || 26 !table.ReadS16(&os2->subscript_y_size) || 27 !table.ReadS16(&os2->subscript_x_offset) || 28 !table.ReadS16(&os2->subscript_y_offset) | [all...] |
head.cc | 15 Buffer table(data, length); 19 if (!table.ReadU32(&version) || 20 !table.ReadU32(&file->head->revision)) { 29 if (!table.Skip(4)) { 34 if (!table.ReadTag(&magic) || 39 if (!table.ReadU16(&file->head->flags)) { 46 if (!table.ReadU16(&file->head->ppem)) { 65 if (!table.ReadR64(&file->head->created) || 66 !table.ReadR64(&file->head->modified)) { 70 if (!table.ReadS16(&file->head->xmin) | [all...] |
metrics.cc | 16 bool ParseMetricsHeader(OpenTypeFile *file, Buffer *table, 18 if (!table->ReadS16(&header->ascent) || 19 !table->ReadS16(&header->descent) || 20 !table->ReadS16(&header->linegap) || 21 !table->ReadU16(&header->adv_width_max) || 22 !table->ReadS16(&header->min_sb1) || 23 !table->ReadS16(&header->min_sb2) || 24 !table->ReadS16(&header->max_extent) || 25 !table->ReadS16(&header->caret_slope_rise) || 26 !table->ReadS16(&header->caret_slope_run) | [all...] |
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
test_mock.py | 115 table = mock.MockTable({'Key': 'Value'}) 116 self.assertEqual('Value', table.get('KEY')) 117 self.assertEqual('Value', table['key']) 120 table = mock.MockTable([('Key', 'Value')]) 121 self.assertEqual('Value', table.get('KEY')) 122 self.assertEqual('Value', table['key']) 125 table = mock.MockTable((('Key', 'Value'),)) 126 self.assertEqual('Value', table.get('KEY')) 127 self.assertEqual('Value', table['key']) 130 table = mock.MockTable( [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
NewCustomTableTest.java | 35 @Override protected Table<String, Integer, Character> create( 46 Table<String, Integer, Character> table local 48 populate(table, data); 49 return table; 53 table = create("foo", 3, 'a', "bar", 1, 'b', "foo", 2, 'c'); 54 ASSERT.that(table.rowKeySet()).hasContentsInOrder("foo", "bar"); 58 table = create("foo", 3, 'a', "bar", 1, 'b', "foo", 2, 'c'); 59 ASSERT.that(table.row("foo").keySet()).hasContentsInOrder(2, 3);
|
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...] |
/external/stlport/src/ |
time_facets.cpp | 65 // _Init_time_info: initialize table with 69 static void _Init_timeinfo_base(_Time_Info_Base& table) { 70 table._M_time_format = "%H:%M:%S"; 71 table._M_date_format = "%m/%d/%y"; 72 table._M_date_time_format = "%m/%d/%y"; 75 static void _Init_timeinfo(_Time_Info& table) { 78 table._M_dayname[i] = default_dayname[i]; 80 table._M_monthname[i] = default_monthname[i]; 81 table._M_am_pm[0] = "AM"; 82 table._M_am_pm[1] = "PM" 149 const string& format, const _TimeInfo& table, const tm* t) { variable 216 const _TimeInfo& table, const tm* t) { variable [all...] |
/ndk/sources/cxx-stl/stlport/src/ |
time_facets.cpp | 65 // _Init_time_info: initialize table with 69 static void _Init_timeinfo_base(_Time_Info_Base& table) { 70 table._M_time_format = "%H:%M:%S"; 71 table._M_date_format = "%m/%d/%y"; 72 table._M_date_time_format = "%m/%d/%y"; 75 static void _Init_timeinfo(_Time_Info& table) { 78 table._M_dayname[i] = default_dayname[i]; 80 table._M_monthname[i] = default_monthname[i]; 81 table._M_am_pm[0] = "AM"; 82 table._M_am_pm[1] = "PM" 149 const string& format, const _TimeInfo& table, const tm* t) { variable 216 const _TimeInfo& table, const tm* t) { variable [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
ucol_cnt.h | 16 * This module maintains a contraction table structure in expanded form 63 uprv_cnttab_clone(CntTable *table, UErrorCode *status); 65 uprv_cnttab_close(CntTable *table); 67 /* construct the table for output */ 69 uprv_cnttab_constructTable(CntTable *table, uint32_t mainOffset, UErrorCode *status); 70 /* adds more contractions in table. If element is non existant, it creates on. Returns element handle */ 72 uprv_cnttab_addContraction(CntTable *table, uint32_t element, UChar codePoint, uint32_t value, UErrorCode *status); 73 /* sets a part of contraction sequence in table. If element is non existant, it creates on. Returns element handle */ 75 uprv_cnttab_setContraction(CntTable *table, uint32_t element, uint32_t offset, UChar codePoint, uint32_t value, UErrorCode *status); 76 /* inserts a part of contraction sequence in table. Sequences behind the offset are moved back. If element is non existant, it creates on. Returns el (…) [all...] |