HomeSort by relevance Sort by last modified time
    Searched defs:ID (Results 301 - 325 of 1021) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/Target/NVPTX/
NVVMReflect.cpp 54 static char ID;
55 NVVMReflect() : ModulePass(ID) {
61 : ModulePass(ID) {
92 char NVVMReflect::ID = 0;
  /external/llvm/lib/Target/PowerPC/
PPCLoopDataPrefetch.cpp 64 static char ID; // Pass ID, replacement for typeid
65 PPCLoopDataPrefetch() : FunctionPass(ID) {
93 char PPCLoopDataPrefetch::ID = 0;
  /external/llvm/lib/Target/R600/
R600EmitClauseMarkers.cpp 294 static char ID;
295 R600EmitClauseMarkers() : MachineFunctionPass(ID), TII(nullptr), Address(0) {
324 char R600EmitClauseMarkers::ID = 0;
R600ExpandSpecialInstrs.cpp 34 static char ID;
41 R600ExpandSpecialInstrsPass(TargetMachine &tm) : MachineFunctionPass(ID),
53 char R600ExpandSpecialInstrsPass::ID = 0;
SIFixSGPRCopies.cpp 87 static char ID;
100 SIFixSGPRCopies(TargetMachine &tm) : MachineFunctionPass(ID) { }
112 char SIFixSGPRCopies::ID = 0;
SIFoldOperands.cpp 33 static char ID;
36 SIFoldOperands() : MachineFunctionPass(ID) {
84 char SIFoldOperands::ID = 0;
86 char &llvm::SIFoldOperandsID = SIFoldOperands::ID;
SIShrinkInstructions.cpp 44 static char ID;
47 SIShrinkInstructions() : MachineFunctionPass(ID) {
69 char SIShrinkInstructions::ID = 0;
SITypeRewriter.cpp 35 static char ID;
41 SITypeRewriter() : FunctionPass(ID) { }
54 char SITypeRewriter::ID = 0;
  /external/llvm/lib/Target/Sparc/
DelaySlotFiller.cpp 47 static char ID;
48 Filler(TargetMachine &tm) : MachineFunctionPass(ID), TM(tm) {}
94 char Filler::ID = 0;
  /external/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 40 /// expanded to an array of n elements indexed by the thread ID where n is the
43 static char ID;
45 XCoreLowerThreadLocal() : ModulePass(ID) {
55 char XCoreLowerThreadLocal::ID = 0;
  /external/llvm/lib/Transforms/IPO/
LoopExtractor.cpp 38 static char ID; // Pass identification, replacement for typeid
42 : LoopPass(ID), NumLoops(numLoops) {
56 char LoopExtractor::ID = 0;
68 static char ID; // Pass identification, replacement for typeid
73 char SingleLoopExtractor::ID = 0;
178 static char ID; // Pass identification, replacement for typeid
179 BlockExtractorPass() : ModulePass(ID) {
188 char BlockExtractorPass::ID = 0;
  /external/llvm/lib/Transforms/Instrumentation/
BoundsChecking.cpp 43 static char ID;
45 BoundsChecking() : FunctionPass(ID) {
68 char BoundsChecking::ID = 0;
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 48 static char ID;
49 CorrelatedValuePropagation(): FunctionPass(ID) {
61 char CorrelatedValuePropagation::ID = 0;
LoadCombine.cpp 58 LoadCombine() : BasicBlockPass(ID), C(nullptr), AA(nullptr) {
68 static char ID;
269 char LoadCombine::ID = 0;
LoopInstSimplify.cpp 37 static char ID; // Pass ID, replacement for typeid
38 LoopInstSimplify() : LoopPass(ID) {
57 char LoopInstSimplify::ID = 0;
  /external/llvm/lib/Transforms/Utils/
BreakCriticalEdges.cpp 39 static char ID; // Pass identification, replacement for typeid
40 BreakCriticalEdges() : FunctionPass(ID) {
65 char BreakCriticalEdges::ID = 0;
70 char &llvm::BreakCriticalEdgesID = BreakCriticalEdges::ID;
LCSSA.cpp 278 static char ID; // Pass identification, replacement for typeid
279 LCSSA() : FunctionPass(ID) {
308 char LCSSA::ID = 0;
315 char &llvm::LCSSAID = LCSSA::ID;
  /external/llvm/unittests/IR/
DominatorTreeTest.cpp 28 static char ID;
211 DPass() : FunctionPass(ID) {
215 char DPass::ID = 0;
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfStructureElementDictionary_autogen.cpp 47 SkString SkPdfStructureElementDictionary::ID(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("ID", "");
56 return get("ID", "") != NULL;
  /frameworks/compile/libbcc/lib/Renderscript/
RSGlobalInfoPass.cpp 99 static char ID;
102 : ModulePass (ID), mSkipConstants(pSkipConstants) {
265 char RSGlobalInfoPass::ID = 0;
RSInvokeHelperPass.cpp 47 static char ID;
64 : FunctionPass(ID) {
226 char RSInvokeHelperPass::ID = 0;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
HbpcdLookup.java 39 public static final String ID = "_id";
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogQuery.java 52 public static final int ID = 0;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
MessageChangeLogTable.java 21 public static final String ID = "_id";
24 /** Column name for the server-side id for messageKey. */
53 protected MessageChangeLogTable(final long messageKey, final String serverId, final long id) {
56 mLastId = id;
95 * Note that this function assumes the underlying table uses an autoincrement id key: it assumes
96 * that ascending id is the same as chronological order.
101 * @return A {@link android.database.Cursor} containing all rows, in id order.
106 return cr.query(uri, projection, SELECTION_BY_ACCOUNT_KEY_AND_STATUS, args, ID + " ASC");
  /packages/apps/Exchange/src/com/android/exchange/provider/
GalResult.java 37 public void addGalData(long id, String displayName, String emailAddress) {
38 galData.add(new GalData(id, displayName, emailAddress));
49 public static final String ID = "_id";
74 private GalData(long id, String _displayName, String _emailAddress) {
75 put(ID, Long.toString(id));
76 _id = id;

Completed in 159 milliseconds

<<11121314151617181920>>