HomeSort by relevance Sort by last modified time
    Searched defs:II (Results 176 - 200 of 332) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Basic/
IdentifierTable.h 98 /// This is intended to be used for string literals only: II->isStr("foo").
388 /// \p II is allowed to be null, in which case objects of this type have
391 IdentifierInfo *const II;
395 PoisonIdentifierRAIIObject(IdentifierInfo *II, bool NewValue)
396 : II(II), OldValue(II ? II->isPoisoned() : false) {
397 if(II)
398 II->setIsPoisoned(NewValue)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/IR/
CallSite.h 67 CallSiteBase(InvokeTy *II) : I(II, false) { assert(II); }
68 explicit CallSiteBase(ValTy *II) { *this = get(II); }
75 if (InstrTy *II = dyn_cast<InstrTy>(V)) {
76 if (II->getOpcode() == Instruction::Call)
77 return CallSiteBase(static_cast<CallTy*>(II));
78 else if (II->getOpcode() == Instruction::Invoke)
79 return CallSiteBase(static_cast<InvokeTy*>(II));
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Basic/
IdentifierTable.h 98 /// This is intended to be used for string literals only: II->isStr("foo").
388 /// \p II is allowed to be null, in which case objects of this type have
391 IdentifierInfo *const II;
395 PoisonIdentifierRAIIObject(IdentifierInfo *II, bool NewValue)
396 : II(II), OldValue(II ? II->isPoisoned() : false) {
397 if(II)
398 II->setIsPoisoned(NewValue)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/IR/
CallSite.h 67 CallSiteBase(InvokeTy *II) : I(II, false) { assert(II); }
68 explicit CallSiteBase(ValTy *II) { *this = get(II); }
75 if (InstrTy *II = dyn_cast<InstrTy>(V)) {
76 if (II->getOpcode() == Instruction::Call)
77 return CallSiteBase(static_cast<CallTy*>(II));
78 else if (II->getOpcode() == Instruction::Invoke)
79 return CallSiteBase(static_cast<InvokeTy*>(II));
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Basic/
IdentifierTable.h 98 /// This is intended to be used for string literals only: II->isStr("foo").
388 /// \p II is allowed to be null, in which case objects of this type have
391 IdentifierInfo *const II;
395 PoisonIdentifierRAIIObject(IdentifierInfo *II, bool NewValue)
396 : II(II), OldValue(II ? II->isPoisoned() : false) {
397 if(II)
398 II->setIsPoisoned(NewValue)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/IR/
CallSite.h 67 CallSiteBase(InvokeTy *II) : I(II, false) { assert(II); }
68 explicit CallSiteBase(ValTy *II) { *this = get(II); }
75 if (InstrTy *II = dyn_cast<InstrTy>(V)) {
76 if (II->getOpcode() == Instruction::Call)
77 return CallSiteBase(static_cast<CallTy*>(II));
78 else if (II->getOpcode() == Instruction::Invoke)
79 return CallSiteBase(static_cast<InvokeTy*>(II));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_weakref.py 438 class II(object):
442 I = II()
446 # Now J and II are each in a self-cycle (as all new-style class
458 # in just the right order (I last). Calling tp_clear on II leaves
466 # attributes ("J") in the class dict first. The class (II) wants to
467 # search II.__mro__, but that's NULL. The result was a segfault in
469 del I, J, II
475 # This is just like test_callback_in_cycle_1, except that II is an
478 # get cleared from I.__dict__ before 'wr', and 'J' was never in II's
480 # the old-style II doesn't have a NULL __mro__ (it doesn't have any
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 57 mutable IdentifierInfo *II;
71 : II(nullptr), FuncName(FuncName), RequiredArgs(RequiredArgs) {}
    [all...]
  /external/clang/lib/AST/
CommentSema.cpp 344 const IdentifierInfo *II = Param->getIdentifier();
345 if (II)
346 CorrectedName = II->getName();
    [all...]
TypePrinter.cpp 797 IdentifierInfo *II = D->getIdentifier();
798 OS << II->getName();
964 if (const IdentifierInfo *II = D->getIdentifier())
965 OS << II->getName();
    [all...]
  /external/clang/lib/Lex/
Pragma.cpp 402 IdentifierInfo *II = LookUpIdentifierInfo(Tok);
405 if (II->isPoisoned()) continue;
408 if (isMacroDefined(II))
412 II->setIsPoisoned();
413 if (II->isFromAST())
414 II->setChangedSinceDeserialization();
790 IdentifierInfo *II = Tok.getIdentifierInfo();
791 if (II->isStr("ON"))
793 else if (II->isStr("OFF"))
795 else if (II->isStr("DEFAULT")
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp 792 IdentifierInfo *II = Tok.getIdentifierInfo();
    [all...]
ParseOpenMP.cpp 432 IdentifierInfo *II = Tok.getIdentifierInfo();
433 StringRef ClauseName = II->getName();
635 IdentifierInfo *II = Tok.getIdentifierInfo();
636 StringRef ClauseName = II->getName();
    [all...]
ParsePragma.cpp 380 IdentifierInfo *II =
382 Actions.ActOnPragmaDump(getCurScope(), Tok.getLocation(), II);
725 auto *II = Tok.getIdentifierInfo();
726 StringRef Section = llvm::StringSwitch<StringRef>(II->getName())
    [all...]
ParseStmt.cpp 960 IdentifierInfo *II = Tok.getIdentifierInfo();
962 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc));
    [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp 681 IdentifierInfo *II = R.getLookupName().getAsIdentifierInfo();
682 if (II) {
684 if (II == S.getASTContext().getMakeIntegerSeqName()) {
687 } else if (II == S.getASTContext().getTypePackElementName()) {
694 if (unsigned BuiltinID = II->getBuiltinID()) {
701 if (NamedDecl *D = S.LazilyCreateBuiltin((IdentifierInfo *)II,
    [all...]
SemaOpenMP.cpp 621 IdentifierInfo *II = &SemaRef.PP.getIdentifierTable().get(Name);
624 VarDecl::Create(SemaRef.Context, DC, Loc, Loc, II, Type, TInfo, SC_None);
    [all...]
SemaPseudoObject.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 215 if (!CD.II)
216 CD.II = &getState()->getStateManager().getContext().Idents.get(CD.FuncName);
217 if (getCalleeIdentifier() != CD.II)
363 const IdentifierInfo *II = D->getIdentifier();
364 if (!II)
373 if (II->isStr("pthread_setspecific"))
378 if (II->isStr("xpc_connection_set_context"))
382 if (II->isStr("funopen"))
385 StringRef FName = II->getName();
    [all...]
  /external/clang/test/SemaCXX/
attr-noreturn.cpp 84 struct II : AA {};
85 struct JJ : II {};
101 II i;
117 const II& ii = II(); local
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 652 const IntrinsicInst *II = dyn_cast<IntrinsicInst>(CS.getInstruction());
653 return II && II->getIntrinsicID() == IID;
    [all...]
  /external/llvm/lib/CodeGen/
PeepholeOptimizer.cpp     [all...]
WinEHPrepare.cpp 169 auto *II = dyn_cast<InvokeInst>(BB.getTerminator());
170 if (!II)
190 BasicBlock *InvokeUnwindDest = II->getUnwindDest();
199 FuncInfo.InvokeStateMap[II] = BaseState;
203 FuncInfo.InvokeStateMap[II] = FuncInfo.EHPadStateMap[PadInst];
    [all...]
  /external/llvm/lib/IR/
LegacyPassManager.cpp 827 const std::vector<const PassInfo*> &II = PInf->getInterfacesImplemented();
828 for (unsigned i = 0, e = II.size(); i != e; ++i)
829 AvailableAnalysis[II[i]->getTypeInfo()] = P;
964 const std::vector<const PassInfo*> &II = PInf->getInterfacesImplemented();
965 for (unsigned i = 0, e = II.size(); i != e; ++i) {
967 AvailableAnalysis.find(II[i]->getTypeInfo());
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonVLIWPacketizer.cpp     [all...]

Completed in 1055 milliseconds

1 2 3 4 5 6 78 91011>>