Searched refs:ID (Results 1 - 25 of 43) sorted by path

12

/frameworks/av/media/libstagefright/codecs/common/include/
H A DvoMem.h52 #define voMemAlloc(pBuff, pMemOP, ID, nSize) \
56 pMemOP->Alloc(ID, &voMemInfo); \
/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/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 */
H A DUserManager.java1101 if (android.os.Build.ID.startsWith("JVP")) return 1;
/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...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java6457 mStartPlatformVersion = mEndPlatformVersion = Build.ID;
7741 mEndPlatformVersion = Build.ID;
H A DRuntimeInit.java179 String id = Build.ID; // "MASTER" or "M4-rc20"
/frameworks/base/core/tests/coretests/src/android/os/
H A DBuildTest.java56 assertNotEmpty("ID", Build.ID);
/frameworks/base/docs/html/google/
H A Dgoogle_toc.cs59 <span class="en">Advertising ID</span></a>
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp365 ALOGE("idmap: target package ID is invalid (%02x)", targetPackageId);
886 // It is unusual to get the ID from an unsorted string block...
930 // It is unusual to get the ID from an unsorted string block...
3679 // We need to fix the package ID based on a mapping.
4832 fprintf(stderr, "%s: Color ID %s value %s is not valid\n",
5499 // ID to package resource ID.
5663 // This is a library so assign an ID
5991 // The package ID is 0x00. That means that a shared library is accessing
5993 // package ID
[all...]
/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/policy/src/com/android/internal/policy/impl/
H A DGlobalActions.java411 Build.ID);
/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/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
H A DDisplaySinkService.java56 super(context, transport, Protocol.DisplaySinkService.ID);
238 getTransport().sendMessage(Protocol.DisplaySourceService.ID,
241 getTransport().sendMessage(Protocol.DisplaySourceService.ID,
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
H A DDisplaySourceService.java59 super(context, transport, Protocol.DisplaySourceService.ID);
70 getTransport().sendMessage(Protocol.DisplaySinkService.ID,
241 getTransport().sendMessage(Protocol.DisplaySinkService.ID,
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DBridgeTypedArray.java625 idValue = Bridge.getResourceId(ResourceType.ID, idName);
627 idValue = mContext.getProjectCallback().getResourceId(ResourceType.ID, idName);
634 return mContext.getFrameworkResourceValue(ResourceType.ID, idName, defValue);
636 return mContext.getProjectResourceValue(ResourceType.ID, idName, defValue);
665 // TODO: Get the right Theme Attribute ID to enable caching of the drawables.
671 * gets the resource ID of the selected attribute, and uses
692 * This gets the resource ID of the selected attribute, and uses
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DAppCompatActionBar.java53 int contentRootId = context.getProjectResourceValue(ResourceType.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...]
H A DBitcodeReader.h169 // Map the bitcode's custom MDKind ID to the Module's MDKind ID.
259 Type *getTypeByID(unsigned ID);
260 Type *getTypeByIDOrNull(unsigned ID);
261 Value *getFnValueByID(unsigned ID, Type *Ty) {
263 return MDValueList.getValueFwdRef(ID);
264 return ValueList.getValueFwdRef(ID, Ty);
266 BasicBlock *getBasicBlock(unsigned ID) const {
267 if (ID >= FunctionBBs.size()) return 0; // Invalid ID
[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...]
H A DBitcodeReader.h169 // Map the bitcode's custom MDKind ID to the Module's MDKind ID.
254 Type *getTypeByID(unsigned ID);
255 Type *getTypeByIDOrNull(unsigned ID);
256 Value *getFnValueByID(unsigned ID, Type *Ty) {
258 return MDValueList.getValueFwdRef(ID);
259 return ValueList.getValueFwdRef(ID, Ty);
261 BasicBlock *getBasicBlock(unsigned ID) const {
262 if (ID >= FunctionBBs.size()) return 0; // Invalid ID
[all...]
/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/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

Completed in 836 milliseconds

12