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

1 2

  /external/elfutils/0.153/lib/
dynamicsizehash.c 56 NAME name of the hash table structure.
57 TYPE data type of the hash table entries
62 ITERATE iterating over the table entries is possible
76 if (htab->table[idx].hashval != 0)
80 if (htab->table[idx].hashval == hval
81 && COMPARE (htab->table[idx].data, val) == 0)
95 if (htab->table[idx].hashval == hval
96 && COMPARE (htab->table[idx].data, val) == 0)
99 while (htab->table[idx].hashval);
109 if (htab->table[idx].hashval == 0
    [all...]
  /external/zlib/src/contrib/infback9/
inflate9.h 15 TABLE, /* i: waiting for dynamic block table lengths */
27 TYPE -> STORED or TABLE or LEN or DONE
29 TABLE -> LENLENS -> CODELENS -> LEN
38 /* dynamic table building */
45 unsigned short work[288]; /* work area for code table building */
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForGroupMembership.java 45 String TABLE = Tables.RAW_CONTACTS;
184 * the raw_contacts table.
194 Cursor c = db.query(RawContactsQuery.TABLE, RawContactsQuery.COLUMNS,
DataRowHandler.java 42 public static final String TABLE = Tables.DATA_JOIN_MIMETYPES;
107 * Inserts a row into the {@link Data} table.
272 Cursor c = db.query(DataDeleteQuery.TABLE,
ContactsDatabaseHelper.java 165 * For {@link android.provider.ContactsContract.DataUsageFeedback}. The table structure
277 * Join string intended to be used with the GROUPS table/view. The main table must be named
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Tag.java 39 public static final Tag TABLE = new TagImpl ("TABLE");
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/data/
FilterStackDBHelper.java 27 private static final String SQL_CREATE_TABLE = "CREATE TABLE ";
32 /** The table name */
33 public static final String TABLE = "filterstack";
60 createTable(db, FilterStack.TABLE, CREATE_FILTER_STACK);
65 dropTable(db, FilterStack.TABLE);
69 protected static void createTable(SQLiteDatabase db, String table, String[][] columns) {
71 create.append(table).append('(');
92 protected static void dropTable(SQLiteDatabase db, String table) {
95 db.execSQL("drop table if exists " + table);
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
CommonNicknameCache.java 48 public final static String TABLE = Tables.NICKNAME_LOOKUP;
65 * Given the size of the filter and the expected size of the nickname table,
71 Cursor cursor = mDb.query(NicknameLookupPreloadQuery.TABLE,
123 String TABLE = Tables.NICKNAME_LOOKUP;
134 Cursor cursor = mDb.query(NicknameLookupQuery.TABLE, NicknameLookupQuery.COLUMNS,
  /external/freetype/src/gzip/
infutil.h 18 TABLE, /* get table lengths */
37 uInt table; /* table lengths (14 bits) */ member in struct:inflate_blocks_state::__anon25367::__anon25368
  /frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
DatabaseHelper.java 46 public static final String TABLE = "sound_model";
57 // Table Create Statement
58 private static final String CREATE_TABLE_SOUND_MODEL = "CREATE TABLE "
59 + SoundModelContract.TABLE + "("
82 db.execSQL("DROP TABLE IF EXISTS " + SoundModelContract.TABLE);
108 return db.insertWithOnConflict(SoundModelContract.TABLE, null, values,
136 return db.delete(SoundModelContract.TABLE, soundModelClause, null) != 0;
155 String selectQuery = "SELECT * FROM " + SoundModelContract.TABLE
  /packages/apps/Exchange/tests/src/com/android/exchange/provider/
MockProvider.java 71 /*package*/ static final int TABLE = 100;
121 String table = uri.getPath().substring(1); local
123 Uri newUri = new Uri.Builder().scheme("content").authority(AUTHORITY).path(table)
130 sURIMatcher.addURI(AUTHORITY, table, TABLE);
131 sURIMatcher.addURI(AUTHORITY, table + "/#", RECORD);
150 case TABLE:
189 case TABLE:
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
TestProvider.java 69 /* package */static final int TABLE = 100;
121 String table = uri.getPath().substring(1); local
123 Uri newUri = new Uri.Builder().scheme("content").authority(AUTHORITY).path(table)
130 sURIMatcher.addURI(AUTHORITY, table, TABLE);
131 sURIMatcher.addURI(AUTHORITY, table + "/#", RECORD);
150 case TABLE:
189 case TABLE:
227 case TABLE:
  /external/chromium_org/third_party/zlib/
inflate.h 37 TABLE, /* i: waiting for dynamic block table lengths */
68 TYPE -> TYPEDO -> STORED or TABLE or LEN_ or CHECK
70 TABLE -> LENLENS -> CODELENS -> LEN_
103 /* for table and code decoding */
106 code const FAR *lencode; /* starting table for length/literal codes */
107 code const FAR *distcode; /* starting table for distance codes */
110 /* dynamic table building */
117 unsigned short work[288]; /* work area for code table building */
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
inflate.h 37 TABLE, /* i: waiting for dynamic block table lengths */
68 TYPE -> TYPEDO -> STORED or TABLE or LEN_ or CHECK
70 TABLE -> LENLENS -> CODELENS -> LEN_
103 /* for table and code decoding */
106 code const FAR *lencode; /* starting table for length/literal codes */
107 code const FAR *distcode; /* starting table for distance codes */
110 /* dynamic table building */
117 unsigned short work[288]; /* work area for code table building */
  /external/qemu/distrib/zlib-1.2.8/
inflate.h 37 TABLE, /* i: waiting for dynamic block table lengths */
68 TYPE -> TYPEDO -> STORED or TABLE or LEN_ or CHECK
70 TABLE -> LENLENS -> CODELENS -> LEN_
103 /* for table and code decoding */
106 code const FAR *lencode; /* starting table for length/literal codes */
107 code const FAR *distcode; /* starting table for distance codes */
110 /* dynamic table building */
117 unsigned short work[288]; /* work area for code table building */
  /external/zlib/src/
inflate.h 37 TABLE, /* i: waiting for dynamic block table lengths */
68 TYPE -> TYPEDO -> STORED or TABLE or LEN_ or CHECK
70 TABLE -> LENLENS -> CODELENS -> LEN_
103 /* for table and code decoding */
106 code const FAR *lencode; /* starting table for length/literal codes */
107 code const FAR *distcode; /* starting table for distance codes */
110 /* dynamic table building */
117 unsigned short work[288]; /* work area for code table building */
  /external/owasp/sanitizer/src/main/org/owasp/html/
TagBalancingHtmlStreamEventReceiver.java 106 // Open implied elements, such as list-items and table cells & rows.
332 TABLE,
881 "table", false, elementGroupBits(
    [all...]
  /frameworks/base/services/core/java/com/android/server/
LockSettingsService.java 83 private static final String TABLE = "locksettings";
532 db.delete(TABLE, COLUMN_USERID + "='" + userId + "'", null);
572 db.delete(TABLE, COLUMN_KEY + "=? AND " + COLUMN_USERID + "=?",
574 db.insert(TABLE, null, cv);
585 if ((cursor = db.query(TABLE, COLUMNS_FOR_QUERY,
609 db.execSQL("CREATE TABLE " + TABLE + " (" +
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationStressTest.java 116 static final Map<String, String> TABLE = new Hashtable<String, String>();
160 TABLE.put("one", "1");
161 TABLE.put("two", "2");
162 TABLE.put("three", "3");
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoProvider.java 71 * Internal database table used for account information
73 public static final String TABLE = "accounts";
77 public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE);
94 /** Internal database table used for basic photo information. */
95 public static final String TABLE = "photos";
97 public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE);
133 /** Internal database table used album information. */
134 public static final String TABLE = "albums";
136 public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE);
170 /** Internal database table used metadata information. *
295 String table = getTableFromMatch(match, uri); local
320 String table = getTableFromMatch(match, uri); local
339 String table = getTableFromMatch(match, uri); local
391 String table; local
498 String table = getTableFromMatch(match, uri); local
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmscgats.c 118 // Table. Each individual table can hold properties and rows & cols
131 } TABLE;
144 cmsUInt32Number nTable; // The actual table
146 TABLE Tab[MAXTABLES];
204 // The keyword->symbol translation table. Sorting is required.
298 {"TABLE_DESCRIPTOR", WRITE_STRINGIFY}, // Describes the purpose or contents of a data table.
300 {"TABLE_NAME", WRITE_STRINGIFY} // Provides a short name for a data table.
1002 // ---------------------------------------------------------- Table
1005 TABLE* GetTable(cmsIT8* it8
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
dom_util.js 88 'TABLE' : 'tag_table',
103 'TABLE' : 'tag_table',
752 // information from the table headers once the code for getting table
    [all...]
math_semantic_attr.js     [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java 520 // HashMap woulnd't shrink the internal table once expands it, so let's just re-create
549 public static final String TABLE = Tables.RAW_CONTACTS;
564 Cursor cursor = db.query(RawContactIdAndAggregationModeQuery.TABLE,
642 public static final String TABLE = Tables.RAW_CONTACTS;
667 Cursor cursor = db.query(RawContactIdAndAccountQuery.TABLE,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyleConstants.h 427 TABLE, INLINE_TABLE, TABLE_ROW_GROUP,
434 FIRST_TABLE_DISPLAY = TABLE,

Completed in 963 milliseconds

1 2