/frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/ |
H A D | Protocol.java | 41 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_3_2/ |
H A D | BitcodeWriterPass.cpp | 22 static char ID; // Pass identification, replacement for typeid member in class:__anon1293::WriteBitcodePass 24 : ModulePass(ID), OS(o) {} 35 char WriteBitcodePass::ID = 0; member in class:WriteBitcodePass
|
/frameworks/compile/mclinker/lib/LD/ |
H A D | DiagnosticInfos.cpp | 27 uint16_t ID; member in struct:__anon1259::DiagStaticInfo 37 { return (ID < pRHS.ID); } 82 if (result == (static_info + info_size) || result->ID != pID) 108 unsigned int ID = info.getID(); local 111 const DiagStaticInfo* static_info = getDiagInfo(ID); 115 switch (ID) {
|
H A D | DiagnosticEngine.cpp | 72 m_State.ID = pID;
|
H A D | EhFrameReader.cpp | 80 // ID Field 81 uint32_t ID = data[cur_idx++]; local 82 if (0x0 == ID) 172 // skip Length, Extended Length and CIE ID.
|
/frameworks/compile/mclinker/include/mcld/LD/ |
H A D | DiagnosticEngine.h | 103 State() : numArgs(0), ID(-1), severity(None), file(NULL) { } 108 ID = -1; 118 uint16_t ID; member in struct:mcld::DiagnosticEngine::State
|
H A D | DiagnosticInfos.h | 19 enum ID { enum in namespace:mcld::diag
|
H A D | Diagnostic.h | 32 { return m_Engine.state().ID; }
|
/frameworks/compile/slang/BitWriter_2_9/ |
H A D | BitcodeWriterPass.cpp | 27 static char ID; // Pass identification, replacement for typeid member in class:__anon1279::WriteBitcodePass 29 : ModulePass(ID), OS(o) {} 45 char WriteBitcodePass::ID = 0; member in class:WriteBitcodePass
|
/frameworks/compile/slang/BitWriter_2_9_func/ |
H A D | BitcodeWriterPass.cpp | 27 static char ID; // Pass identification, replacement for typeid member in class:__anon1285::WriteBitcodePass 29 : ModulePass(ID), OS(o) {} 45 char WriteBitcodePass::ID = 0; member in class:WriteBitcodePass
|
/frameworks/av/media/libstagefright/codecs/common/include/ |
H A D | voMem.h | 52 #define voMemAlloc(pBuff, pMemOP, ID, nSize) \ 56 pMemOP->Alloc(ID, &voMemInfo); \
|
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
H A D | BitcodeReader.h | 171 // Map the bitcode's custom MDKind ID to the Module's MDKind ID. 235 Type *getTypeByID(unsigned ID); 236 Type *getTypeByIDOrNull(unsigned ID); 237 Value *getFnValueByID(unsigned ID, Type *Ty) { 239 return MDValueList.getValueFwdRef(ID); 240 return ValueList.getValueFwdRef(ID, Ty); 242 BasicBlock *getBasicBlock(unsigned ID) const { 243 if (ID >= FunctionBBs.size()) return 0; // Invalid ID [all...] |
H A D | BitcodeReader.cpp | 430 Type *BitcodeReader::getTypeByID(unsigned ID) { argument 432 if (ID >= TypeList.size()) 435 if (Type *Ty = TypeList[ID]) 440 return TypeList[ID] = StructType::create(Context); 444 Type *BitcodeReader::getTypeByIDOrNull(unsigned ID) { argument 445 if (ID >= TypeList.size()) 446 TypeList.resize(ID+1); 448 return TypeList[ID]; 504 switch (Stream.readRecord(Entry.ID, Record)) { 571 switch (Stream.readRecord(Entry.ID, Recor [all...] |
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
H A D | BitcodeReader.h | 171 // Map the bitcode's custom MDKind ID to the Module's MDKind ID. 229 Type *getTypeByID(unsigned ID); 230 Type *getTypeByIDOrNull(unsigned ID); 231 Value *getFnValueByID(unsigned ID, Type *Ty) { 233 return MDValueList.getValueFwdRef(ID); 234 return ValueList.getValueFwdRef(ID, Ty); 236 BasicBlock *getBasicBlock(unsigned ID) const { 237 if (ID >= FunctionBBs.size()) return 0; // Invalid ID [all...] |
H A D | BitcodeReader.cpp | 710 Type *BitcodeReader::getTypeByID(unsigned ID) { argument 712 if (ID >= TypeList.size()) 715 if (Type *Ty = TypeList[ID]) 720 return TypeList[ID] = StructType::create(Context); 724 Type *BitcodeReader::getTypeByIDOrNull(unsigned ID) { argument 725 if (ID >= TypeList.size()) 726 TypeList.resize(ID+1); 728 return TypeList[ID]; 784 switch (Stream.readRecord(Entry.ID, Record)) { 852 switch (Stream.readRecord(Entry.ID, Recor [all...] |
/frameworks/rs/ |
H A D | spec.l | 10 ID [a-zA-Z_][a-zA-Z0-9_]* 61 {ID} { 164 <var_type>{ID} { 175 <api_entry_param>{ID} {
|
/frameworks/compile/libbcc/lib/Renderscript/ |
H A D | RSEmbedInfo.cpp | 50 static char ID; member in class:__anon1241::RSEmbedInfoPass 59 : ModulePass(ID), 149 char RSEmbedInfoPass::ID = 0; member in class:RSEmbedInfoPass
|
/frameworks/compile/libbcc/tools/bcc_strip_attr/ |
H A D | bcc_strip_attr.cpp | 48 static char ID; member in class:__anon1252::StripAttributes 50 StripAttributes() : ModulePass(ID) { 86 char StripAttributes::ID = 0; member in class:StripAttributes
|
/frameworks/compile/libbcc/include/bcinfo/Wrap/ |
H A D | BCHeaderField.h | 29 // 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 D | BuildTest.java | 56 assertNotEmpty("ID", Build.ID);
|
/frameworks/base/core/java/android/os/ |
H A D | Build.java | 29 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/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/ |
H A D | DisplaySinkService.java | 55 super(context, transport, Protocol.DisplaySinkService.ID); 232 getTransport().sendMessage(Protocol.DisplaySourceService.ID, 235 getTransport().sendMessage(Protocol.DisplaySourceService.ID,
|
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/ |
H A D | DisplaySourceService.java | 58 super(context, transport, Protocol.DisplaySourceService.ID); 69 getTransport().sendMessage(Protocol.DisplaySinkService.ID, 235 getTransport().sendMessage(Protocol.DisplaySinkService.ID,
|
/frameworks/compile/slang/ |
H A D | llvm-rs-cc.cpp | 76 OPT_INVALID = 0, // This is not an option ID. 78 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 79 HELPTEXT, METAVAR) OPT_##ID, 87 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 95 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 97 { PREFIX, NAME, HELPTEXT, METAVAR, OPT_##ID, Option::KIND##Class, PARAM, \
|
/frameworks/base/media/java/android/media/ |
H A D | TimedText.java | 183 * 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;
|