/external/perfetto/src/trace_processor/storage/ |
D | trace_storage.h | 39 #include "src/trace_processor/tables/android_tables.h" 40 #include "src/trace_processor/tables/counter_tables.h" 41 #include "src/trace_processor/tables/flow_tables.h" 42 #include "src/trace_processor/tables/memory_tables.h" 43 #include "src/trace_processor/tables/metadata_tables.h" 44 #include "src/trace_processor/tables/profiler_tables.h" 45 #include "src/trace_processor/tables/slice_tables.h" 46 #include "src/trace_processor/tables/track_tables.h" 68 using TrackId = tables::TrackTable::Id; 70 using CounterId = tables::CounterTable::Id; [all …]
|
/external/apache-commons-compress/src/test/resources/ |
D | testNumbersNew.numbers | ... Index/Tables/DataList.iwa
Index/Tables/DataList-5.iwa
Index/Tables/HeaderStorageBucket ... |
/external/fonttools/Doc/source/ttLib/ |
D | tables.rst | 2 tables title 60 <module 'ttLib.tables._g_l_y_f'> 62 <class ttLib.tables._g_l_y_f.table__g_l_y_f at 645f400> 65 You must subclass from :py:mod:`fontTools.ttLib.tables.DefaultTable.DefaultTable`. It provides some… 78 # refer to other tables. Do ***not*** keep a reference to 87 # Again, 'ttFont' is there so you can access other tables. 103 .. automodule:: fontTools.ttLib.tables 111 .. automodule:: fontTools.ttLib.tables._a_n_k_r 119 .. automodule:: fontTools.ttLib.tables._a_v_a_r 127 .. automodule:: fontTools.ttLib.tables._b_s_l_n [all …]
|
/external/llvm-project/llvm/test/ObjectYAML/MachO/ |
D | DWARF-debug_info.yaml | 682 # RUN: yaml2obj --docnum=3 %s | obj2yaml | FileCheck %s --check-prefix=MULTI-TABLES 684 # MULTI-TABLES: DWARF: 685 # MULTI-TABLES-NEXT: debug_abbrev: 686 # MULTI-TABLES-NEXT: - ID: 0 687 # MULTI-TABLES-NEXT: Table: 688 # MULTI-TABLES-NEXT: - Code: 0x1 689 # MULTI-TABLES-NEXT: Tag: DW_TAG_compile_unit 690 # MULTI-TABLES-NEXT: Children: DW_CHILDREN_no 691 # MULTI-TABLES-NEXT: Attributes: 692 # MULTI-TABLES-NEXT: - Attribute: DW_AT_low_pc [all …]
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | TablesTest.java | 31 * Tests for {@link Tables}. 40 Tables.toTable(Cell::getRowKey, Cell::getColumnKey, Cell::getValue, HashBasedTable::create); in testToTable() 50 Tables.immutableCell("one", "uno", 1), in testToTable() 51 Tables.immutableCell("two", "dos", 2), in testToTable() 52 Tables.immutableCell("three", "tres", 3)); in testToTable() 57 Tables.toTable( in testToTableNullMerge() 68 Tables.immutableCell("one", "uno", 1), in testToTableNullMerge() 69 Tables.immutableCell("one", "uno", 2)); in testToTableNullMerge() 74 Tables.toTable( in testToTableNullValues() 80 Stream.of(Tables.immutableCell("one", "uno", (Integer) null)).collect(collector); in testToTableNullValues() [all …]
|
/external/python/cpython2/Tools/unicode/ |
D | mkstringprep.py | 47 ############## Read the tables in the RFC ####################### 51 tables = [] variable 69 tables.append((curname, table)) 107 ########### Generate compact Python versions of the tables ############# 110 \"\"\"Library that exposes various tables found in the StringPrep RFC 3454. 112 There are two kinds of tables: sets, for which a member test is provided, 123 name, table = tables[0] 124 del tables[0] 146 name, table = tables[0] 147 del tables[0] [all …]
|
/external/python/cpython3/Tools/unicode/ |
D | mkstringprep.py | 48 ############## Read the tables in the RFC ####################### 53 tables = [] variable 70 tables.append((curname, table)) 110 ########### Generate compact Python versions of the tables ############# 113 \"\"\"Library that exposes various tables found in the StringPrep RFC 3454. 115 There are two kinds of tables: sets, for which a member test is provided, 126 name, table = tables[0] 127 del tables[0] 149 name, table = tables[0] 150 del tables[0] [all …]
|
/external/fonttools/Tests/varLib/ |
D | interpolate_layout_test.py | 72 def expect_ttx(self, font, expected_ttx, tables): argument 74 font.saveXML(path, tables=tables) 83 def check_ttx_dump(self, font, expected_ttx, tables, suffix): argument 87 self.expect_ttx(TTFont(path), expected_ttx, tables) 122 tables = ['GSUB'] 124 self.expect_ttx(instfont, expected_ttx_path, tables) 125 self.check_ttx_dump(instfont, expected_ttx_path, tables, suffix) 146 tables = ['GSUB'] 148 self.expect_ttx(instfont, expected_ttx_path, tables) 149 self.check_ttx_dump(instfont, expected_ttx_path, tables, suffix) [all …]
|
D | varLib_test.py | 95 def expect_ttx(self, font, expected_ttx, tables): argument 97 font.saveXML(path, tables=tables) 106 def check_ttx_dump(self, font, expected_ttx, tables, suffix): argument 110 self.expect_ttx(TTFont(path), expected_ttx, tables) 120 def _run_varlib_build_test(self, designspace_name, font_name, tables, argument 145 self.expect_ttx(varfont, expected_ttx_path, tables) 146 self.check_ttx_dump(varfont, expected_ttx_path, tables, suffix) 156 tables=['GDEF', 'HVAR', 'MVAR', 'fvar', 'gvar'], 174 tables=['avar'], 194 tables=['avar'], [all …]
|
/external/clang/lib/Serialization/ |
D | MultiOnDiskHashTable.h | 1 //===--- MultiOnDiskHashTable.h - Merged set of hash tables -----*- C++ -*-===// 13 // Multiple hash tables from different files are implicitly merged to improve 30 /// \brief A collection of on-disk hash tables, merged when relevant for performance. 33 /// A handle to a file, used when overriding tables. 67 /// \brief The current set of on-disk and merged tables. 72 TableVector Tables; variable 74 /// \brief Files corresponding to overridden tables that we've not yet 88 /// \brief The current set of on-disk tables. 89 table_range tables() { in tables() function 90 auto Begin = Tables.begin(), End = Tables.end(); in tables() [all …]
|
/external/guava/android/guava-tests/test/com/google/common/collect/ |
D | TablesTest.java | 27 * Tests for {@link Tables}. 36 Cell<String, Integer, Character> entry = Tables.immutableCell("foo", 1, 'a'); in testImmutableEntrySerialization() 41 Cell<String, Integer, Character> entry = Tables.immutableCell("foo", 1, 'a'); in testImmutableEntryToString() 44 Cell<String, Integer, Character> nullEntry = Tables.immutableCell(null, null, null); in testImmutableEntryToString() 49 Cell<String, Integer, Character> entry = Tables.immutableCell("foo", 1, 'a'); in testEntryEquals() 52 .addEqualityGroup(entry, Tables.immutableCell("foo", 1, 'a')) in testEntryEquals() 53 .addEqualityGroup(Tables.immutableCell("bar", 1, 'a')) in testEntryEquals() 54 .addEqualityGroup(Tables.immutableCell("foo", 2, 'a')) in testEntryEquals() 55 .addEqualityGroup(Tables.immutableCell("foo", 1, 'b')) in testEntryEquals() 56 .addEqualityGroup(Tables.immutableCell(null, null, null)) in testEntryEquals() [all …]
|
/external/llvm-project/clang/lib/Serialization/ |
D | MultiOnDiskHashTable.h | 1 //===- MultiOnDiskHashTable.h - Merged set of hash tables -------*- C++ -*-===// 12 // Multiple hash tables from different files are implicitly merged to improve 39 /// A collection of on-disk hash tables, merged when relevant for performance. 42 /// A handle to a file, used when overriding tables. 81 /// The current set of on-disk and merged tables. 86 TableVector Tables; variable 88 /// Files corresponding to overridden tables that we've not yet 104 /// The current set of on-disk tables. 105 table_range tables() { in tables() function 106 auto Begin = Tables.begin(), End = Tables.end(); in tables() [all …]
|
/external/arm-trusted-firmware/docs/components/ |
D | xlat-tables-lib-v2-design.rst | 1 Translation (XLAT) Tables Library 4 This document describes the design of the translation tables library (version 2) 6 tables based on a description of the memory layout, as well as setting up system 12 #. Statically allocate translation tables and populate them (at run-time) based 16 #. Support for generating translation tables pertaining to a different 51 translation tables library. 68 library transpose that in a set of translation tables. As a result, the library 69 might create new translation tables, update or split existing ones. 88 The first solution potentially requires less translation tables, hence 91 page tables to refine the mappings. If a single level-2 entry has been used [all …]
|
/external/mesa3d/src/mesa/main/ |
D | get_hash_generator.py | 28 # Generate a C header file containing hash tables of glGet parameter 97 def print_tables(tables): argument 98 for table in tables: 102 for table in tables: 115 # Merge tables with matching parameter lists (i.e. GL and GL_CORE) 116 def merge_tables(tables): argument 118 for api, indices in sorted(tables.items()): 143 tables = defaultdict(lambda:{}) 171 add_to_hash_table(tables[api], hash_val, len(params)) 172 # Also add GLES2 items to the GLES3+ hash tables [all …]
|
/external/webrtc/modules/audio_coding/codecs/isac/main/source/ |
D | transform.c | 18 void WebRtcIsac_InitTransform(TransformTables* tables) { in WebRtcIsac_InitTransform() argument 25 tables->costab1[k] = cos(phase); in WebRtcIsac_InitTransform() 26 tables->sintab1[k] = sin(phase); in WebRtcIsac_InitTransform() 33 tables->costab2[k] = cos(phase); in WebRtcIsac_InitTransform() 34 tables->sintab2[k] = sin(phase); in WebRtcIsac_InitTransform() 39 void WebRtcIsac_Time2Spec(const TransformTables* tables, in WebRtcIsac_Time2Spec() argument 57 tmp1r = tables->costab1[k]; in WebRtcIsac_Time2Spec() 58 tmp1i = tables->sintab1[k]; in WebRtcIsac_Time2Spec() 74 tmp1r = tables->costab2[k]; in WebRtcIsac_Time2Spec() 75 tmp1i = tables->sintab2[k]; in WebRtcIsac_Time2Spec() [all …]
|
/external/perfetto/src/trace_processor/tables/ |
D | macros.h | 20 #include "src/trace_processor/tables/macros_internal.h" 31 // Root tables 32 // Root tables act as the ultimate parent of a heirarcy of tables. All rows of 33 // child tables will be some subset of rows in the parent. Real world examples 34 // of root tables include EventTable and TrackTable. 36 // All root tables implicitly contain an 'id' column which contains the row 50 // be called by root tables passing the PARENT and C and allows for correct type 51 // checking of root tables. 53 // Derived tables 68 // This macro should be called by passing PARENT and C in root tables; this [all …]
|
/external/fonttools/Lib/fontTools/ttLib/ |
D | sfnt.py | 11 classes, since whenever to number of tables changes or whenever 83 tables = {} 88 tables[tag] = entry 89 self.tables = OrderedDict(sorted(tables.items(), key=lambda i: i[1].offset)) 96 return tag in self.tables 101 return self.tables.keys() 105 entry = self.tables[Tag(tag)] 122 del self.tables[Tag(tag)] 152 # default compression level for WOFF 1.0 tables and metadata 243 self.tables = OrderedDict() [all …]
|
D | ttFont.py | 16 a convenient way of accessing tables. 17 Tables will be only decompiled when necessary, ie. when they're actually 67 tables. For SING glyphlets, the cmap table is used to specify Unicode 75 individual tables during decompilation will be ignored, falling 93 self.tables = {} 177 # sort tables using the original font's order 222 The 'tables' argument must either be false (dump all tables) or a 223 list of tables to dump. The 'skipTables' argument may be a list of tables 224 to skip, but only when the 'tables' argument is false. 233 quiet=None, tables=None, skipTables=None, splitTables=False, argument [all …]
|
/external/perfetto/src/trace_processor/importers/proto/ |
D | heap_graph_tracker.h | 55 std::set<tables::HeapGraphObjectTable::Id> visited; 59 tables::HeapGraphObjectTable::Id id, 62 tables::HeapGraphObjectTable::Id id, 123 const std::vector<tables::HeapGraphClassTable::Id>* RowsForType( in RowsForType() 139 std::unique_ptr<tables::ExperimentalFlamegraphNodesTable> BuildFlamegraph( 169 std::map<uint64_t, tables::HeapGraphObjectTable::Id> object_id_to_db_id; 170 std::map<uint64_t, tables::HeapGraphClassTable::Id> type_id_to_db_id; 171 std::map<uint64_t, std::vector<tables::HeapGraphReferenceTable::Id>> 174 std::map<tables::HeapGraphClassTable::Id, 175 std::vector<tables::HeapGraphObjectTable::Id>> [all …]
|
/external/flatbuffers/src/ |
D | flatc_main.cpp | 66 "Generate C++ headers for tables/structs", flatbuffers::CPPMakeRule }, in main() 69 "Generate Go files for tables/structs", nullptr }, in main() 72 "Generate Java classes for tables/structs", in main() 76 "Generate JavaScript code for tables/structs", in main() 80 "Generate Dart classes for tables/structs", flatbuffers::DartMakeRule }, in main() 83 "Generate TypeScript code for tables/structs", in main() 87 "Generate C# classes for tables/structs", in main() 91 "Generate Python files for tables/structs", nullptr }, in main() 94 "Generate Lobster files for tables/structs", nullptr }, in main() 96 flatbuffers::IDLOptions::kLua, "Generate Lua files for tables/structs", in main() [all …]
|
/external/python/google-api-python-client/docs/dyn/ |
D | bigquery_v2.datasets.html | 79 …atasetId value. Before you can delete a dataset, you must delete all its tables, either manually o… 101 …atasetId value. Before you can delete a dataset, you must delete all its tables, either manually o… 106 …teContents: boolean, If True, delete all the tables in the dataset. If False and the dataset conta… 140 …t access to. Queries executed against that view will have read access to tables in this dataset. T… 147 …tables in the dataset, in milliseconds. The minimum value is 3600000 milliseconds (one hour). Once… 149 …tables in the dataset, in milliseconds. Once this property is set, all newly-created partitioned t… 152 …e": "A String", # [Output-only] The date when this dataset or any of its tables was last modified,… 186 …t access to. Queries executed against that view will have read access to tables in this dataset. T… 193 …tables in the dataset, in milliseconds. The minimum value is 3600000 milliseconds (one hour). Once… 195 …tables in the dataset, in milliseconds. Once this property is set, all newly-created partitioned t… [all …]
|
/external/perfetto/src/trace_processor/dynamic/ |
D | experimental_slice_layout_generator.h | 32 static_cast<uint32_t>(tables::SliceTable::ColumnIndex::arg_set_id) + 2; 35 const tables::SliceTable* table); 47 tables::SliceTable::Id InsertSlice( 48 std::map<tables::SliceTable::Id, tables::SliceTable::Id>& id_map, 49 tables::SliceTable::Id id, 50 base::Optional<tables::SliceTable::Id> parent_id); 53 // lifetimes of dynamic tables. 57 const tables::SliceTable* slice_table_;
|
/external/llvm/utils/TableGen/ |
D | DisassemblerEmitter.cpp | 31 /// The emitter produces the tables that the disassembler uses to translate 32 /// instructions. The emitter generates the following tables: 41 /// returned.) This allows considerable space savings in other tables. 42 /// - Six tables (ONEBYTE_SYM, TWOBYTE_SYM, THREEBYTE38_SYM, THREEBYTE3A_SYM, 52 /// occupy the same space in the decode tables. These conflicts are resolved as 56 /// (that is, the attributes specified for it in the LLVM tables specify 73 /// (2) to fix the tables (X86.td and its subsidiaries) so the opcodes are 75 /// (3) to fix the tables to reflect the actual context (for example, required 83 /// X86DisassemblerTables.h contains the interface for the instruction tables, 86 /// tables. [all …]
|
/external/arm-trusted-firmware/include/lib/xlat_tables/ |
D | xlat_tables_v2.h | 25 * tables required for the mapping. 45 * of translation tables. 173 * Number of sub-translation tables to allocate. 176 * Note that this is only for sub-tables ; at the initial lookup level, there 202 * Specify the name of the section where the translation tables have to be 206 * Specify the name of the section where the base translation tables have to 229 * Initialize translation tables from the current list of mmap regions. Calling 237 * Fill all fields of a dynamic translation tables context. It must be done 243 unsigned int mmap_num, uint64_t **tables, 249 * be used before initializing the translation tables. The region cannot be [all …]
|
/external/autotest/database/ |
D | db_utils.py | 26 Renames specified tables in the database 28 Use this to rename a specified set of tables in a database. If a source in 41 def move_tables(manager, src_manager, tables): argument 43 Moves the specified tables from another database 50 @param tables a list of tables to move 52 check_exists(src_manager, tables, TABLE_TYPE) 53 for table in tables: 69 Checks if the tables or views exists. 78 info_table = 'TABLES'
|