HomeSort by relevance Sort by last modified time
    Searched defs:II (Results 51 - 75 of 137) sorted by null

1 23 4 5 6

  /external/clang/lib/Lex/
PTHLexer.cpp 85 IdentifierInfo *II = PTHMgr.GetIdentifierInfo(IdentifierID-1);
87 Tok.setIdentifierInfo(II);
91 Tok.setKind(II->getTokenID());
93 if (II->isHandleIdentifierCase())
583 IdentifierInfo *II = new ((void*) Mem) IdentifierInfo();
586 PerIDCache[PersistentID] = II;
587 assert(II->getNameStart() && II->getNameStart()[0] != '\0');
588 return II;
Pragma.cpp 399 IdentifierInfo *II = LookUpIdentifierInfo(Tok);
402 if (II->isPoisoned()) continue;
405 if (II->hasMacroDefinition())
409 II->setIsPoisoned();
410 if (II->isFromAST())
411 II->setChangedSinceDeserialization();
791 IdentifierInfo *II = Tok.getIdentifierInfo();
792 if (II->isStr("ON"))
794 else if (II->isStr("OFF"))
796 else if (II->isStr("DEFAULT")
    [all...]
PPDirectives.cpp 136 IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
137 if (!II) {
142 II = getIdentifierInfo(Spelling);
144 if (!II->isCPlusPlusOperatorKeyword())
152 << II << MacroNameTok.getKind();
156 MacroNameTok.setIdentifierInfo(II);
159 if (isDefineUndef && II->getPPKeywordID() == tok::pp_defined) {
164 if (isDefineUndef == 2 && II->hasMacroDefinition() &&
165 getMacroInfo(II)->isBuiltinMacro()) {
713 if (IdentifierInfo *II = Result.getIdentifierInfo())
    [all...]
  /external/clang/lib/Parse/
ParseTemplate.cpp     [all...]
ParseExpr.cpp 732 IdentifierInfo &II = *Tok.getIdentifierInfo();
737 (Actions.getTypeName(II, ILoc, getCurScope()) ||
739 (&II == Ident_super && getCurScope()->isInObjcMethodScope()))) {
751 Res = Actions.ActOnClassPropertyRefExpr(II, PropertyName,
760 if (getLangOpts().ObjC1 && &II == Ident_super && !InMessageExpression &&
781 if (ParsedType Typ = Actions.getTypeName(II, ILoc, getCurScope()))
    [all...]
ParsePragma.cpp 727 const IdentifierInfo *II = Tok.getIdentifierInfo();
728 if (II->isStr("show")) {
732 if (II->isStr("push")) {
734 } else if (II->isStr("pop")) {
825 const IdentifierInfo *II = Tok.getIdentifierInfo();
826 if (II->isStr("on")) {
830 else if (II->isStr("off") || II->isStr("reset"))
886 const IdentifierInfo *II = Tok.getIdentifierInfo();
887 if (II->isStr("native")
    [all...]
ParseStmt.cpp 917 IdentifierInfo *II = Tok.getIdentifierInfo();
919 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc));
    [all...]
Parser.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 335 const IdentifierInfo *II = D->getIdentifier();
336 if (!II)
345 if (II->isStr("pthread_setspecific"))
350 if (II->isStr("xpc_connection_set_context"))
354 if (II->isStr("funopen"))
357 StringRef FName = II->getName();
    [all...]
ExprEngineCallAndReturn.cpp 687 const IdentifierInfo &II = Ctx.Idents.get(Name);
688 DeclarationName DeclName = Ctx.DeclarationNames.getIdentifier(&II);
731 if (const IdentifierInfo *II = RD->getDeclName().getAsIdentifierInfo())
732 if (II->isStr("shared_ptr"))
    [all...]
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 345 IdentifierInfo *II = FD->getIdentifier();
346 if (II && II->getName().startswith("__inline"))
567 IdentifierInfo *II = ND->getIdentifier();
568 if (II)
569 return II->getName();
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 727 const IntrinsicInst *II = dyn_cast<IntrinsicInst>(CS.getInstruction());
728 if (II != nullptr)
729 switch (II->getIntrinsicID()) {
736 if (ConstantInt *LenCI = dyn_cast<ConstantInt>(II->getArgOperand(2)))
738 assert(Loc.Ptr == II->getArgOperand(ArgIdx) &&
747 assert(Loc.Ptr == II->getArgOperand(ArgIdx) &&
749 Loc.Size = cast<ConstantInt>(II->getArgOperand(0))->getZExtValue();
754 assert(Loc.Ptr == II->getArgOperand(ArgIdx) &&
756 Loc.Size = cast<ConstantInt>(II->getArgOperand(1))->getZExtValue();
761 assert(Loc.Ptr == II->getArgOperand(ArgIdx) &
    [all...]
ValueTracking.cpp 743 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
744 switch (II->getIntrinsicID()) {
750 if (II->getArgOperand(1) == ConstantInt::getTrue(II->getContext()))
767 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I->getOperand(0))) {
771 switch (II->getIntrinsicID()) {
775 computeKnownBitsAddSub(true, II->getArgOperand(0),
776 II->getArgOperand(1), false, KnownZero,
781 computeKnownBitsAddSub(false, II->getArgOperand(0),
782 II->getArgOperand(1), false, KnownZero
    [all...]
  /external/llvm/lib/CodeGen/
PeepholeOptimizer.cpp 656 DenseMap<unsigned, MachineInstr*>::iterator II = ImmDefMIs.find(Reg);
657 assert(II != ImmDefMIs.end());
658 if (TII->FoldImmediate(MI, II->second, Reg, MRI)) {
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonVLIWPacketizer.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 641 InvokeInst *II = dyn_cast<InvokeInst>(PN->getIncomingValue(i));
642 if (!II) continue;
643 if (II->getParent() != PN->getIncomingBlock(i))
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcherGen.cpp 212 if (IntInit *II = dyn_cast<IntInit>(N->getLeafValue())) {
221 return AddMatcher(new CheckIntegerMatcher(II->getValue()));
326 if (IntInit *II = dyn_cast<IntInit>(N->getChild(1)->getLeafValue())) {
327 if (!isPowerOf2_32(II->getValue())) { // Don't bother with single bits.
336 AddMatcher(new CheckAndImmMatcher(II->getValue()));
338 AddMatcher(new CheckOrImmMatcher(II->getValue()));
615 if (IntInit *II = dyn_cast<IntInit>(N->getLeafValue())) {
616 AddMatcher(new EmitIntegerMatcher(II->getValue(), N->getType(0)));
689 CodeGenInstruction &II = CGT.getInstruction(Op);
690 return II.mayLoad || II.mayStore
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ArraysTest.java 211 public void test_binarySearch$II() {
566 public void test_fill$II() {
    [all...]
  /external/clang/lib/AST/
CommentSema.cpp 344 const IdentifierInfo *II = Param->getIdentifier();
345 if (II)
346 CorrectedName = II->getName();
    [all...]
DeclBase.cpp 44 void Decl::updateOutOfDate(IdentifierInfo &II) const {
45 getASTContext().getExternalSource()->updateOutOfDateIdentifier(II);
814 const IdentifierInfo *II = ND->getIdentifier();
815 return II && II->isStr("std");
    [all...]
TypePrinter.cpp 745 IdentifierInfo *II = D->getIdentifier();
746 OS << II->getName();
899 if (const IdentifierInfo *II = D->getIdentifier())
900 OS << II->getName();
    [all...]
  /external/clang/lib/Driver/
Driver.cpp     [all...]
  /external/clang/lib/Sema/
SemaPseudoObject.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 347 mutable IdentifierInfo* II;
349 CFNumberCreateChecker() : II(nullptr) {}
438 if (!II)
439 II = &Ctx.Idents.get("CFNumberCreate");
441 if (FD->getIdentifier() != II || CE->getNumArgs() != 3)
    [all...]
  /external/llvm/include/llvm/IR/
PatternMatch.h     [all...]

Completed in 520 milliseconds

1 23 4 5 6