HomeSort by relevance Sort by last modified time
    Searched refs:tables (Results 1 - 25 of 191) sorted by null

1 2 3 4 5 6 7 8

  /packages/providers/TvProvider/src/com/android/providers/tv/util/
SqlParams.java 26 public SqlParams(String tables, String selection, String... selectionArgs) {
27 setTables(tables);
43 public void setTables(String tables) {
44 mTables = tables;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Table_Suite.py 1 """Suite Table Suite: Classes for manipulating tables
48 class tables(aetools.ComponentItem): class in inherits:aetools.ComponentItem
49 """tables - """
52 table = tables
71 tables._superclassnames = []
72 tables._privpropdict = {
74 tables._privelemdict = {
90 'ctbl' : tables,
  /external/fonttools/MetaTools/
buildTableList.py 12 "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/
stats.cc 44 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/
dftables.c 42 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...]
pcre_byte_order.c 87 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;
    [all...]
  /external/freetype/include/internal/services/
svgxval.h 5 /* FreeType API for validating TrueTypeGX/AAT tables (specification). */
43 FT_Bytes tables[FT_VALIDATE_GX_LENGTH],
  /external/pdfium/third_party/freetype/include/internal/services/
svgxval.h 5 /* FreeType API for validating TrueTypeGX/AAT tables (specification). */
43 FT_Bytes tables[FT_VALIDATE_GX_LENGTH],
  /external/pdfium/third_party/freetype/src/base/
ftgxval.c 5 /* FreeType API for validating TrueTyepGX/AAT tables (body). */
40 FT_Bytes tables[FT_VALIDATE_GX_LENGTH],
53 if ( !tables )
64 tables,
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTreeBuilder.java 186 private int tables = 0; // table nesting level field in class:HtmlTreeBuilder.TableFixer
200 if (tables > 0) {
203 tables++;
220 if (tables > 0) {
234 if (tables > 0 && element.getType() == HTML.Element.TABLE_TYPE) {
246 X.assertTrue(tables > 0);
247 tables--;
248 state = (tables > 0) ? IN_CELL : NULL;
256 if (tables > 0 &&
264 X.assertTrue(tables == 0)
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/
sfnt.py 11 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[tag
    [all...]
__init__.py 63 a convenient way of accessing tables.
64 Tables will be only decompiled when necessary, ie. when they're actually
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
789 from . import tables namespace
    [all...]
  /external/llvm/utils/TableGen/
X86RecognizableInstr.h 31 /// 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 The DisassemblerTables that the specifier will be added to
    [all...]
  /external/compiler-rt/make/
config.mk 47 COMMON_CXXFLAGS=-std=c++11 -fno-exceptions -fPIC -funwind-tables $(COMMON_INCLUDES)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/
parsecvs.php 124 $tables = array(); variable
126 $result = wmysql_query("SELECT TABLE_NAME FROM TABLES WHERE `TABLE_SCHEMA` = '$db' AND `TABLE_TYPE` = 'BASE TABLE'");
129 array_push($tables, $row[0]);
133 wmysql_query("OPTIMIZE TABLE " . join($tables, ","));
134 wmysql_query("ANALYZE TABLE " . join($tables, ","));
  /external/libvorbis/doc/
10-tables.tex 4 \section{Tables} \label{vorbis:spec:tables}
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteQueryBuilder.java 15 public static String buildQueryString(boolean distinct, String tables,
32 sb.append(tables);
  /external/harfbuzz_ng/src/
hb-open-file-private.hh 79 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/
silk_headers.mk 11 silk/tables.h \
  /external/fonttools/Lib/fontTools/
merge.py 11 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...]
  /build/core/combo/
HOST_darwin-x86_64.mk 49 HOST_GLOBAL_CFLAGS += -fPIC -funwind-tables
  /external/freetype/include/
ftgxval.h 5 /* 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' array. Normally, @FT_VALIDATE_GX_LENGT
    [all...]
  /external/pdfium/third_party/freetype/include/
ftgxval.h 5 /* 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' array. Normally, @FT_VALIDATE_GX_LENGT
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/
NativeLib.mk 29 LOCAL_CFLAGS += -DFLAG_DBG -funwind-tables -fno-inline
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/bench/
write.py 103 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...]

Completed in 791 milliseconds

1 2 3 4 5 6 7 8