Searched defs:tables (Results 1 - 25 of 43) sorted by relevance

12

/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...]
H A Dpcre_jit_test.c819 static const unsigned char *tables(int mode) function
1218 &error, &err_offs, tables(0));
1249 &error, &err_offs, tables(0));
1280 &error, &err_offs, tables(0));
1709 tables(1);
/external/chromium_org/third_party/brotli/src/woff2/
H A Dfont.h45 std::map<uint32_t, Table> tables; member in struct:woff2::Font
H A Dwoff2_enc.cc74 bool ReadLongDirectory(Buffer* file, std::vector<Table>* tables, argument
77 Table* table = &(*tables)[i];
117 size_t ComputeWoff2Length(const std::vector<Table>& tables) {
119 for (const auto& table : tables) {
122 for (const auto& table : tables) {
129 size_t ComputeTTFLength(const std::vector<Table>& tables) {
130 size_t size = 12 + 16 * tables.size(); // sfnt header
131 for (const auto& table : tables) {
139 for (const auto& i : font.tables) {
142 // Count transformed tables an
212 std::vector<Table> tables; member in namespace:woff2::__anon11703
[all...]
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DLexicons.py111 tables = None # StateTableMachine variable in class:Lexicon
/external/chromium_org/third_party/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/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/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/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/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/chromium_org/third_party/cld/encodings/compact_lang_det/
H A Dcompact_lang_det.cc16 const DetectionTables* tables,
33 tables,
57 const DetectionTables* tables,
74 tables,
99 const DetectionTables* tables,
116 tables,
144 const DetectionTables* tables,
161 tables,
186 const DetectionTables* tables,
203 tables,
15 DetectLanguage( const DetectionTables* tables, const char* buffer, int buffer_length, bool is_plain_text, bool* is_reliable) argument
56 DetectLanguageSummary( const DetectionTables* tables, const char* buffer, int buffer_length, bool is_plain_text, Language* language3, int* percent3, int* text_bytes, bool* is_reliable) argument
98 DetectLanguageSummary( const DetectionTables* tables, const char* buffer, int buffer_length, bool is_plain_text, const char* tld_hint, int encoding_hint, Language language_hint, Language* language3, int* percent3, int* text_bytes, bool* is_reliable) argument
143 ExtDetectLanguageSummary( const DetectionTables* tables, const char* buffer, int buffer_length, bool is_plain_text, Language* language3, int* percent3, int* text_bytes, bool* is_reliable) argument
185 ExtDetectLanguageSummary( const DetectionTables* tables, const char* buffer, int buffer_length, bool is_plain_text, const char* tld_hint, int encoding_hint, Language language_hint, Language* language3, int* percent3, int* text_bytes, bool* is_reliable) argument
227 ExtDetectLanguageSummary( const DetectionTables* tables, const char* buffer, int buffer_length, bool is_plain_text, const char* tld_hint, int encoding_hint, Language language_hint, Language* language3, int* percent3, double* normalized_score3, int* text_bytes, bool* is_reliable) argument
[all...]
/external/chromium_org/chrome/browser/predictors/
H A Dresource_prefetch_predictor.h286 // Used for testing to inject mock tables.
287 void set_mock_tables(scoped_refptr<ResourcePrefetchPredictorTables> tables) { argument
288 tables_ = tables;
302 // Copy of the data in the predictor tables.
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEComponentTransfer.cpp220 unsigned char* tables[] = { rValues, gValues, bValues, aValues }; local
226 (*callEffect[transferFunction[channel].type])(tables[channel], transferFunction[channel]);
/external/chromium_org/third_party/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/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/javasqlite/src/main/java/SQLite/
H A DShell.java349 pw.println(".tables ?PATTERN? List table names");
377 if (cmd.compareTo(".tables") == 0) {
603 * tables of the current database and output create SQL statements
610 DBDump(Shell s, String tables[]) { argument
613 if (tables == null || tables.length == 0) {
624 for (int i = 0; i < tables.length; i++) {
625 arg[0] = tables[i];
/external/fonttools/Lib/fontTools/ttLib/
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 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/chromium_org/storage/browser/quota/
H A Dquota_database.cc515 const TableSchema* tables, size_t tables_size,
527 sql += tables[i].table_name;
528 sql += tables[i].columns;
511 CreateSchema( sql::Connection* database, sql::MetaTable* meta_table, int schema_version, int compatible_version, const TableSchema* tables, size_t tables_size, const IndexSchema* indexes, size_t indexes_size) argument
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
H A DOpenTypeUtilities.cpp68 TableDirectoryEntry tables[1]; member in struct:blink::sfntHeader
154 if (sfnt->tables[t].tag == 'name')
171 rewrittenSfnt->tables[t].length = nameTableSize;
172 rewrittenSfnt->tables[t].offset = originalDataSize;
198 rewrittenSfnt->tables[t].checkSum = 0;
200 rewrittenSfnt->tables[t].checkSum = rewrittenSfnt->tables[t].checkSum + reinterpret_cast<BigEndianULong*>(name)[i];
/external/chromium_org/third_party/ots/src/
H A Dots.cc132 // We need to parse GDEF table in advance of parsing GSUB/GPOS tables
150 // TODO(bashi): Support mort, base, and jstf tables.
158 const std::vector<OpenTypeTable>& tables,
218 // Next up is the list of tables.
219 std::vector<OpenTypeTable> tables; local
231 tables.push_back(table);
235 tables, file);
320 // Next up is the list of tables.
321 std::vector<OpenTypeTable> tables; local
341 tables
415 ProcessGeneric(ots::OpenTypeFile *header, uint32_t signature, ots::OTSStream *output, const uint8_t *data, size_t length, const std::vector<OpenTypeTable>& tables, ots::Buffer& file) argument
[all...]
/external/freetype/src/sfnt/
H A Dsfobjs.c415 WOFF_Table tables = NULL; local
505 /* tag value, the tables themselves are not. We thus have to */
508 if ( FT_NEW_ARRAY( tables, woff.num_tables ) ||
521 WOFF_Table table = tables + nn;
630 /* Write the tables. */
634 WOFF_Table table = tables + nn;
708 FT_FREE( tables );
981 /* Load tables */
990 /* vertical metrics tables (i.e. `hhea' and `vhea' tables ar
[all...]
/external/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp174 RecognizableInstr::RecognizableInstr(DisassemblerTables &tables, argument
181 Spec = &tables.specForUID(UID);
247 void RecognizableInstr::processInstr(DisassemblerTables &tables, argument
255 RecognizableInstr recogInstr(tables, insn, uid);
259 recogInstr.emitDecodePath(tables);
781 void RecognizableInstr::emitDecodePath(DisassemblerTables &tables) const {
782 // Special cases where the LLVM tables are not complete
855 tables.setTableFields(opcodeType,
861 tables.setTableFields(opcodeType,

Completed in 818 milliseconds

12