Searched refs:tables (Results 1 - 25 of 108) sorted by relevance

12345

/external/fonttools/MetaTools/
H A DbuildTableList.py12 "Lib", "fontTools", "ttLib", "tables")
18 tables = [] variable
26 tables.append(tag.strip())
29 tables.sort()
36 file.write('\t"""Dummy function to let modulefinder know what tables may be\n')
53 doc = doc[:beginPos] + ", ".join(tables[:-1]) + " and " + tables[-1] + "\n" + doc[endPos:]
/external/sfntly/cpp/src/sample/subtly/
H A Dstats.cc44 const TableMap* tables = font->GetTableMap(); local
45 for (TableMap::const_iterator it = tables->begin(),
46 e = tables->end(); it != e; ++it) {
72 const TableMap* tables = font->GetTableMap(); local
73 for (TableMap::const_iterator it = tables->begin(),
74 e = tables->end(); it != e; ++it) {
/external/pcre/dist/
H A Ddftables.c42 character tables for PCRE. The tables are built according to the current
65 const unsigned char *tables; local
84 tables = pcre_maketables();
85 base_of_tables = tables;
102 "program. It contains character tables that are used when no external\n"
103 "tables are passed to PCRE by the application that calls it. The tables\n"
137 fprintf(f, "%3d", *tables++);
148 fprintf(f, "%3d", *tables
[all...]
H A Dpcre_byte_order.c87 loaded form the disk. It also sets the tables pointer, which
93 tables points to the character tables or NULL
100 pcre_extra *extra_data, const unsigned char *tables)
103 pcre16_extra *extra_data, const unsigned char *tables)
106 pcre32_extra *extra_data, const unsigned char *tables)
124 re->tables = tables;
153 re->tables = tables;
99 pcre_pattern_to_host_byte_order(pcre *argument_re, pcre_extra *extra_data, const unsigned char *tables) argument
[all...]
H A Dpcre_study.c667 environment, the tables will only recognize ASCII characters anyway, but in at
668 least one Windows environment, some higher bytes bits were set in the tables.
1424 const pcre_uint8 *tables; local
1468 /* Set the character tables in the block that is passed around */
1470 tables = re->tables;
1473 if (tables == NULL)
1475 (void *)(&tables));
1477 if (tables == NULL)
1479 (void *)(&tables));
[all...]
/external/freetype/include/internal/services/
H A Dsvgxval.h5 /* FreeType API for validating TrueTypeGX/AAT tables (specification). */
43 FT_Bytes tables[FT_VALIDATE_GX_LENGTH],
/external/pdfium/third_party/freetype/include/internal/services/
H A Dsvgxval.h5 /* FreeType API for validating TrueTypeGX/AAT tables (specification). */
43 FT_Bytes tables[FT_VALIDATE_GX_LENGTH],
/external/pdfium/third_party/freetype/src/base/
H A Dftgxval.c5 /* FreeType API for validating TrueTyepGX/AAT tables (body). */
40 FT_Bytes tables[FT_VALIDATE_GX_LENGTH],
53 if ( !tables )
64 tables,
/external/fonttools/Lib/fontTools/ttLib/
H A Dsfnt.py11 classes, since whenever to number of tables changes or whenever
55 self.tables = {}
59 self.tables[Tag(entry.tag)] = entry
66 return tag in self.tables
71 return self.tables.keys()
75 entry = self.tables[Tag(tag)]
92 del self.tables[Tag(tag)]
127 self.tables = {}
132 if tag in self.tables:
135 entry = self.tables[ta
[all...]
H A D__init__.py63 a convenient way of accessing tables.
111 tables. For SING glyphlets, the cmap table is used to specify Unicode
119 individual tables during decompilation will be ignored, falling
133 self.tables = {}
225 tables=None, skipTables=None, splitTables=False, disassembleInstructions=True,
230 The 'tables' argument must either be false (dump all tables) or a
231 list of tables to dump. The 'skipTables' argument may be a list of tables
232 to skip, but only when the 'tables' argumen
789 from . import tables namespace
[all...]
/external/fonttools/Tools/fontTools/ttLib/
H A Dsfnt.py11 classes, since whenever to number of tables changes or whenever
55 self.tables = {}
59 self.tables[Tag(entry.tag)] = entry
66 return tag in self.tables
71 return self.tables.keys()
75 entry = self.tables[Tag(tag)]
92 del self.tables[Tag(tag)]
127 self.tables = {}
132 if tag in self.tables:
135 entry = self.tables[ta
[all...]
H A D__init__.py63 a convenient way of accessing tables.
111 tables. For SING glyphlets, the cmap table is used to specify Unicode
119 individual tables during decompilation will be ignored, falling
133 self.tables = {}
225 tables=None, skipTables=None, splitTables=False, disassembleInstructions=True,
230 The 'tables' argument must either be false (dump all tables) or a
231 list of tables to dump. The 'skipTables' argument may be a list of tables
232 to skip, but only when the 'tables' argumen
789 from . import tables namespace
[all...]
/external/llvm/utils/TableGen/
H A DX86RecognizableInstr.h31 /// instruction, as extracted from the LLVM instruction tables. Has methods
32 /// to interpret the information available in the LLVM tables, and to emit the
88 /// The instruction name as listed in the tables
94 /// tables; regardless, it will be emitted into the instruction info table
113 /// the LLVM tables to an OperandType for use in the operand specifier.
128 /// string provided in the LLVM tables to an OperandEncoding for use in
206 /// emitDecodePath - Populates the proper fields in the decode tables
209 /// \param tables The DisassemblerTables to populate with the decode
211 void emitDecodePath(DisassemblerTables &tables) const;
216 /// \param tables Th
[all...]
/external/compiler-rt/make/
H A Dconfig.mk47 COMMON_CXXFLAGS=-std=c++11 -fno-exceptions -fPIC -funwind-tables $(COMMON_INCLUDES)
/external/libvorbis/doc/
H A D10-tables.tex4 \section{Tables} \label{vorbis:spec:tables}
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSQLiteQueryBuilder.java15 public static String buildQueryString(boolean distinct, String tables, argument
32 sb.append(tables);
/external/harfbuzz_ng/src/
H A Dhb-open-file-private.hh79 return tables[i];
88 if (t == tables[i].tag)
107 return TRACE_RETURN (c->check_struct (this) && c->check_array (tables, TableRecord::static_size, numTables));
112 USHORT numTables; /* Number of tables. */
116 TableRecord tables[VAR]; /* TableRecord entries. numTables items */ member in struct:OT::OffsetTable
118 DEFINE_SIZE_ARRAY (12, tables);
/external/libopus/
H A Dsilk_headers.mk11 silk/tables.h \
/external/fonttools/Lib/fontTools/
H A Dmerge.py11 from fontTools.ttLib.tables import otTables, _h_e_a_d
12 from fontTools.ttLib.tables.DefaultTable import DefaultTable
142 def merge(self, m, tables):
150 return m.mergeObjects(self, self.mergeMap, tables)
152 return logic(tables)
279 def merge(self, m, tables):
280 DefaultTable.merge(self, m, tables)
333 def merge(self, m, tables):
334 for i,table in enumerate(tables):
344 return DefaultTable.merge(self, m, tables)
[all...]
/external/fonttools/Tools/fontTools/
H A Dmerge.py11 from fontTools.ttLib.tables import otTables, _h_e_a_d
12 from fontTools.ttLib.tables.DefaultTable import DefaultTable
142 def merge(self, m, tables):
150 return m.mergeObjects(self, self.mergeMap, tables)
152 return logic(tables)
279 def merge(self, m, tables):
280 DefaultTable.merge(self, m, tables)
333 def merge(self, m, tables):
334 for i,table in enumerate(tables):
344 return DefaultTable.merge(self, m, tables)
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/
H A Dparsecvs.php124 $tables = array(); variable
129 array_push($tables, $row[0]);
133 wmysql_query("OPTIMIZE TABLE " . join($tables, ","));
134 wmysql_query("ANALYZE TABLE " . join($tables, ","));
/external/freetype/include/
H A Dftgxval.h5 /* FreeType API for validating TrueTypeGX/AAT tables (specification). */
53 /* An API to validate TrueTypeGX/AAT tables. */
57 /* some TrueTypeGX tables (feat, mort, morx, bsln, just, kern, opbd, */
101 * The number of tables checked in this module. Use it as a parameter
122 * indicate which TrueTypeGX/AAT Type tables should be validated.
156 * Validate all TrueTypeGX tables (feat, mort, morx, bsln, just, kern,
190 * Validate various TrueTypeGX tables to assure that all offsets and
192 * actually does the text layout can access those tables without
200 * A bit field that specifies the tables to be validated. See
204 * The size of the `tables' arra
[all...]
/external/pdfium/third_party/freetype/include/
H A Dftgxval.h5 /* FreeType API for validating TrueTypeGX/AAT tables (specification). */
53 /* An API to validate TrueTypeGX/AAT tables. */
57 /* some TrueTypeGX tables (feat, mort, morx, bsln, just, kern, opbd, */
101 * The number of tables checked in this module. Use it as a parameter
122 * indicate which TrueTypeGX/AAT Type tables should be validated.
156 * Validate all TrueTypeGX tables (feat, mort, morx, bsln, just, kern,
190 * Validate various TrueTypeGX tables to assure that all offsets and
192 * actually does the text layout can access those tables without
200 * A bit field that specifies the tables to be validated. See
204 * The size of the `tables' arra
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/bench/
H A Dwrite.py103 tables = []
141 # calculate column widths (global for all tables)
146 tables.append(zip(*rows))
147 pythons.append((version, tables))
158 for idx, (version, tables) in enumerate(pythons):
167 for table in tables:
198 if line == '.. begin tables':
202 if line == '.. end tables':
203 fplines.append('.. begin tables')
207 fplines.append('.. end tables')
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/bench/
H A Dwrite.py106 tables = []
144 # calculate column widths (global for all tables)
149 tables.append(zip(*rows))
150 pythons.append((version, tables))
161 for idx, (version, tables) in enumerate(pythons):
170 for table in tables:
201 if line == '.. begin tables':
205 if line == '.. end tables':
206 fplines.append('.. begin tables')
210 fplines.append('.. end tables')
[all...]

Completed in 4185 milliseconds

12345