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

1 2 3

  /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_study.c 667 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
    [all...]
pcre_jit_test.c 819 static const unsigned char *tables(int mode) function
    [all...]
pcre_exec.c 6365 const pcre_uint8 *tables; local
    [all...]
pcretest.c 159 /* We need access to some of the data tables that PCRE uses. So as not to have
242 #define PCRE_COMPILE8(re, pat, options, error, erroffset, tables) \
243 re = pcre_compile((char *)pat, options, error, erroffset, tables)
286 #define PCRE_PATTERN_TO_HOST_BYTE_ORDER8(rc, re, extra, tables) \
287 rc = pcre_pattern_to_host_byte_order(re, extra, tables)
330 #define PCRE_COMPILE16(re, pat, options, error, erroffset, tables) \
332 tables)
379 #define PCRE_PATTERN_TO_HOST_BYTE_ORDER16(rc, re, extra, tables) \
381 tables)
422 #define PCRE_COMPILE32(re, pat, options, error, erroffset, tables) \
3464 const pcre_uint8 *tables = NULL; local
    [all...]
pcre_jit_compile.c 360 /* Flipped and lower case tables. */
389 /* Tables. */
9738 const pcre_uint8 *tables = re->tables; local
    [all...]
pcre_internal.h 256 The TABLE_GET macro is designed for accessing elements of tables whose contain
258 items, some check is needed before accessing these tables.
688 from the tables whose names start with PRIV(utf8_table). They were rewritten by
2336 const pcre_uint8 *tables; \/* Pointer to tables or NULL for std *\/ member in struct:real_pcre8_or_16
2360 const pcre_uint8 *tables; \/* Pointer to tables or NULL for std *\/ member in struct:real_pcre32
2556 const pcre_uint8 *tables; \/* Character tables *\/ member in struct:dfa_match_data
    [all...]
  /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/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/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:]
  /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/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);
  /frameworks/base/core/tests/coretests/src/android/provider/
SettingsProviderTest.java 74 // These tables use the row name (not ID) as their content URI.
75 Uri tables[] = { Settings.System.CONTENT_URI, Settings.Secure.CONTENT_URI }; local
76 for (Uri table : 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/
__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/freetype/src/sfnt/
sfobjs.c 415 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;
632 /* Write the tables. */
636 WOFF_Table table = tables + nn;
710 FT_FREE( tables );
983 /* Load tables */
992 /* vertical metrics tables (i.e. `hhea' and `vhea' tables are *
    [all...]
  /external/pdfium/third_party/freetype/src/sfnt/
sfobjs.c 415 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;
632 /* Write the tables. */
636 WOFF_Table table = tables + nn;
710 FT_FREE( tables );
983 /* Load tables */
992 /* vertical metrics tables (i.e. `hhea' and `vhea' tables are *
    [all...]
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteDatabaseTest.java 511 String tables = "table1 table2 table3"; local
512 assertEquals("table1", SQLiteDatabase.findEditTable(tables));
514 tables = "table1,table2,table3";
515 assertEquals("table1", SQLiteDatabase.findEditTable(tables));
517 tables = "table1";
518 assertEquals("table1", SQLiteDatabase.findEditTable(tables));
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemNumber.java 1752 StringArrayWrapper tables = local
    [all...]
  /external/pdfium/core/src/fxge/ge/
fx_ge_fontmap.cpp 1398 CFX_ByteString tables = _FPDF_ReadStringFromFile(pFile, nTables * 16); local
    [all...]
  /frameworks/base/libs/androidfw/
AssetManager.cpp 317 ResTable tables[2]; local
328 tables[i].add(ass);
331 return tables[0].createIdmap(tables[1], targetCrc, overlayCrc,
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
AbstractContactAggregator.java 32 import com.android.providers.contacts.ContactsDatabaseHelper.Tables;
104 "UPDATE " + Tables.CONTACTS +
107 " FROM " + Tables.STATUS_UPDATES +
108 " JOIN " + Tables.DATA +
111 " JOIN " + Tables.RAW_CONTACTS +
287 "INSERT OR REPLACE INTO " + Tables.AGGREGATED_PRESENCE + "("
294 + " FROM " + Tables.PRESENCE
301 + " FROM " + Tables.PRESENCE
310 " FROM " + Tables.RAW_CONTACTS +
315 "DELETE FROM " + Tables.AGGREGATED_PRESENCE
1612 String tables = Tables.RAW_CONTACTS local
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java 1800 final String[] tables = { local
    [all...]
  /prebuilts/devtools/tools/lib/
kxml2-2.3.0.jar 
  /prebuilts/misc/common/kxml2/
kxml2-2.3.0.jar 

Completed in 968 milliseconds

1 2 3