Searched refs:ID (Results 1 - 23 of 23) sorted by relevance

/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriterPass.cpp22 static char ID; // Pass identification, replacement for typeid member in class:__anon1318::WriteBitcodePass
24 : ModulePass(ID), OS(o) {}
35 char WriteBitcodePass::ID = 0; member in class:WriteBitcodePass
/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriterPass.cpp22 static char ID; // Pass identification, replacement for typeid member in class:__anon1324::WriteBitcodePass
24 : ModulePass(ID), OS(o) {}
35 char WriteBitcodePass::ID = 0; member in class:WriteBitcodePass
/frameworks/av/media/libstagefright/codecs/common/include/
H A DvoMem.h52 #define voMemAlloc(pBuff, pMemOP, ID, nSize) \
56 pMemOP->Alloc(ID, &voMemInfo); \
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.h165 // Map the bitcode's custom MDKind ID to the Module's MDKind ID.
225 Type *getTypeByID(unsigned ID);
226 Type *getTypeByIDOrNull(unsigned ID);
227 Value *getFnValueByID(unsigned ID, Type *Ty) {
229 return MDValueList.getValueFwdRef(ID);
230 return ValueList.getValueFwdRef(ID, Ty);
232 BasicBlock *getBasicBlock(unsigned ID) const {
233 if (ID >= FunctionBBs.size()) return 0; // Invalid ID
[all...]
H A DBitcodeReader.cpp420 Type *BitcodeReader::getTypeByID(unsigned ID) { argument
422 if (ID >= TypeList.size())
425 if (Type *Ty = TypeList[ID])
430 return TypeList[ID] = StructType::create(Context, "");
434 Type *BitcodeReader::getTypeByIDOrNull(unsigned ID) { argument
435 if (ID >= TypeList.size())
436 TypeList.resize(ID+1);
438 return TypeList[ID];
989 return Error("Invalid Type ID in TST_ENTRY record");
1039 return Error("Invalid Value ID i
[all...]
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.h165 // Map the bitcode's custom MDKind ID to the Module's MDKind ID.
218 Type *getTypeByID(unsigned ID);
219 Type *getTypeByIDOrNull(unsigned ID);
220 Value *getFnValueByID(unsigned ID, Type *Ty) {
222 return MDValueList.getValueFwdRef(ID);
223 return ValueList.getValueFwdRef(ID, Ty);
225 BasicBlock *getBasicBlock(unsigned ID) const {
226 if (ID >= FunctionBBs.size()) return 0; // Invalid ID
[all...]
H A DBitcodeReader.cpp699 Type *BitcodeReader::getTypeByID(unsigned ID) { argument
701 if (ID >= TypeList.size())
704 if (Type *Ty = TypeList[ID])
709 return TypeList[ID] = StructType::create(Context);
713 Type *BitcodeReader::getTypeByIDOrNull(unsigned ID) { argument
714 if (ID >= TypeList.size())
715 TypeList.resize(ID+1);
717 return TypeList[ID];
1304 return Error("Invalid Type ID in TST_ENTRY record");
1354 return Error("Invalid Value ID i
[all...]
/frameworks/rs/
H A Dspec.l10 ID [a-zA-Z_][a-zA-Z0-9_]*
61 {ID} {
164 <var_type>{ID} {
175 <api_entry_param>{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/base/core/tests/coretests/src/android/os/
H A DBuildTest.java56 assertNotEmpty("ID", Build.ID);
/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/compile/libbcc/lib/Transforms/
H A DForEachExpand.cpp41 static char ID; member in class:__anon1255::ForEachExpandPass
113 : ModulePass(ID), M(NULL), C(NULL), mNames(Names),
360 char ForEachExpandPass::ID = 0; member in class:ForEachExpandPass
/frameworks/compile/slang/
H A Dllvm-rs-cc.cpp76 OPT_INVALID = 0, // This is not an option ID.
77 #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \
78 HELPTEXT, METAVAR) OPT_##ID,
85 #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \
/frameworks/av/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) {
317 bits.skipBits(3); // ID, layer
/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/base/core/java/com/android/internal/os/
H A DRuntimeInit.java166 String id = Build.ID; // "MASTER" or "M4-rc20"
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DBridgeTypedArray.java726 return mContext.getFrameworkResourceValue(ResourceType.ID, idName, defValue);
730 return mContext.getProjectResourceValue(ResourceType.ID, idName, defValue);
758 * gets the resource ID of the selected attribute, and uses
788 * This gets the resource ID of the selected attribute, and uses
/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.java134 public static final int ID = 0; field in class:BaseRecipientAdapter.DirectoryListQuery
544 final long id = directoryCursor.getLong(DirectoryListQuery.ID);
900 * Returns a resource ID representing an image which should be shown when ther's no relevant
/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>
749 * The Message-ID of the message.
1145 * The thread ID of the message
1269 * return its thread ID. If the message starts a new thread,
1270 * allocate a new thread ID. Otherwise, use the appropriate
1271 * existing thread ID.
1273 * Find the thread ID of the same set of recipients (in
1275 * is found, return it. Otherwise, return a unique thread ID
1730 public static final String ID = "_id"; field in class:Telephony.MmsSms.WordsTable
[all...]
H A DSettings.java2644 * Setting to record the input method used by default, holding the ID
2650 * Setting to record the input method subtype used by default, holding the ID
2657 * Setting to record the history of input method subtype, holding the pair of ID of IME
2677 * containing the IDs of all enabled input methods, each ID separated
2684 * containing the IDs of all disabled input methods, each ID separated
2803 * The Logging ID (a unique 64-bit value) as a hex string.
4389 * The row ID.
4392 public static final String ID = "_id"; field in class:Settings.Bookmarks
4439 private static final String[] sShortcutProjection = { ID, SHORTCUT };
4574 * Returns the device ID tha
[all...]
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp2446 ID = 1 << 6, enumerator in enum:android::TouchInputMapperTest::Axes
3699 if (axes & ID) {
4065 prepareAxes(POSITION | ID);
4241 prepareAxes(POSITION | ID | SLOT);
4412 prepareAxes(POSITION | TOUCH | TOOL | PRESSURE | ORIENTATION | ID | MINOR | DISTANCE);
4616 prepareAxes(POSITION | ID | SLOT);
4777 prepareAxes(POSITION | ID | SLOT | TOOL_TYPE);
4928 prepareAxes(POSITION | ID | SLOT);
5000 prepareAxes(POSITION | ID | SLOT | PRESSURE);
/frameworks/base/core/java/android/webkit/
H A DWebSettingsClassic.java414 final String id = Build.ID;

Completed in 543 milliseconds