Home
last modified time | relevance | path

Searched refs:tables (Results 1 – 25 of 1350) sorted by relevance

12345678910>>...54

/external/fonttools/Doc/source/ttLib/
Dtables.rst2 tables title
5 .. automodule:: fontTools.ttLib.tables
12 .. automodule:: fontTools.ttLib.tables._a_v_a_r
19 .. automodule:: fontTools.ttLib.tables._c_m_a_p
26 .. automodule:: fontTools.ttLib.tables._c_v_a_r
33 .. automodule:: fontTools.ttLib.tables._c_v_t
40 .. automodule:: fontTools.ttLib.tables._f_e_a_t
47 .. automodule:: fontTools.ttLib.tables._f_p_g_m
54 .. automodule:: fontTools.ttLib.tables._f_v_a_r
61 .. automodule:: fontTools.ttLib.tables._g_a_s_p
[all …]
/external/fonttools/Lib/fonttools.egg-info/
DSOURCES.txt71 Doc/source/ttLib/tables.rst
177 Lib/fontTools/ttLib/tables/B_A_S_E_.py
178 Lib/fontTools/ttLib/tables/BitmapGlyphMetrics.py
179 Lib/fontTools/ttLib/tables/C_B_D_T_.py
180 Lib/fontTools/ttLib/tables/C_B_L_C_.py
181 Lib/fontTools/ttLib/tables/C_F_F_.py
182 Lib/fontTools/ttLib/tables/C_F_F__2.py
183 Lib/fontTools/ttLib/tables/C_O_L_R_.py
184 Lib/fontTools/ttLib/tables/C_P_A_L_.py
185 Lib/fontTools/ttLib/tables/D_S_I_G_.py
[all …]
/external/python/cpython2/Tools/unicode/
Dmkstringprep.py51 tables = [] variable
69 tables.append((curname, table))
123 name, table = tables[0]
124 del tables[0]
146 name, table = tables[0]
147 del tables[0]
162 name, table_b2 = tables[0]
163 del tables[0]
166 name, table_b3 = tables[0]
167 del tables[0]
[all …]
/external/python/cpython3/Tools/unicode/
Dmkstringprep.py56 tables = [] variable
73 tables.append((curname, table))
129 name, table = tables[0]
130 del tables[0]
152 name, table = tables[0]
153 del tables[0]
168 name, table_b2 = tables[0]
169 del tables[0]
172 name, table_b3 = tables[0]
173 del tables[0]
[all …]
/external/fonttools/Tests/varLib/
Dinterpolate_layout_test.py74 def expect_ttx(self, font, expected_ttx, tables): argument
76 font.saveXML(path, tables=tables)
85 def check_ttx_dump(self, font, expected_ttx, tables, suffix): argument
89 self.expect_ttx(TTFont(path), expected_ttx, tables)
124 tables = ['GSUB']
126 self.expect_ttx(instfont, expected_ttx_path, tables)
127 self.check_ttx_dump(instfont, expected_ttx_path, tables, suffix)
148 tables = ['GSUB']
150 self.expect_ttx(instfont, expected_ttx_path, tables)
151 self.check_ttx_dump(instfont, expected_ttx_path, tables, suffix)
[all …]
DvarLib_test.py83 def expect_ttx(self, font, expected_ttx, tables): argument
85 font.saveXML(path, tables=tables)
94 def check_ttx_dump(self, font, expected_ttx, tables, suffix): argument
98 self.expect_ttx(TTFont(path), expected_ttx, tables)
108 def _run_varlib_build_test(self, designspace_name, font_name, tables, argument
130 self.expect_ttx(varfont, expected_ttx_path, tables)
131 self.check_ttx_dump(varfont, expected_ttx_path, tables, suffix)
141 tables=['GDEF', 'HVAR', 'MVAR', 'fvar', 'gvar'],
159 tables=['avar'],
179 tables=['avar'],
[all …]
Dmutator_test.py72 def expect_ttx(self, font, expected_ttx, tables): argument
74 font.saveXML(path, tables=tables)
117 tables = [table_tag for table_tag in instfont.keys() if table_tag != 'head']
119 self.expect_ttx(instfont, expected_ttx_path, tables)
138 tables = [table_tag for table_tag in instfont.keys() if table_tag != 'head']
140 self.expect_ttx(instfont, expected_ttx_path, tables)
160 tables = [table_tag for table_tag in instfont.keys() if table_tag != 'head']
162 self.expect_ttx(instfont, expected_ttx_path, tables)
168 tables = ["hmtx", "CFF2"]
174 self.expect_ttx(new_font, expected_ttx_path, tables)
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Dtransform.c17 void WebRtcIsac_InitTransform(TransformTables* tables) { in WebRtcIsac_InitTransform() argument
24 tables->costab1[k] = cos(phase); in WebRtcIsac_InitTransform()
25 tables->sintab1[k] = sin(phase); in WebRtcIsac_InitTransform()
32 tables->costab2[k] = cos(phase); in WebRtcIsac_InitTransform()
33 tables->sintab2[k] = sin(phase); in WebRtcIsac_InitTransform()
38 void WebRtcIsac_Time2Spec(const TransformTables* tables, in WebRtcIsac_Time2Spec() argument
56 tmp1r = tables->costab1[k]; in WebRtcIsac_Time2Spec()
57 tmp1i = tables->sintab1[k]; in WebRtcIsac_Time2Spec()
73 tmp1r = tables->costab2[k]; in WebRtcIsac_Time2Spec()
74 tmp1i = tables->sintab2[k]; in WebRtcIsac_Time2Spec()
[all …]
/external/pcre/dist2/src/
Dpcre2_serialize.c81 const uint8_t *tables; in pcre2_serialize_encode() local
94 tables = NULL; in pcre2_serialize_encode()
101 if (tables == NULL) in pcre2_serialize_encode()
102 tables = re->tables; in pcre2_serialize_encode()
103 else if (tables != re->tables) in pcre2_serialize_encode()
124 memcpy(dst_bytes, tables, tables_length); in pcre2_serialize_encode()
144 (void)memset(dst_bytes + offsetof(pcre2_real_code, tables), 0, in pcre2_serialize_encode()
172 uint8_t *tables; in pcre2_serialize_decode() local
192 tables = memctl->malloc(tables_length + sizeof(PCRE2_SIZE), memctl->memory_data); in pcre2_serialize_decode()
193 if (tables == NULL) return PCRE2_ERROR_NOMEMORY; in pcre2_serialize_decode()
[all …]
Ddftables.c66 const unsigned char *tables; in main() local
85 tables = maketables(); in main()
86 base_of_tables = tables; in main()
147 fprintf(f, "%3d", *tables++); in main()
158 fprintf(f, "%3d", *tables++); in main()
177 fprintf(f, "0x%02x", *tables++); in main()
203 fprintf(f, "0x%02x", *tables++); in main()
/external/mesa3d/src/mesa/main/
Dget_hash_generator.py96 def print_tables(tables): argument
97 for table in tables:
101 for table in tables:
115 def merge_tables(tables): argument
117 for api, indices in sorted(tables.items()):
142 tables = defaultdict(lambda:{})
170 add_to_hash_table(tables[api], hash_val, len(params))
173 add_to_hash_table(tables["GLES3"], hash_val, len(params))
174 add_to_hash_table(tables["GLES31"], hash_val, len(params))
175 add_to_hash_table(tables["GLES32"], hash_val, len(params))
[all …]
/external/freetype/src/pcf/
Dpcfread.c100 PCF_Table tables; in pcf_read_TOC() local
131 if ( FT_NEW_ARRAY( face->toc.tables, toc->count ) ) in pcf_read_TOC()
134 tables = face->toc.tables; in pcf_read_TOC()
137 if ( FT_STREAM_READ_FIELDS( pcf_table_header, tables ) ) in pcf_read_TOC()
139 tables++; in pcf_read_TOC()
145 tables = face->toc.tables; in pcf_read_TOC()
159 if ( tables[i].offset > tables[i + 1].offset ) in pcf_read_TOC()
161 tmp = tables[i]; in pcf_read_TOC()
162 tables[i] = tables[i + 1]; in pcf_read_TOC()
163 tables[i + 1] = tmp; in pcf_read_TOC()
[all …]
/external/fonttools/Lib/fontTools/ttLib/
Dsfnt.py82 tables = {}
87 tables[tag] = entry
88 self.tables = OrderedDict(sorted(tables.items(), key=lambda i: i[1].offset))
95 return tag in self.tables
100 return self.tables.keys()
104 entry = self.tables[Tag(tag)]
121 del self.tables[Tag(tag)]
242 self.tables = OrderedDict()
245 if tag in self.tables:
248 self.tables[tag] = entry
[all …]
DttFont.py93 self.tables = {}
233 quiet=None, tables=None, skipTables=None, splitTables=False, argument
242 if not tables:
243 tables = list(self.keys())
244 if "GlyphOrder" not in tables:
245 tables = ["GlyphOrder"] + tables
248 if tag in tables:
249 tables.remove(tag)
250 numTables = len(tables)
271 tag = tables[i]
[all …]
Dwoff2.py15 from fontTools.ttLib.tables import ttProgram
53 self.tables = OrderedDict()
59 self.tables[tag] = entry
83 entry = self.tables[Tag(tag)]
95 entry = self.tables[Tag(tag)]
123 self.tables['glyf'].data = self.reconstructTable('glyf')
126 if len(data) != self.tables['loca'].origLength:
130 % (self.tables['loca'].origLength, len(data)))
160 self.tables = OrderedDict()
167 if tag in self.tables:
[all …]
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/
DTable_Suite.py48 class tables(aetools.ComponentItem): class
52 table = tables
71 tables._superclassnames = []
72 tables._privpropdict = {
74 tables._privelemdict = {
90 'ctbl' : tables,
/external/harfbuzz_ng/src/
Dhb-open-file.hh85 unsigned int get_table_count () const { return tables.len; } in get_table_count()
87 { return tables[i]; } in get_table()
94 if (start_offset >= tables.len) in get_table_tags()
97 *table_count = MIN<unsigned int> (*table_count, tables.len - start_offset); in get_table_tags()
99 const TableRecord *sub_tables = tables.arrayZ + start_offset; in get_table_tags()
104 return tables.len; in get_table_tags()
110 return tables.bfind (t, table_index, HB_BFIND_NOT_FOUND_STORE, Index::NOT_FOUND_INDEX); in find_table_index()
133 if (unlikely (!tables.serialize (c, items.len))) return_trace (false); in serialize()
139 for (unsigned int i = 0; i < tables.len; i++) in serialize()
141 TableRecord &rec = tables.arrayZ[i]; in serialize()
[all …]
Dhb-face.cc602 hb_vector_t<table_entry_t, 32> tables; member
612 data->tables.init (); in _hb_face_builder_data_create()
622 for (unsigned int i = 0; i < data->tables.len; i++) in _hb_face_builder_data_destroy()
623 hb_blob_destroy (data->tables[i].blob); in _hb_face_builder_data_destroy()
625 data->tables.fini (); in _hb_face_builder_data_destroy()
634 unsigned int table_count = data->tables.len; in _hb_face_builder_data_reference_blob()
638 face_length += hb_ceil_to_4 (hb_blob_get_length (data->tables[i].blob)); in _hb_face_builder_data_reference_blob()
645 c.propagate_error (data->tables); in _hb_face_builder_data_reference_blob()
648 …bool is_cff = data->tables.lsearch (HB_TAG ('C','F','F',' ')) || data->tables.lsearch (HB_TAG ('C'… in _hb_face_builder_data_reference_blob()
651 bool ret = f->serialize_single (&c, sfnt_tag, data->tables.as_array ()); in _hb_face_builder_data_reference_blob()
[all …]
/external/freetype/src/gxvalid/
Dgxvbsln.c150 gxv_bsln_parts_fmt0_validate( FT_Bytes tables, in gxv_bsln_parts_fmt0_validate() argument
154 FT_Bytes p = tables; in gxv_bsln_parts_fmt0_validate()
169 gxv_bsln_parts_fmt1_validate( FT_Bytes tables, in gxv_bsln_parts_fmt1_validate() argument
173 FT_Bytes p = tables; in gxv_bsln_parts_fmt1_validate()
194 gxv_bsln_parts_fmt2_validate( FT_Bytes tables, in gxv_bsln_parts_fmt2_validate() argument
198 FT_Bytes p = tables; in gxv_bsln_parts_fmt2_validate()
238 gxv_bsln_parts_fmt3_validate( FT_Bytes tables, in gxv_bsln_parts_fmt3_validate() argument
242 FT_Bytes p = tables; in gxv_bsln_parts_fmt3_validate()
/external/fonttools/Tests/
Dmerge_test.py74 table1.tables = [self.makeSubtable(4,3,1, cmap1)]
79 table2.tables = [self.makeSubtable(4,3,1, cmap2), self.makeSubtable(12,3,10, cmap2Extended)]
89 …(table.format, table.platformID, table.platEncID, table.language) for table in mergedTable.tables],
91 self.assertEqual(mergedTable.tables[0].cmap, expectedCmap)
92 self.assertEqual(mergedTable.tables[1].cmap, expectedCmapExtended)
101 table1.tables = [self.makeSubtable(4,3,1,cmap1)]
103 table2.tables = [self.makeSubtable(4,3,1,cmap2)]
110 table = mergedTable.tables[0]
/external/sfntly/cpp/src/sample/subtly/
Dstats.cc44 const TableMap* tables = font->GetTableMap(); in PrintComparison() local
45 for (TableMap::const_iterator it = tables->begin(), in PrintComparison()
46 e = tables->end(); it != e; ++it) { in PrintComparison()
72 const TableMap* tables = font->GetTableMap(); in PrintStats() local
73 for (TableMap::const_iterator it = tables->begin(), in PrintStats()
74 e = tables->end(); it != e; ++it) { in PrintStats()
/external/fonttools/MetaTools/
DbuildTableList.py19 tables = [] variable
27 tables.append(tag.strip())
30 tables.sort()
67 lines = textwrap.wrap(", ".join(tables[:-1]) + " and " + tables[-1], 66)
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_SendTPUEmbeddingGradients.pbtxt7 A TensorList of gradients with which to update embedding tables.
10 with respect to the embedding activations. The embedding tables are updated
21 Multiple tables can share the same dynamic learning rate tag as specified
22 in the configuration. If the learning rates for all tables are constant,
32 summary: "Performs gradient updates of embedding tables."
/external/google-fruit/extras/benchmark/
DREADME.md22 Once the benchmark run completes, you can format the results using some pre-defined tables, see the…
39 ### Benchmark tables
41 The `tables` folder contains some table definitions that can be used to get a human-readable repres…
44 Note that there *isn't* a 1:1 mapping between benchmark suites and benchmark tables; the same table…
55 --benchmark-tables-definition ~/projects/fruit/extras/benchmark/tables/fruit_wiki.yml
64 --benchmark-tables-definition ~/projects/fruit/extras/benchmark/tables/fruit_wiki.yml \
68 The following tables are defined:
70 * `fruit_wiki.yml`: the "main" table definition, with the tables that are in Fruit's wiki.
/external/python/google-api-python-client/samples/maps_engine/
Dmaps_engine.py85 tables = service.tables().list(projectId=project_id).execute()
86 logging.info(json.dumps(tables, indent=2))
119 response = service.tables().upload(body=metadata).execute()
129 response = service.tables().files().insert(

12345678910>>...54