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

1 2 3 4 5 6

  /external/swiftshader/third_party/subzero/wasm-tests/
indirect.c 7 int (*TABLE[])() = {foo, baz, bar, baz};
10 int (*f)() = TABLE[argc - 1];
  /packages/apps/Dialer/java/com/android/dialer/preferredsim/impl/
PreferredSimDatabaseHelper.java 28 static final String TABLE = "preferred_sim";
31 "create table if not exists "
32 + TABLE
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
TableBuilderTest.java 27 private static final String TABLE =
76 Assert.assertEquals(TABLE, builder.build());
  /external/elfutils/lib/
dynamicsizehash.c 35 NAME name of the hash table structure.
36 TYPE data type of the hash table entries
41 ITERATE iterating over the table entries is possible
53 if (htab->table[idx].hashval != 0)
57 if (htab->table[idx].hashval == hval
58 && COMPARE (htab->table[idx].data, val) == 0)
72 if (htab->table[idx].hashval == hval
73 && COMPARE (htab->table[idx].data, val) == 0)
76 while (htab->table[idx].hashval);
86 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/apps/Dialer/java/com/android/dialer/phonelookup/database/contract/
PhoneLookupHistoryContract.java 28 /** PhoneLookupHistory table. */
31 public static final String TABLE = "PhoneLookupHistory";
35 /** The content URI for this table. */
37 Uri.withAppendedPath(PhoneLookupHistoryContract.CONTENT_URI, TABLE);
52 * cannot be normalized to E164. Required, primary key for the table.
  /toolchain/binutils/binutils-2.27/zlib/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,
  /cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/
DeviceEvent.java 35 import android.inputmethodservice.cts.db.Table;
52 public static final Table<DeviceEvent> TABLE = new DeviceEventTable(EventTableConstants.NAME);
105 return TABLE.buildContentValues(event);
114 return TABLE.buildStream(cursor);
177 * Abstraction of device event table in database.
179 private static final class DeviceEventTable extends Table<DeviceEvent> {
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Tag.java 39 public static final Tag TABLE = new TagImpl ("TABLE");
  /frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/
SoundTriggerDbHelper.java 46 public static final String TABLE = "st_sound_model";
53 // Table Create Statement for the sound trigger table
54 private static final String CREATE_TABLE_ST_SOUND_MODEL = "CREATE TABLE "
55 + GenericSoundModelContract.TABLE + "("
74 db.execSQL("DROP TABLE IF EXISTS " + GenericSoundModelContract.TABLE);
91 return db.insertWithOnConflict(GenericSoundModelContract.TABLE, null, values,
104 String selectQuery = "SELECT * FROM " + GenericSoundModelContract.TABLE
139 return db.delete(GenericSoundModelContract.TABLE, soundModelClause, null) != 0
    [all...]
  /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 49 public final static String TABLE = Tables.NICKNAME_LOOKUP;
66 * Given the size of the filter and the expected size of the nickname table,
72 Cursor cursor = mDb.query(NicknameLookupPreloadQuery.TABLE,
127 String TABLE = Tables.NICKNAME_LOOKUP;
138 Cursor cursor = mDb.query(NicknameLookupQuery.TABLE, NicknameLookupQuery.COLUMNS,
  /system/netd/server/
FirewallController.cpp 47 const char* FirewallController::TABLE = "filter";
FirewallController.h 69 static const char* TABLE;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
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 */
  /external/autotest/frontend/client/src/autotest/common/table/
TableDecorator.java 1 package autotest.common.table;
3 import autotest.common.table.DynamicTable.DynamicTableListener;
16 * This class can optionally add any of the following controls around a table (in this order of
21 * Actual data table
35 TABLE = 3,
42 setRow(LayoutRows.TABLE, dataTable);
  /external/freetype/src/gzip/
infutil.h 18 TABLE, /* get table lengths */
37 uInt table; /* table lengths (14 bits) */ member in struct:inflate_blocks_state::__anon20684::__anon20685
  /frameworks/base/services/core/java/com/android/server/net/watchlist/
WatchlistReportDbHelper.java 51 private static final String TABLE = "records";
57 private static final String CREATE_TABLE_MODEL = "CREATE TABLE "
58 + WhiteListReportContract.TABLE + "("
122 db.execSQL("DROP TABLE IF EXISTS " + WhiteListReportContract.TABLE);
140 return db.insert(WhiteListReportContract.TABLE, null, values) != -1;
155 WhiteListReportContract.TABLE, DIGEST_DOMAIN_PROJECTION, selectStatement,
191 return db.delete(WhiteListReportContract.TABLE, clause, null) != 0;
  /packages/apps/Dialer/java/com/android/dialer/calllog/database/contract/
AnnotatedCallLogContract.java 163 * AnnotatedCallLog table.
169 public static final String TABLE = "AnnotatedCallLog";
172 /** The content URI for this table. */
174 Uri.withAppendedPath(AnnotatedCallLogContract.CONTENT_URI, TABLE);
222 * Coalesced view of the AnnotatedCallLog table.
231 public static final String TABLE = "CoalescedAnnotatedCallLog";
233 /** The content URI for this table. */
235 Uri.withAppendedPath(AnnotatedCallLogContract.CONTENT_URI, TABLE);
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
TestProvider.java 68 /* package */static final int TABLE = 100;
111 String table = uri.getPath().substring(1); local
113 Uri newUri = new Uri.Builder().scheme("content").authority(AUTHORITY).path(table)
120 sURIMatcher.addURI(AUTHORITY, table, TABLE);
121 sURIMatcher.addURI(AUTHORITY, table + "/#", RECORD);
140 case TABLE:
179 case TABLE:
217 case TABLE:
  /test/vti/dashboard/src/main/java/com/android/vts/servlet/
BaseServlet.java 52 TABLE("", "/show_table"),
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/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 */
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/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_
106 /* for table and code decoding */
109 code const FAR *lencode; /* starting table for length/literal codes */
110 code const FAR *distcode; /* starting table for distance codes */
113 /* dynamic table building */
120 unsigned short work[288]; /* work area for code table building */
  /external/icu/android_icu4j/src/main/java/android/icu/util/
UResourceBundle.java 590 * which is empty if this is not a bundle or a table resource
600 * which is empty if this is not a bundle or a table resource
652 * which is empty if this is not a bundle or a table resource
664 * vector/table types is the number of child resources.
678 * {@link #STRING STRING}, {@link #TABLE TABLE}.
706 * a key - only those that are members of a table.
731 public static final int TABLE = 2;
    [all...]

Completed in 1828 milliseconds

1 2 3 4 5 6