Searched defs:OI (Results 1 - 8 of 8) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DDominators.h304 typename DomTreeNodeMapType::const_iterator OI = OtherDomTreeNodes.find(BB); local
305 if (OI == OtherDomTreeNodes.end())
309 DomTreeNodeBase<NodeT>* OtherNd = OI->second;
/external/llvm/lib/Analysis/
H A DLazyValueInfo.cpp973 DenseSet<OverDefinedPairTy>::iterator OI = local
975 if (OI == OverDefinedCache.end()) continue;
983 OverDefinedCache.erase(OI);
/external/llvm/lib/VMCore/
H A DConstants.cpp753 User::const_op_iterator OI = llvm::next(this->op_begin()); local
757 ++OI;
761 for (; GEPI != E; ++GEPI, ++OI) {
762 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
/external/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp593 ClassInfo *getOperandClass(const CGIOperandList::OperandInfo &OI,
868 AsmMatcherInfo::getOperandClass(const CGIOperandList::OperandInfo &OI, argument
870 Record *Rec = OI.Rec;
872 Rec = dynamic_cast<DefInit*>(OI.MIOperandInfo->getArg(SubOpIdx))->getDef();
1181 const CGIOperandList::OperandInfo &OI = CGI.Operands[i]; local
1184 if (OI.getTiedRegister() != -1) {
1187 if (OI.MINumOperands != 1) {
1193 << OI.Name << "'\n";
H A DFixedLenDecoderEmitter.cpp746 OperandInfo::iterator OI = OpInfo.begin(); local
748 << "(insn, " << OI->Base << ", " << OI->Width
752 for (OperandInfo::iterator OI = OpInfo.begin(), OE = OpInfo.end();
753 OI != OE; ++OI) {
755 << "(insn, " << OI->Base << ", " << OI->Width
756 << ") << " << OI->Offset << ");\n";
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp1751 if (const ObjCObjectType *OI =
1753 PrevDecl = OI->getInterface();
2898 void Sema::CollectIvarsToConstructOrDestruct(ObjCInterfaceDecl *OI, argument
2900 for (ObjCIvarDecl *Iv = OI->all_declared_ivar_begin(); Iv;
/external/clang/lib/AST/
H A DASTContext.cpp1151 void ASTContext::DeepCollectObjCIvars(const ObjCInterfaceDecl *OI, argument
1154 if (const ObjCInterfaceDecl *SuperClass = OI->getSuperClass())
1157 for (ObjCInterfaceDecl::ivar_iterator I = OI->ivar_begin(),
1158 E = OI->ivar_end(); I != E; ++I)
1161 ObjCInterfaceDecl *IDecl = const_cast<ObjCInterfaceDecl *>(OI);
1172 if (const ObjCInterfaceDecl *OI = dyn_cast<ObjCInterfaceDecl>(CDecl)) {
1175 for (ObjCInterfaceDecl::all_protocol_iterator P = OI->all_referenced_protocol_begin(),
1176 PE = OI->all_referenced_protocol_end(); P != PE; ++P) {
1187 for (const ObjCCategoryDecl *CDeclChain = OI->getCategoryList();
1190 if (ObjCInterfaceDecl *SD = OI
4507 ObjCInterfaceDecl *OI = OIT->getDecl(); local
[all...]
/external/clang/lib/CodeGen/
H A DCGObjCMac.cpp767 llvm::Constant *BuildIvarLayout(const ObjCImplementationDecl *OI,
775 void BuildAggrIvarLayout(const ObjCImplementationDecl *OI,
3578 void CGObjCCommonMac::BuildAggrIvarLayout(const ObjCImplementationDecl *OI, argument
3602 ComputeIvarBaseOffset(CGM, OI, cast<ObjCIvarDecl>(FirstField));
3615 ComputeIvarBaseOffset(CGM, OI, cast<ObjCIvarDecl>(Field)) - FirstFieldDelta;
3897 const ObjCInterfaceDecl *OI = OMD->getClassInterface(); local
3900 for (const ObjCIvarDecl *IVD = OI->all_declared_ivar_begin();
3906 CGM.getContext().DeepCollectObjCIvars(OI, true, Ivars);

Completed in 213 milliseconds