Searched defs:ID (Results 1 - 10 of 10) sorted by relevance

/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriterPass.cpp22 static char ID; // Pass identification, replacement for typeid member in class:__anon1315::WriteBitcodePass
24 : ModulePass(ID), OS(o) {}
35 char WriteBitcodePass::ID = 0; member in class:WriteBitcodePass
/frameworks/base/core/java/android/os/
H A DBuild.java29 public static final String ID = getString("ro.build.id"); field in class:Build
31 /** A build ID string meant for displaying to the user */
/frameworks/base/media/java/android/media/
H A DTimedText.java193 * ID of the font. This ID will be used to choose the font
228 * Helper class to hold the font ID and name.
233 * The font ID
235 public int ID = -1; field in class:TimedText.Font
521 font.ID = mParcel.readInt();
/frameworks/base/media/libstagefright/mpeg2ts/
H A DESQueue.cpp72 unsigned ID = (ptr[1] >> 3) & 1; local
75 if (ID == 1 && profile_ObjectType == 3) {
93 unsigned ID = (ptr[1] >> 3) & 3; local
95 if (ID == 1) {
320 bits.skipBits(3); // ID, layer
/frameworks/ex/common/java/com/android/common/contacts/
H A DBaseEmailAddressAdapter.java145 public static final int ID = 0; field in class:BaseEmailAddressAdapter.DirectoryListQuery
373 long id = directoryCursor.getLong(DirectoryListQuery.ID);
/frameworks/ex/chips/src/com/android/ex/chips/
H A DBaseRecipientAdapter.java155 public static final int ID = 0; field in class:BaseRecipientAdapter.DirectoryListQuery
535 final long id = directoryCursor.getLong(DirectoryListQuery.ID);
911 * Returns a resource ID representing an image which should be shown when ther's no relevant
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp368 Type *BitcodeReader::getTypeByID(unsigned ID) { argument
370 if (ID >= TypeList.size())
373 if (Type *Ty = TypeList[ID])
378 return TypeList[ID] = StructType::create(Context, "");
382 Type *BitcodeReader::getTypeByIDOrNull(unsigned ID) { argument
383 if (ID >= TypeList.size())
384 TypeList.resize(ID+1);
386 return TypeList[ID];
935 return Error("Invalid Type ID in TST_ENTRY record");
985 return Error("Invalid Value ID i
[all...]
/frameworks/base/core/java/android/provider/
H A DTelephony.java74 * The thread ID of the message
86 * The person ID of the sender
570 * <li><em>transactionId (Integer)</em> - The WAP transaction ID</li>
729 * The Message-ID of the message.
1125 * The thread ID of the message
1249 * return its thread ID. If the message starts a new thread,
1250 * allocate a new thread ID. Otherwise, use the appropriate
1251 * existing thread ID.
1253 * Find the thread ID of the same set of recipients (in
1255 * is found, return it. Otherwise, return a unique thread ID
1710 public static final String ID = "_id"; field in class:Telephony.MmsSms.WordsTable
[all...]
H A DSettings.java2507 * Setting to record the input method used by default, holding the ID
2513 * Setting to record the input method subtype used by default, holding the ID
2520 * Setting to record the history of input method subtype, holding the pair of ID of IME
2540 * containing the IDs of all enabled input methods, each ID separated
2547 * containing the IDs of all disabled input methods, each ID separated
2659 * The Logging ID (a unique 64-bit value) as a hex string.
4165 * The row ID.
4168 public static final String ID = "_id"; field in class:Settings.Bookmarks
4215 private static final String[] sShortcutProjection = { ID, SHORTCUT };
4350 * Returns the device ID tha
[all...]
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp2404 ID = 1 << 6, enumerator in enum:android::TouchInputMapperTest::Axes
3657 if (axes & ID) {
4023 prepareAxes(POSITION | ID);
4199 prepareAxes(POSITION | ID | SLOT);
4370 prepareAxes(POSITION | TOUCH | TOOL | PRESSURE | ORIENTATION | ID | MINOR | DISTANCE);
4574 prepareAxes(POSITION | ID | SLOT);
4735 prepareAxes(POSITION | ID | SLOT | TOOL_TYPE);
4886 prepareAxes(POSITION | ID | SLOT);
4958 prepareAxes(POSITION | ID | SLOT | PRESSURE);

Completed in 1350 milliseconds