Home
last modified time | relevance | path

Searched full:tables (Results 1 – 25 of 4415) sorted by relevance

12345678910>>...177

/external/fonttools/Doc/source/ttLib/
Dtables.rst9 automatically when needed by :py:mod:`fontTools.ttLib`. The tables currently
15 tables/_a_n_k_r
16 tables/_a_v_a_r
17 tables/B_A_S_E_
18 tables/_b_s_l_n
19 tables/C_B_D_T_
20 tables/C_B_L_C_
21 tables/C_F_F_
22 tables/C_F_F__2
23 tables/_c_i_d_g
[all …]
/external/perfetto/src/trace_processor/storage/
Dtrace_storage.h39 #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/
DtestNumbersNew.numbers ... Index/Tables/DataList.iwa Index/Tables/DataList-5.iwa Index/Tables/HeaderStorageBucket ...
/external/fonttools/Tests/varLib/
Dinterpolate_layout_test.py71 def expect_ttx(self, font, expected_ttx, tables): argument
73 font.saveXML(path, tables=tables)
82 def check_ttx_dump(self, font, expected_ttx, tables, suffix): argument
86 self.expect_ttx(TTFont(path), expected_ttx, tables)
121 tables = ['GSUB']
123 self.expect_ttx(instfont, expected_ttx_path, tables)
124 self.check_ttx_dump(instfont, expected_ttx_path, tables, suffix)
145 tables = ['GSUB']
147 self.expect_ttx(instfont, expected_ttx_path, tables)
148 self.check_ttx_dump(instfont, expected_ttx_path, tables, suffix)
[all …]
DvarLib_test.py94 def expect_ttx(self, font, expected_ttx, tables): argument
96 font.saveXML(path, tables=tables)
105 def check_ttx_dump(self, font, expected_ttx, tables, suffix): argument
109 self.expect_ttx(TTFont(path), expected_ttx, tables)
119 def _run_varlib_build_test(self, designspace_name, font_name, tables, argument
144 self.expect_ttx(varfont, expected_ttx_path, tables)
145 self.check_ttx_dump(varfont, expected_ttx_path, tables, suffix)
155 tables=['GDEF', 'HVAR', 'MVAR', 'fvar', 'gvar'],
173 tables=['avar'],
193 tables=['avar'],
[all …]
/external/python/cpython3/Tools/unicode/
Dmkstringprep.py48 ############## 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/python/cpython2/Tools/unicode/
Dmkstringprep.py47 ############## 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/google-api-python-client/googleapiclient/discovery_cache/documents/
Darea120tables.v1alpha1.json20 "https://www.googleapis.com/auth/tables": {
21 "description": "See, edit, create, and delete your tables in Tables by Area 120"
29 "canonicalName": "Area120 Tables",
32 "documentationLink": "https://support.google.com/area120-tables/answer/10011390",
123 "tables": { object
127 "flatPath": "v1alpha1/tables/{tablesId}",
129 "id": "area120tables.tables.get",
135 "description": "Required. The name of the table to retrieve. Format: tables/{table}",
137 "pattern": "^tables/[^/]+$",
152 "https://www.googleapis.com/auth/tables"
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DTablesTest.java29 * Tests for {@link Tables}.
40 Tables.toTable(Cell::getRowKey, Cell::getColumnKey, Cell::getValue, HashBasedTable::create); in testToTableSanityTest()
45 .expectCollects(expected, Tables.immutableCell("one", "uno", 1)); in testToTableSanityTest()
50 Tables.toTable( in testToTableMergingSanityTest()
61 expected, Tables.immutableCell("one", "uno", 1), Tables.immutableCell("one", "uno", 2)); in testToTableMergingSanityTest()
66 Cell<String, Integer, Character> entry = Tables.immutableCell("foo", 1, 'a'); in testImmutableEntrySerialization()
71 Cell<String, Integer, Character> entry = Tables.immutableCell("foo", 1, 'a'); in testImmutableEntryToString()
74 Cell<String, Integer, Character> nullEntry = Tables.immutableCell(null, null, null); in testImmutableEntryToString()
79 Cell<String, Integer, Character> entry = Tables.immutableCell("foo", 1, 'a'); in testEntryEquals()
82 .addEqualityGroup(entry, Tables.immutableCell("foo", 1, 'a')) in testEntryEquals()
[all …]
/external/clang/lib/Serialization/
DMultiOnDiskHashTable.h1 //===--- 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/
DTablesTest.java27 * 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/arm-trusted-firmware/docs/components/
Dxlat-tables-lib-v2-design.rst1 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/perfetto/src/trace_processor/importers/proto/
Dheap_graph_tracker.h55 std::set<tables::HeapGraphObjectTable::Id> visited;
59 tables::HeapGraphObjectTable::Id id,
62 tables::HeapGraphObjectTable::Id id,
127 const std::vector<tables::HeapGraphClassTable::Id>* RowsForType( in RowsForType()
143 std::unique_ptr<tables::ExperimentalFlamegraphNodesTable> BuildFlamegraph(
173 std::map<uint64_t, tables::HeapGraphObjectTable::Id> object_id_to_db_id;
174 std::map<uint64_t, tables::HeapGraphClassTable::Id> type_id_to_db_id;
175 std::map<uint64_t, std::vector<tables::HeapGraphReferenceTable::Id>>
178 std::map<tables::HeapGraphClassTable::Id,
179 std::vector<tables::HeapGraphObjectTable::Id>>
[all …]
Dflamegraph_construction_algorithms.cc42 std::unique_ptr<tables::ExperimentalFlamegraphNodesTable> tbl;
48 const tables::StackProfileCallsiteTable& callsites_tbl = in GetMergedCallsites()
50 const tables::StackProfileFrameTable& frames_tbl = in GetMergedCallsites()
52 const tables::SymbolTable& symbols_tbl = storage->symbol_table(); in GetMergedCallsites()
53 const tables::StackProfileMappingTable& mapping_tbl = in GetMergedCallsites()
98 const tables::StackProfileCallsiteTable& callsites_tbl = in BuildFlamegraphTableTreeStructure()
105 std::unique_ptr<tables::ExperimentalFlamegraphNodesTable> tbl( in BuildFlamegraphTableTreeStructure()
106 new tables::ExperimentalFlamegraphNodesTable( in BuildFlamegraphTableTreeStructure()
133 tables::ExperimentalFlamegraphNodesTable::Row row{}; in BuildFlamegraphTableTreeStructure()
199 static std::unique_ptr<tables::ExperimentalFlamegraphNodesTable>
[all …]
/external/mesa3d/src/mesa/main/
Dget_hash_generator.py28 # 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/fonttools/Doc/source/ttLib/tables/
DVTT_related.rst1 Visual TrueType Private Tables
7 .. automodule:: fontTools.ttLib.tables.T_S_I__0
15 .. automodule:: fontTools.ttLib.tables.T_S_I__1
23 .. automodule:: fontTools.ttLib.tables.T_S_I__2
31 .. automodule:: fontTools.ttLib.tables.T_S_I__3
39 .. automodule:: fontTools.ttLib.tables.T_S_I__5
47 .. automodule:: fontTools.ttLib.tables.T_S_I_B_
55 .. automodule:: fontTools.ttLib.tables.T_S_I_C_
63 .. automodule:: fontTools.ttLib.tables.T_S_I_D_
71 .. automodule:: fontTools.ttLib.tables.T_S_I_J_
[all …]
/external/webrtc/modules/audio_coding/codecs/isac/main/source/
Dtransform.c18 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/
Dmacros.h20 #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/
Dsfnt.py11 classes, since whenever the 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 …]
DttFont.py18 accessing tables. Tables will be only decompiled when necessary, ie. when
32 For details of the objects returned when accessing each table, see :ref:`tables`.
79 will be ignored, and the binary data will be returned for those tables instead.
102 self.tables = {}
165 reorderTables (Option[bool]): If true (the default), reorder the tables,
186 # sort tables using the original font's order
231 The 'tables' argument must either be false (dump all tables) or a
232 list of tables to dump. The 'skipTables' argument may be a list of tables
233 to skip, but only when the 'tables' argument is false.
242 quiet=None, tables=None, skipTables=None, splitTables=False, argument
[all …]
/external/perfetto/docs/analysis/
Dtrace-processor.md6 contained in a consistent set of tables. It also has other features including
25 data inside, and exposing it in a set of database tables which can be queried
122 when querying tables in trace processor.
129 ## Object-oriented tables
145 different tables for each type of object. For example, we have a `track` table
147 tables "inheriting from" the `track` table.
150 for inheritance between tables for interested readers.
152 Inheritance between the tables works in the natural way (i.e. how it works in
157 NOTE: For an up-to-date of how tables currently inherit from each other as well
159 the [SQL tables](/docs/analysis/sql-tables.autogen) reference page.
[all …]
/external/fonttools/Lib/fontTools/merge/
Dtables.py6 from fontTools.ttLib.tables.DefaultTable import DefaultTable
164 def merge(self, m, tables): argument
165 DefaultTable.merge(self, m, tables)
212 def merge(self, m, tables): argument
213 for i,table in enumerate(tables):
223 return DefaultTable.merge(self, m, tables)
231 def merge(self, m, tables): argument
233 if any(hasattr(table, "FDSelect") for table in tables):
235 "Merging CID-keyed CFF tables is not supported yet"
238 for table in tables:
[all …]
/external/flatbuffers/src/
Dflatc_main.cpp66 "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/freetype/src/pcf/
Dpcfread.c99 PCF_Table tables; in pcf_read_TOC() local
119 /* and there can be most 9 tables */ in pcf_read_TOC()
123 FT_TRACE0(( "pcf_read_TOC: adjusting number of tables" in pcf_read_TOC()
130 if ( FT_QNEW_ARRAY( face->toc.tables, toc->count ) ) in pcf_read_TOC()
133 tables = face->toc.tables; in pcf_read_TOC()
136 if ( FT_STREAM_READ_FIELDS( pcf_table_header, tables ) ) in pcf_read_TOC()
138 tables++; in pcf_read_TOC()
141 /* Sort tables and check for overlaps. Because they are almost */ in pcf_read_TOC()
144 tables = face->toc.tables; in pcf_read_TOC()
158 if ( tables[i].offset > tables[i + 1].offset ) in pcf_read_TOC()
[all …]
/external/arm-trusted-firmware/include/lib/xlat_tables/
Dxlat_tables_v2.h25 * 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 …]

12345678910>>...177