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

1 2 3 4

  /external/freetype/include/freetype/internal/services/
svgxval.h 5 /* FreeType API for validating TrueTypeGX/AAT tables (specification). */
43 FT_Bytes tables[FT_VALIDATE_GX_LENGTH],
  /external/clearsilver/python/examples/base/
odb_sqlite.py 52 tables = []
53 for row in rows: tables.append(row[0])
54 return tables
60 tables = []
61 for row in rows: tables.append(row[0])
62 return tables
odb_mysql.py 26 cursor.execute("show tables")
28 tables = []
30 tables.append(row[0])
31 return tables
  /external/skia/src/ports/
SkFontHost_gamma.cpp 4 // define this to use pre-compiled tables for gamma. This is slightly faster,
10 // define this if you want to spew out the "C" code for the tables, given
28 #else // use writable globals for gamma tables
84 void SkFontHost::GetGammaTables(const uint8_t* tables[2]) {
97 tables[0] = gBlackGamma;
98 tables[1] = gWhiteGamma;
  /external/webkit/WebCore/platform/graphics/opentype/
OpenTypeUtilities.cpp 88 TableDirectoryEntry tables[1]; member in struct:WebCore::sfntHeader
209 if (dataLength < offsetof(sfntHeader, tables))
214 if (dataLength < offsetof(sfntHeader, tables) + sfnt->numTables * sizeof(TableDirectoryEntry))
231 unsigned tableOffset = sfnt->tables[i].offset;
232 unsigned tableLength = sfnt->tables[i].length;
237 unsigned tableTag = sfnt->tables[i].tag;
353 if (sfnt->tables[t].tag == 'name')
370 rewrittenSfnt->tables[t].length = nameTableSize;
371 rewrittenSfnt->tables[t].offset = originalDataSize;
397 rewrittenSfnt->tables[t].checkSum = 0
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/hal/FirmwareApi/
public_radio.h 159 resultsBuffer_t tables[NVS_RESULTS_MAX_NUM_OF_TABLES]; /* array of structures of type containing the tables*/ member in struct:PltNvsResultsBuffer_t
160 uint8 numOfTables; /* number of tables needed to be updated*/
  /external/freetype/include/freetype/
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, */
91 * The number of tables checked in this module. Use it as a parameter
112 * indicate which TrueTypeGX/AAT Type tables should be validated.
146 * Validate all TrueTypeGX tables (feat, mort, morx, bsln, just, kern,
182 * Validate various TrueTypeGX tables to assure that all offsets and
184 * actually does the text layout can access those tables without
192 * A bit field which specifies the tables to be validated. See
196 * The size of the `tables' array. Normally, @FT_VALIDATE_GX_LENGT
    [all...]
  /external/skia/include/core/
SkFontHost.h 177 /** Return the number of tables in the font
193 (which for most truetype tables is big endian). If the table tag is
230 white (table[1]) gamma tables.
232 static void GetGammaTables(const uint8_t* tables[2]);
  /external/webkit/WebCore/platform/sql/
SQLiteDatabase.cpp 211 Vector<String> tables; local
212 if (!SQLiteStatement(*this, query).returnTextResults(0, tables)) {
213 LOG(SQLDatabase, "Unable to retrieve list of tables from database");
217 for (Vector<String>::iterator table = tables.begin(); table != tables.end(); ++table ) {
  /external/chromium/third_party/icu/source/data/mappings/
ucmcore.mk 6 # without any mapping tables:
ucmlocal.mk 2 # without any mapping tables:
29 # * Three 'fake' tables to prevent Webkit from falling back to the default
  /external/icu4c/data/mappings/
ucmcore.mk 6 # without any mapping tables:
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
symshift.pl 2 # Perl script symshift.pl --- shift symbols of different tables into proper
86 reads in a combination of symbol tables with ids in range [0..2^8-1]
96 -pb_strengths <infile> read symbol tables from <file> and shift them into
picoloaddbg.lua 38 -- tables
47 -- parse input file, build up syms and symnrs tables
picoloadphones.lua 36 -- tables
45 -- parse input file, build up syms and symnrs tables
  /external/webkit/WebCore/platform/graphics/filters/
FEComponentTransfer.cpp 163 unsigned char* tables[] = { rValues, gValues, bValues, aValues }; local
168 (*callEffect[transferFunction[channel].type])(tables[channel], transferFunction[channel]);
177 imageData->data()->set(pixelOffset + channel, tables[channel][c]);
  /system/media/opensles/tools/hashgen/
Makefile 40 gperf --null-strings --readonly-tables --compare-lengths part23in.gperf > part23in.c
  /external/bison/
Android.mk 68 src/tables.c \
  /external/webkit/WebCore/platform/graphics/mac/
SimpleFontDataMac.mm 422 FourCharCode tables[] = { 'morx', 'mort' };
423 for (unsigned i = 0; i < sizeof(tables) / sizeof(tables[0]); ++i) {
425 OSStatus status = ATSFontGetTable(fontID, tables[i], 0, 0, 0, &tableSize);
  /frameworks/base/core/tests/coretests/src/android/provider/
SettingsProviderTest.java 65 // These tables use the row name (not ID) as their content URI.
66 Uri tables[] = { Settings.System.CONTENT_URI, Settings.Secure.CONTENT_URI }; local
67 for (Uri table : tables) {
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDatabase.java 745 HashMap<String, String> tables = new HashMap<String, String>();
749 tables.put(table, info.deletedTable);
752 return tables;
    [all...]
  /external/chromium/base/
linux_versioninfo.scons 17 '-fno-asynchronous-unwind-tables',
107 '-fno-asynchronous-unwind-tables',
test_support_base.scons 17 '-fno-asynchronous-unwind-tables',
118 '-fno-asynchronous-unwind-tables',
test_support_perf.scons 17 '-fno-asynchronous-unwind-tables',
121 '-fno-asynchronous-unwind-tables',
  /external/chromium/net/
net_resources.scons 17 '-fno-asynchronous-unwind-tables',
103 '-fno-asynchronous-unwind-tables',

Completed in 259 milliseconds

1 2 3 4