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

1234567891011>>

/external/chromium_org/third_party/cld/encodings/compact_lang_det/
H A Dcompact_lang_det.h65 // Relatively small tables and relatively fast processing
108 Language DetectLanguage(const DetectionTables* tables,
117 const DetectionTables* tables,
130 const DetectionTables* tables,
151 const DetectionTables* tables,
170 const DetectionTables* tables,
188 const DetectionTables* tables,
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/resources/chromeos/chromevox/host/chrome/
H A Dbraille_table.js28 cvox.BrailleTable.TABLE_PATH = 'chromevox/background/braille/tables.json';
39 * Retrieves a list of all available braille tables.
41 * Called asynchronously with an array of tables.
44 function appendCommonFilename(tables) {
46 tables.forEach(function(table) {
49 return tables;
73 * Finds a table in a list of tables by id.
74 * @param {!Array.<cvox.BrailleTable.Table>} tables tables to search in.
78 cvox.BrailleTable.forId = function(tables, i
[all...]
H A Dbraille_background.js37 cvox.BrailleTable.getAll(goog.bind(function(tables) {
42 this.tables_ = tables;
95 var tables = this.tables_;
96 var table = cvox.BrailleTable.forId(tables, localStorage['brailleTable']);
102 var firstPass = tables.filter(function(table) {
118 table = cvox.BrailleTable.forId(tables, 'en-US-comp8');
143 var table8Dot = cvox.BrailleTable.forId(tables,
146 tables,
213 'chromevox/background/braille/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/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/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...]
/external/chromium_org/third_party/brotli/src/woff2/
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...]
H A Dfont.cc29 std::map<uint32_t, Font::Table>::iterator it = tables.find(tag);
30 return it == tables.end() ? 0 : &it->second;
34 std::map<uint32_t, Font::Table>::const_iterator it = tables.find(tag);
35 return it == tables.end() ? 0 : &it->second;
65 if (font->tables.find(table.tag) != font->tables.end()) {
68 font->tables[table.tag] = table;
71 // Check that tables are non-overlapping.
84 for (const auto& i : font.tables) {
106 for (const auto& i : font.tables) {
[all...]
/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Dstub_analysis_results.js9 this.tables = [];
20 this.tables.push(table);
H A Danalyze_slices_test.js109 assertEquals(1, results.tables.length);
110 var table = results.tables[0];
124 assertEquals(1, results.tables.length);
125 var table = results.tables[0];
140 assertEquals(1, results.tables.length);
141 var table = results.tables[0];
167 assertEquals(3, results.tables.length);
171 t = results.tables[0];
185 var t = results.tables[1];
191 var t = results.tables[
[all...]
H A Danalyze_counters_test.js150 assertEquals(1, results.tables.length);
151 var table = results.tables[0];
166 assertEquals(1, results.tables.length);
167 var table = results.tables[0];
182 assertEquals(1, results.tables.length);
183 var table = results.tables[0];
/external/chromium_org/third_party/freetype/include/freetype/internal/services/
H A Dsvgxval.h5 /* FreeType API for validating TrueTypeGX/AAT tables (specification). */
43 FT_Bytes tables[FT_VALIDATE_GX_LENGTH],
/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/core/include/thirdparties/freetype/freetype/internal/services/
H A Dsvgxval.h5 /* FreeType API for validating TrueTypeGX/AAT tables (specification). */
43 FT_Bytes tables[FT_VALIDATE_GX_LENGTH],
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/services/
H A Dsvgxval.h5 /* FreeType API for validating TrueTypeGX/AAT tables (specification). */
43 FT_Bytes tables[FT_VALIDATE_GX_LENGTH],
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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 == NULL )
64 tables,
/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/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
86 /// The instruction name as listed in the tables
92 /// tables; regardless, it will be emitted into the instruction info table
111 /// the LLVM tables to an OperandType for use in the operand specifier.
126 /// string provided in the LLVM tables to an OperandEncoding for use in
201 /// emitDecodePath - Populates the proper fields in the decode tables
204 /// \param tables The DisassemblerTables to populate with the decode
206 void emitDecodePath(DisassemblerTables &tables) const;
211 /// \param tables Th
[all...]
/external/compiler-rt/make/
H A Dconfig.mk47 COMMON_CXXFLAGS=-std=c++11 -fno-exceptions -fPIC -funwind-tables $(COMMON_INCLUDES)

Completed in 2489 milliseconds

1234567891011>>