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

/frameworks/compile/slang/
H A Dstrip_unknown_attributes.h29 static char ID; member in class:slang::StripUnknownAttributes
H A Dstrip_unknown_attributes.cpp21 StripUnknownAttributes::StripUnknownAttributes() : ModulePass(ID) {
59 char StripUnknownAttributes::ID = 0; member in class:slang::StripUnknownAttributes
/frameworks/compile/mclinker/include/mcld/LD/
H A DDiagnosticInfos.h16 enum ID { enum in namespace:mcld::diag
H A DDiagnosticEngine.h100 State() : numArgs(0), ID(-1), severity(None), file(NULL) { }
105 ID = -1;
115 uint16_t ID; member in struct:mcld::DiagnosticEngine::State
/frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
H A DProtocol.java41 public static final int ID = 1; field in class:Protocol.DisplaySinkService
54 public static final int ID = 2; field in class:Protocol.DisplaySourceService
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriterPass.cpp26 static char ID; // Pass identification, replacement for typeid member in class:__anon1126::WriteBitcodePass
28 : ModulePass(ID), OS(o) {}
40 char WriteBitcodePass::ID = 0; member in class:WriteBitcodePass
/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriterPass.cpp26 static char ID; // Pass identification, replacement for typeid member in class:__anon1132::WriteBitcodePass
28 : ModulePass(ID), OS(o) {}
40 char WriteBitcodePass::ID = 0; member in class:WriteBitcodePass
/frameworks/compile/slang/BitWriter_3_2/
H A DBitcodeWriterPass.cpp26 static char ID; // Pass identification, replacement for typeid member in class:__anon1140::WriteBitcodePass
28 : ModulePass(ID), OS(o) {}
40 char WriteBitcodePass::ID = 0; member in class:WriteBitcodePass
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSEmbedInfo.cpp49 static char ID; member in class:__anon1061::RSEmbedInfoPass
56 : ModulePass(ID),
138 char RSEmbedInfoPass::ID = 0; member in class:RSEmbedInfoPass
H A DRSForEachExpand.cpp58 static char ID; member in class:__anon1062::RSForEachExpandPass
335 : ModulePass(ID), Module(NULL), Context(NULL),
884 char RSForEachExpandPass::ID = 0; member in class:RSForEachExpandPass
/frameworks/compile/libbcc/tools/bcc_strip_attr/
H A Dbcc_strip_attr.cpp49 static char ID; member in class:__anon1072::StripAttributes
51 StripAttributes() : ModulePass(ID) {
87 char StripAttributes::ID = 0; member in class:StripAttributes
/frameworks/compile/mclinker/lib/LD/
H A DDiagnosticInfos.cpp27 uint16_t ID; member in struct:__anon1080::DiagStaticInfo
37 { return (ID < pRHS.ID); }
87 if (result == (static_info + info_size) || result->ID != pID)
113 unsigned int ID = info.getID(); local
116 const DiagStaticInfo* static_info = getDiagInfo(ID);
120 switch (ID) {
H A DEhFrameReader.cpp83 // ID Field
84 uint32_t ID = data[cur_idx++]; local
85 if (0x0 == ID)
175 // skip Length, Extended Length and CIE ID.
/frameworks/compile/libbcc/include/bcinfo/Wrap/
H A DBCHeaderField.h29 // The serialized format has 2 fixed subfields (ID and length) and the
41 BCHeaderField(Tag ID, size_t len, uint8_t* data) : argument
42 ID_(ID), len_(len), data_(data) {}
81 fprintf(stderr, "Field ID: %d, data length %d, total length %d\n",
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DHbpcdLookup.java39 public static final String ID = "_id"; field in class:HbpcdLookup
/frameworks/base/core/java/android/os/
H A DBuild.java38 public static final String ID = getString("ro.build.id"); field in class:Build
40 /** A build ID string meant for displaying to the user */
/frameworks/base/media/java/android/media/
H A DTimedText.java183 * ID of the font. This ID will be used to choose the font
218 * @param fontId the ID of the font.
240 * Helper class to hold the font ID and name.
246 * The font ID
248 public final int ID; field in class:TimedText.Font
257 * @param id the font ID.
261 this.ID = id;
/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/av/media/libstagefright/mpeg2ts/
H A DESQueue.cpp193 unsigned ID = (ptr[1] >> 3) & 1; local
196 if (ID == 1 && profile_ObjectType == 3) {
221 unsigned ID = (ptr[1] >> 3) & 3; local
223 if (ID == 1) {
636 bits.skipBits(3); // ID, layer
/frameworks/opt/chips/src/com/android/ex/chips/
H A DBaseRecipientAdapter.java118 public static final int ID = 0; field in class:BaseRecipientAdapter.DirectoryListQuery
635 final long id = directoryCursor.getLong(DirectoryListQuery.ID);
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp423 Type *BitcodeReader::getTypeByID(unsigned ID) { argument
425 if (ID >= TypeList.size())
428 if (Type *Ty = TypeList[ID])
433 return TypeList[ID] = StructType::create(Context);
437 Type *BitcodeReader::getTypeByIDOrNull(unsigned ID) { argument
438 if (ID >= TypeList.size())
439 TypeList.resize(ID+1);
441 return TypeList[ID];
497 switch (Stream.readRecord(Entry.ID, Record)) {
563 switch (Stream.readRecord(Entry.ID, Recor
[all...]
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp702 Type *BitcodeReader::getTypeByID(unsigned ID) { argument
704 if (ID >= TypeList.size())
707 if (Type *Ty = TypeList[ID])
712 return TypeList[ID] = StructType::create(Context);
716 Type *BitcodeReader::getTypeByIDOrNull(unsigned ID) { argument
717 if (ID >= TypeList.size())
718 TypeList.resize(ID+1);
720 return TypeList[ID];
776 switch (Stream.readRecord(Entry.ID, Record)) {
843 switch (Stream.readRecord(Entry.ID, Recor
[all...]
/frameworks/opt/telephony/src/java/android/provider/
H A DTelephony.java149 * The thread ID of the message.
213 * The ID of the sender of the conversation, if present.
368 * Add an SMS to the given URI with the specified thread ID.
904 * <li><em>"transactionId"</em> - (Integer) The WAP transaction ID</li>
947 * <li><em>"transactionId"</em> - (Integer) The WAP transaction ID</li>
1111 * The thread ID of the message.
1155 * The {@code Message-ID} of the message.
1800 * return its thread ID. If the message starts a new thread,
1801 * allocate a new thread ID. Otherwise, use the appropriate
1802 * existing thread ID
2421 public static final String ID = "_id"; field in class:Telephony.MmsSms.WordsTable
[all...]
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp2487 ID = 1 << 6, enumerator in enum:android::TouchInputMapperTest::Axes
3783 if (axes & ID) {
4149 prepareAxes(POSITION | ID);
4325 prepareAxes(POSITION | ID | SLOT);
4496 prepareAxes(POSITION | TOUCH | TOOL | PRESSURE | ORIENTATION | ID | MINOR | DISTANCE);
4700 prepareAxes(POSITION | ID | SLOT);
4861 prepareAxes(POSITION | ID | SLOT | TOOL_TYPE);
5012 prepareAxes(POSITION | ID | SLOT);
5084 prepareAxes(POSITION | ID | SLOT | PRESSURE);
/frameworks/base/core/java/android/provider/
H A DSettings.java3519 * Setting to record the input method used by default, holding the ID
3525 * Setting to record the input method subtype used by default, holding the ID
3532 * Setting to record the history of input method subtype, holding the pair of ID of IME
3572 * containing the IDs of all enabled input methods, each ID separated
3579 * containing the IDs of all disabled input methods, each ID separated
3765 * The Logging ID (a unique 64-bit value) as a hex string.
4801 * containing the IDs of all hidden TV inputs. Each ID is encoded by
7031 * The row ID.
7034 public static final String ID = "_id"; field in class:Settings.Bookmarks
7081 private static final String[] sShortcutProjection = { ID, SHORTCU
[all...]

Completed in 3024 milliseconds