Searched refs:II (Results 276 - 300 of 341) sorted by relevance

<<11121314

/external/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.h57 CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
/external/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp297 for (MachineRegisterInfo::livein_iterator II = MF.getRegInfo().livein_begin(),
298 EE = MF.getRegInfo().livein_end(); II != EE; ++II) {
299 unsigned Reg = II->first;
H A DX86RegisterInfo.cpp469 X86RegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II, argument
474 MachineInstr &MI = *II;
/external/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp185 for (inst_iterator II = inst_begin(F), E = inst_end(F); II != E; ++II) {
186 Instruction *I = &*II;
/external/clang/include/clang/Basic/
H A DDiagnostic.h1056 const IdentifierInfo *II) {
1057 DB.AddTaggedVal(reinterpret_cast<intptr_t>(II),
/external/clang/lib/Basic/
H A DDiagnostic.cpp807 const IdentifierInfo *II = getArgIdentifier(ArgNo); local
811 if (!II) {
817 llvm::raw_svector_ostream(OutStr) << '\'' << II->getName() << '\'';
/external/clang/lib/Parse/
H A DParseTentative.cpp1001 bool Parser::isTentativelyDeclared(IdentifierInfo *II) { argument
1003 TentativelyDeclaredIdentifiers.end(), II)
/external/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp310 IdentifierInfo &II,
313 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName);
308 isNonTypeNestedNameSpecifier(Scope *S, CXXScopeSpec &SS, SourceLocation IdLoc, IdentifierInfo &II, ParsedType ObjectTypePtr) argument
H A DSemaTemplate.cpp221 bool Sema::DiagnoseUnknownTemplateName(const IdentifierInfo &II, argument
238 << Qualifier << II.getName()
241 = TemplateTy::make(Context.getDependentTemplateName(Qualifier, &II));
3047 if (auto *II = NameInfo.getName().getAsIdentifierInfo()) {
3065 Context.getDependentNameType(ETK_Typename, SS.getScopeRep(), II);
7723 const CXXScopeSpec &SS, const IdentifierInfo &II,
7737 TypenameLoc, QualifierLoc, II, IdLoc);
7830 static bool isEnableIf(NestedNameSpecifierLoc NNS, const IdentifierInfo &II, argument
7833 if (!II.isStr("type"))
7870 const IdentifierInfo &II,
7722 ActOnTypenameType(Scope *S, SourceLocation TypenameLoc, const CXXScopeSpec &SS, const IdentifierInfo &II, SourceLocation IdLoc) argument
7867 CheckTypenameType(ElaboratedTypeKeyword Keyword, SourceLocation KeywordLoc, NestedNameSpecifierLoc QualifierLoc, const IdentifierInfo &II, SourceLocation IILoc) argument
[all...]
H A DSemaDeclCXX.cpp1221 /// isCurrentClassName - Determine whether the identifier II is the
1223 /// nested classes, this will only return true if II is the name of
1225 bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *, argument
1237 return &II == CurDecl->getIdentifier();
1241 /// \brief Determine whether the identifier II is a typo for the name of
1244 bool Sema::isCurrentClassNameTypo(IdentifierInfo *&II, const CXXScopeSpec *SS) { argument
1257 if (CurDecl && CurDecl->getIdentifier() && II != CurDecl->getIdentifier() &&
1258 3 * II->getName().edit_distance(CurDecl->getIdentifier()->getName())
1259 < II->getLength()) {
1260 II
2070 IdentifierInfo *II = Name.getAsIdentifierInfo(); local
6657 DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, SourceLocation Loc, IdentifierInfo *II, bool *IsInline, NamespaceDecl *PrevNS) argument
6697 ActOnStartNamespaceDef(Scope *NamespcScope, SourceLocation InlineLoc, SourceLocation NamespaceLoc, SourceLocation IdentLoc, IdentifierInfo *II, SourceLocation LBrace, AttributeList *AttrList) argument
11439 IdentifierInfo *II = D.getIdentifier(); local
13066 IdentifierInfo *II = D.getIdentifier(); local
[all...]
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp2419 IdentifierInfo *II; member in class:UpToDateIdentifierRAII
2423 explicit UpToDateIdentifierRAII(IdentifierInfo *II) argument
2424 : II(II), WasOutToDate(false)
2426 if (II) {
2427 WasOutToDate = II->isOutOfDate();
2429 II->setOutOfDate(false);
2435 II->setOutOfDate(true);
/external/clang/tools/libclang/
H A DCXType.cpp802 IdentifierInfo *II = &Ctx.Idents.get(S); local
803 DeclarationName FieldName(II);
/external/llvm/lib/Analysis/
H A DLint.cpp268 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(&I))
269 switch (II->getIntrinsicID()) {
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1752 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(LHSI)) {
1754 switch (II->getIntrinsicID()) {
1756 Worklist.Add(II);
1757 ICI.setOperand(0, II->getArgOperand(0));
1764 Worklist.Add(II);
1765 ICI.setOperand(0, II->getArgOperand(0));
1773 Worklist.Add(II);
1774 ICI.setOperand(0, II->getArgOperand(0));
/external/llvm/utils/TableGen/
H A DCodeGenInstruction.cpp512 if (IntInit *II = dyn_cast<IntInit>(Arg)) {
519 ResOp = ResultOperand(II->getValue());
/external/clang/lib/Driver/
H A DDriver.cpp1394 InputInfo II; local
1400 II);
1549 InputInfo II; local
1551 LinkingOutput, II);
1552 InputInfos.push_back(II);
/external/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp77 const InstrItineraryData *II = local
79 return new ScoreboardHazardRecognizer(II, DAG);
88 const InstrItineraryData *II,
94 return new PPCDispatchGroupSBHazardRecognizer(II, DAG);
104 return new ScoreboardHazardRecognizer(II, DAG);
87 CreateTargetPostRAHazardRecognizer( const InstrItineraryData *II, const ScheduleDAG *DAG) const argument
/external/clang/lib/CodeGen/
H A DCodeGenModule.cpp546 IdentifierInfo *II = ND->getIdentifier(); local
547 assert(II && "Attempt to mangle unnamed decl.");
548 Str = II->getName();
3002 IdentifierInfo *II = &getContext().Idents.get(".cxx_destruct"); local
3003 Selector cxxSelector = getContext().Selectors.getSelector(0, &II);
3020 IdentifierInfo *II = &getContext().Idents.get(".cxx_construct");
3021 Selector cxxSelector = getContext().Selectors.getSelector(0, &II);
/external/chromium_org/third_party/usb_ids/
H A Dusb.ids112 5601 at76c510 Prism-II 802.11b Access Point
727 d738 Propox JTAGcable II
738 e88a Expert mouseCLOCK USB II
740 e88c Expert mouseCLOCK USB II HBG
1139 1002 Nomad II
1165 4004 Nomad II MG
1620 8484 LPC-U30 Webcam II
1622 8888 Electronics VCS Camera II(LPC-U20)
2262 08c7 QuickCam OEM Cisco VT Camera II
2591 0602 ATI Remote Wonder II Inpu
[all...]
/external/llvm/include/llvm/IR/
H A DPatternMatch.h1138 IntrinsicInst *II = dyn_cast<IntrinsicInst>(V); local
1139 return II && II->getIntrinsicID() == ID;
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp489 void visitInvokeInst (InvokeInst &II) { argument
490 visitCallSite(&II);
491 visitTerminatorInst(II);
/external/clang/include/clang/AST/
H A DDecl.h313 LabelDecl(DeclContext *DC, SourceLocation IdentL, IdentifierInfo *II, argument
315 : NamedDecl(Label, DC, IdentL, II), TheStmt(S), LocStart(StartL) {}
319 SourceLocation IdentL, IdentifierInfo *II);
321 SourceLocation IdentL, IdentifierInfo *II,
H A DExprCXX.h1857 PseudoDestructorTypeStorage(IdentifierInfo *II, SourceLocation Loc)
1858 : Type(II), Location(Loc) { }
2012 void setDestroyedType(IdentifierInfo *II, SourceLocation Loc) {
2013 DestroyedType = PseudoDestructorTypeStorage(II, Loc);
H A DStmt.h1629 if (IdentifierInfo *II = getOutputIdentifier(i))
1630 return II->getName();
1657 if (IdentifierInfo *II = getInputIdentifier(i))
1658 return II->getName();
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp507 Record *II = R.getClass("IInst"); local
516 ClassMap[II] = ClassI;
2352 for (auto *II : (*I)->getDependencies()) {
2353 if (std::find(Defs.begin(), Defs.end(), II) != Defs.end())

Completed in 649 milliseconds

<<11121314