/external/llvm/include/llvm/Support/ |
D | InstVisitor.h | 112 RetTy visit(Instruction *I) { return visit(*I); } in visit() 116 RetTy visit(Instruction &I) { in visit() 161 RetTy visitReturnInst(ReturnInst &I) { DELEGATE(TerminatorInst);} in visitReturnInst() 162 RetTy visitBranchInst(BranchInst &I) { DELEGATE(TerminatorInst);} in visitBranchInst() 163 RetTy visitSwitchInst(SwitchInst &I) { DELEGATE(TerminatorInst);} in visitSwitchInst() 164 RetTy visitIndirectBrInst(IndirectBrInst &I) { DELEGATE(TerminatorInst);} in visitIndirectBrInst() 165 RetTy visitResumeInst(ResumeInst &I) { DELEGATE(TerminatorInst);} in visitResumeInst() 166 RetTy visitUnreachableInst(UnreachableInst &I) { DELEGATE(TerminatorInst);} in visitUnreachableInst() 167 RetTy visitICmpInst(ICmpInst &I) { DELEGATE(CmpInst);} in visitICmpInst() 168 RetTy visitFCmpInst(FCmpInst &I) { DELEGATE(CmpInst);} in visitFCmpInst() [all …]
|
/external/llvm/lib/Transforms/Utils/ |
D | CloneModule.cpp | 42 for (Module::lib_iterator I = M->lib_begin(), E = M->lib_end(); I != E; ++I) in CloneModule() local 49 for (Module::const_global_iterator I = M->global_begin(), E = M->global_end(); in CloneModule() local 63 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I) { in CloneModule() local 72 for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end(); in CloneModule() local 84 for (Module::const_global_iterator I = M->global_begin(), E = M->global_end(); in CloneModule() local 93 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I) { in CloneModule() local 109 for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end(); in CloneModule() local 117 for (Module::const_named_metadata_iterator I = M->named_metadata_begin(), in CloneModule() local
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineWorklist.h | 38 void Add(Instruction *I) { in Add() 46 if (Instruction *I = dyn_cast<Instruction>(V)) in AddValue() local 59 Instruction *I = List[NumEntries-1]; in AddInitialGroup() local 66 void Remove(Instruction *I) { in Remove() 77 Instruction *I = Worklist.back(); in RemoveOne() local 87 void AddUsersToWorkList(Instruction &I) { in AddUsersToWorkList()
|
/external/clang/test/SemaTemplate/ |
D | example-dynarray.cpp | 22 for (unsigned I = 0, N = other.size(); I != N; ++I) in dynarray() local 27 for (unsigned I = 0, N = size(); I != N; ++I) in ~dynarray() local 36 for (unsigned I = 0, N = other.size(); I != N; ++I) in operator =() local 39 for (unsigned I = 0, N = size(); I != N; ++I) in operator =() local 79 for (unsigned I = 0, N = size(); I != N; ++I) in operator ==() local 104 for (unsigned I = 0; I != Size; ++I) in push_back() local 107 for (unsigned I = 0, N = size(); I != N; ++I) in push_back() local 135 for (dynarray<int>::iterator I = di.begin(), IEnd = di.end(); I != IEnd; ++I) in main() local 138 for (int I = 0, N = di.size(); I != N; ++I) in main() local 148 for (dynarray<int>::iterator I = di2.begin(), IEnd = di2.end(); in main() local [all …]
|
/external/clang/test/SemaObjC/ |
D | arc-objc-lifetime.m | 14 @interface I @end interface 16 @implementation I implementation 38 __strong I *(__strong test2); // expected-error {{the type 'I *__strong' is already explicitly owne… function 39 __strong I *(__strong (test3)); // expected-error {{the type 'I *__strong' is already explicitly ow… function
|
D | no-ivar-access-control.m | 5 @interface I interface 12 @implementation I implementation in I 16 int foo1(I* p) { category 29 - (int) meth : (I*) arg { argument
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | ObjCUnusedIVarsChecker.cpp | 38 IvarUsageMap::iterator I = M.find(D); in Scan() local 50 for (Stmt::const_child_iterator I=S->child_begin(),E=S->child_end(); I!=E;++I) in Scan() local 63 IvarUsageMap::iterator I = M.find(ID); in Scan() local 70 for (ObjCContainerDecl::instmeth_iterator I = D->instmeth_begin(), in Scan() local 77 for (ObjCImplementationDecl::propimpl_iterator I = ID->propimpl_begin(), in Scan() local 93 for (DeclContext::decl_iterator I=C->decls_begin(), E=C->decls_end(); in Scan() local 109 for (ObjCInterfaceDecl::ivar_iterator I=ID->ivar_begin(), in checkObjCUnusedIvar() local 136 for (IvarUsageMap::iterator I = M.begin(), E = M.end(); I!=E; ++I) in checkObjCUnusedIvar() local 154 for (IvarUsageMap::iterator I = M.begin(), E = M.end(); I!=E; ++I) in checkObjCUnusedIvar() local
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/ |
D | p3.cpp | 4 typedef int I; typedef 6 typedef I2 I; // expected-note {{previous definition is here}} typedef 8 typedef char I; // expected-error {{typedef redefinition with different types}} typedef
|
/external/clang/test/CodeGenObjCXX/ |
D | message-reference.mm | 4 @interface I {} interface 9 +(int)writeBlip:(I*)srcBlip; argument 13 +(int)writeBlip:(I*)srcBlip{ argument
|
/external/clang/test/Index/ |
D | index-decls.m | 1 @interface I interface 6 @interface I() interface in assign 10 @implementation I implementation
|
/external/llvm/lib/Linker/ |
D | LinkArchives.cpp | 47 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) in GetAllUndefinedSymbols() local 58 for (Module::global_iterator I = M->global_begin(), E = M->global_end(); in GetAllUndefinedSymbols() local 70 for (Module::alias_iterator I = M->alias_begin(), E = M->alias_end(); in GetAllUndefinedSymbols() local 76 for (std::set<std::string>::iterator I = UndefinedSymbols.begin(); in GetAllUndefinedSymbols() local 160 for (SmallVectorImpl<Module*>::iterator I=Modules.begin(), E=Modules.end(); in LinkInArchive() local
|
/external/llvm/lib/CodeGen/ |
D | MachineBasicBlock.cpp | 77 I = N->instr_begin(), E = N->instr_end(); I != E; ++I) in addNodeToList() local 144 instr_iterator I = instr_begin(), E = instr_end(); in getFirstNonPHI() local 152 MachineBasicBlock::SkipPHIsAndLabels(MachineBasicBlock::iterator I) { in SkipPHIsAndLabels() 164 iterator B = begin(), E = end(), I = E; in getFirstTerminator() local 174 const_iterator B = begin(), E = end(), I = E; in getFirstTerminator() local 183 instr_iterator B = instr_begin(), E = instr_end(), I = E; in getFirstInstrTerminator() local 193 instr_iterator B = instr_begin(), I = instr_end(); in getLastNonDebugInstr() local 208 const_instr_iterator B = instr_begin(), I = instr_end(); in getLastNonDebugInstr() local 224 for (const_succ_iterator I = succ_begin(), E = succ_end(); I != E; ++I) in getLandingPadSuccessor() local 286 for (livein_iterator I = livein_begin(),E = livein_end(); I != E; ++I) in print() local [all …]
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | FunctionSummary.h | 52 MapTy::iterator I = Map.find(D); in findOrInsertSummary() local 62 MapTy::iterator I = findOrInsertSummary(D); in markReachedMaxBlockCount() local 67 MapTy::const_iterator I = Map.find(D); in hasReachedMaxBlockCount() local 74 MapTy::iterator I = findOrInsertSummary(D); in markVisitedBasicBlock() local 85 MapTy::const_iterator I = Map.find(D); in getNumVisitedBasicBlocks() local 93 MapTy::const_iterator I = Map.find(D); in getPercentBlocksReachable() local
|
/external/llvm/lib/MC/ |
D | MCAtom.cpp | 16 void MCAtom::addInst(const MCInst &I, uint64_t Address, unsigned Size) { in addInst() 53 std::vector<MCData>::iterator I = Data.begin() + (RightBegin - LeftBegin); in split() local 60 std::vector<std::pair<uint64_t, MCInst> >::iterator I = Text.begin(); in split() local 85 std::vector<std::pair<uint64_t, MCInst> >::iterator I = Text.begin(); in truncate() local
|
/external/llvm/lib/Analysis/ |
D | Lint.cpp | 198 Instruction &I = *CS.getInstruction(); in visitCallSite() local 347 void Lint::visitCallInst(CallInst &I) { in visitCallInst() 351 void Lint::visitInvokeInst(InvokeInst &I) { in visitInvokeInst() 355 void Lint::visitReturnInst(ReturnInst &I) { in visitReturnInst() 370 void Lint::visitMemoryReference(Instruction &I, in visitMemoryReference() 427 void Lint::visitLoadInst(LoadInst &I) { in visitLoadInst() 433 void Lint::visitStoreInst(StoreInst &I) { in visitStoreInst() 440 void Lint::visitXor(BinaryOperator &I) { in visitXor() 446 void Lint::visitSub(BinaryOperator &I) { in visitSub() 452 void Lint::visitLShr(BinaryOperator &I) { in visitLShr() [all …]
|
D | Interval.cpp | 45 for (std::vector<BasicBlock*>::const_iterator I = Nodes.begin(), in print() local 50 for (std::vector<BasicBlock*>::const_iterator I = Predecessors.begin(), in print() local 55 for (std::vector<BasicBlock*>::const_iterator I = Successors.begin(), in print() local
|
D | MemoryBuiltins.cpp | 29 bool llvm::isMalloc(const Value *I) { in isMalloc() 60 const CallInst *llvm::extractMallocCall(const Value *I) { in extractMallocCall() 65 CallInst *llvm::extractMallocCall(Value *I) { in extractMallocCall() 79 CallInst *llvm::extractMallocCallFromBitCast(Value *I) { in extractMallocCallFromBitCast() 85 const CallInst *llvm::extractMallocCallFromBitCast(const Value *I) { in extractMallocCallFromBitCast() 119 const CallInst *llvm::isArrayMalloc(const Value *I, const TargetData *TD) { in isArrayMalloc() 188 const CallInst *llvm::isFreeCall(const Value *I) { in isFreeCall()
|
D | ModuleDebugInfoPrinter.cpp | 60 for (DebugInfoFinder::iterator I = Finder.compile_unit_begin(), in print() local 67 for (DebugInfoFinder::iterator I = Finder.subprogram_begin(), in print() local 74 for (DebugInfoFinder::iterator I = Finder.global_variable_begin(), in print() local 81 for (DebugInfoFinder::iterator I = Finder.type_begin(), in print() local
|
/external/llvm/lib/Transforms/IPO/ |
D | GlobalDCE.cpp | 65 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) { in runOnModule() local 73 for (Module::global_iterator I = M.global_begin(), E = M.global_end(); in runOnModule() local 83 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end(); in runOnModule() local 97 for (Module::global_iterator I = M.global_begin(), E = M.global_end(); in runOnModule() local 106 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) in runOnModule() local 115 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end(); I != E; in runOnModule() local 181 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) in GlobalIsNeeded() local 196 for (User::op_iterator I = C->op_begin(), E = C->op_end(); I != E; ++I) in MarkUsedGlobalsAsNeeded() local
|
D | PruneEH.cpp | 68 for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); I != E; ++I) in runOnSCC() local 73 for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); I != E; ++I) in runOnSCC() local 85 for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); in runOnSCC() local 114 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) in runOnSCC() local 139 for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); I != E; ++I) { in runOnSCC() local 156 for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); I != E; ++I) { in runOnSCC() local 207 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ) in SimplifyFunction() local 238 for (BasicBlock::iterator I = BB->end(), E = BB->begin(); I != E; ) { in DeleteBasicBlock() local
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | CheckerHelpers.cpp | 25 for (Stmt::const_child_iterator I = S->child_begin(); I != S->child_end(); in containsMacro() local 41 for (Stmt::const_child_iterator I = S->child_begin(); I != S->child_end(); in containsEnum() local 59 for (Stmt::const_child_iterator I = S->child_begin(); I != S->child_end(); in containsStaticLocal() local 73 for (Stmt::const_child_iterator I = S->child_begin(); I != S->child_end(); in containsBuiltinOffsetOf() local
|
D | FunctionSummary.cpp | 19 for (MapTy::iterator I = Map.begin(), E = Map.end(); I != E; ++I) { in ~FunctionSummariesTy() local 26 for (MapTy::iterator I = Map.begin(), E = Map.end(); I != E; ++I) { in getTotalNumBasicBlocks() local 34 for (MapTy::iterator I = Map.begin(), E = Map.end(); I != E; ++I) { in getTotalNumVisitedBasicBlocks() local
|
/external/llvm/lib/Bitcode/Writer/ |
D | ValueEnumerator.cpp | 34 for (Module::const_global_iterator I = M->global_begin(), in ValueEnumerator() local 39 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I) { in ValueEnumerator() local 45 for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end(); in ValueEnumerator() local 53 for (Module::const_global_iterator I = M->global_begin(), in ValueEnumerator() local 59 for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end(); in ValueEnumerator() local 73 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end(); in ValueEnumerator() local 78 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E;++I){ in ValueEnumerator() local 113 InstructionMapType::const_iterator I = InstructionMap.find(Inst); in getInstructionID() local 118 void ValueEnumerator::setInstructionID(const Instruction *I) { in setInstructionID() 124 ValueMapType::const_iterator I = MDValueMap.find(V); in getValueID() local [all …]
|
/external/llvm/include/llvm/Analysis/ |
D | Interval.h | 51 inline Interval(const Interval &I) // copy ctor in Interval() 107 inline Interval::succ_iterator succ_begin(Interval *I) { in succ_begin() 110 inline Interval::succ_iterator succ_end(Interval *I) { in succ_end() 117 inline Interval::pred_iterator pred_begin(Interval *I) { in pred_begin() 120 inline Interval::pred_iterator pred_end(Interval *I) { in pred_end()
|
/external/clang/lib/Basic/ |
D | Module.cpp | 44 for (submodule_iterator I = submodule_begin(), IEnd = submodule_end(); in ~Module() local 74 for (unsigned I = 0, N = Current->Requires.size(); I != N; ++I) { in isAvailable() local 113 for (llvm::SmallVector<StringRef, 2>::reverse_iterator I = Names.rbegin(), in getFullModuleName() local 171 for (unsigned I = 0, N = Id.size(); I != N; ++I) { in printModuleId() local 196 for (unsigned I = 0, N = Requires.size(); I != N; ++I) { in print() local 216 for (unsigned I = 0, N = Headers.size(); I != N; ++I) { in print() local 227 for (unsigned I = 0, N = Exports.size(); I != N; ++I) { in print() local 240 for (unsigned I = 0, N = UnresolvedExports.size(); I != N; ++I) { in print() local
|