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

  /external/elfutils/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 ContactsContract.DataUsageFeedback}. The table structure itself
277 * Join string intended to be used with the GROUPS table/view. The main table must be named
    [all...]
ContactsProvider2.java 437 public static final String TABLE = "data "
462 String TABLE = Tables.RAW_CONTACTS_JOIN_ACCOUNTS;
    [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/qemu/distrib/zlib-1.2.3/
inflate.h 36 TABLE, /* i: waiting for dynamic block table lengths */
65 TYPE -> STORED or TABLE or LEN or CHECK
67 TABLE -> LENLENS -> CODELENS -> LEN
99 /* for table and code decoding */
102 code const FAR *lencode; /* starting table for length/literal codes */
103 code const FAR *distcode; /* starting table for distance codes */
106 /* dynamic table building */
113 unsigned short work[288]; /* work area for code table building */
  /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/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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/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");
  /frameworks/base/services/java/com/android/server/
LockSettingsService.java 70 private static final String TABLE = "locksettings";
368 db.delete(TABLE, COLUMN_USERID + "='" + userId + "'", null);
403 db.delete(TABLE, COLUMN_KEY + "=? AND " + COLUMN_USERID + "=?",
405 db.insert(TABLE, null, cv);
416 if ((cursor = db.query(TABLE, COLUMNS_FOR_QUERY,
440 db.execSQL("CREATE TABLE " + TABLE + " (" +
  /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...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java 519 // HashMap woulnd't shrink the internal table once expands it, so let's just re-create
548 public static final String TABLE = Tables.RAW_CONTACTS;
563 Cursor cursor = db.query(RawContactIdAndAggregationModeQuery.TABLE,
641 public static final String TABLE = Tables.RAW_CONTACTS;
666 Cursor cursor = db.query(RawContactIdAndAccountQuery.TABLE,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyleConstants.h 428 TABLE, INLINE_TABLE, TABLE_ROW_GROUP,
  /external/robolectric/lib/main/
h2-1.2.147.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.registry_3.5.0.v20100503.jar 
com.ibm.icu_4.2.1.v20100412.jar 
  /external/emma/lib/
emma.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 475 milliseconds