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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 57 mutable IdentifierInfo *II;
72 : II(nullptr), IsLookupDone(false), FuncName(FuncName),
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 57 mutable IdentifierInfo *II;
72 : II(nullptr), IsLookupDone(false), FuncName(FuncName),
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_weakref.py 459 class II(object):
463 I = II()
467 # Now J and II are each in a self-cycle (as all new-style class
479 # in just the right order (I last). Calling tp_clear on II leaves
487 # attributes ("J") in the class dict first. The class (II) wants to
488 # search II.__mro__, but that's NULL. The result was a segfault in
490 del I, J, II
496 # This is just like test_callback_in_cycle_1, except that II is an
499 # get cleared from I.__dict__ before 'wr', and 'J' was never in II's
501 # the old-style II doesn't have a NULL __mro__ (it doesn't have an
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_weakref.py 459 class II(object):
463 I = II()
467 # Now J and II are each in a self-cycle (as all new-style class
479 # in just the right order (I last). Calling tp_clear on II leaves
487 # attributes ("J") in the class dict first. The class (II) wants to
488 # search II.__mro__, but that's NULL. The result was a segfault in
490 del I, J, II
496 # This is just like test_callback_in_cycle_1, except that II is an
499 # get cleared from I.__dict__ before 'wr', and 'J' was never in II's
501 # the old-style II doesn't have a NULL __mro__ (it doesn't have an
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_weakref.py 459 class II(object):
463 I = II()
467 # Now J and II are each in a self-cycle (as all new-style class
479 # in just the right order (I last). Calling tp_clear on II leaves
487 # attributes ("J") in the class dict first. The class (II) wants to
488 # search II.__mro__, but that's NULL. The result was a segfault in
490 del I, J, II
496 # This is just like test_callback_in_cycle_1, except that II is an
499 # get cleared from I.__dict__ before 'wr', and 'J' was never in II's
501 # the old-style II doesn't have a NULL __mro__ (it doesn't have an
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_weakref.py 459 class II(object):
463 I = II()
467 # Now J and II are each in a self-cycle (as all new-style class
479 # in just the right order (I last). Calling tp_clear on II leaves
487 # attributes ("J") in the class dict first. The class (II) wants to
488 # search II.__mro__, but that's NULL. The result was a segfault in
490 del I, J, II
496 # This is just like test_callback_in_cycle_1, except that II is an
499 # get cleared from I.__dict__ before 'wr', and 'J' was never in II's
501 # the old-style II doesn't have a NULL __mro__ (it doesn't have an
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ArraysTest.java 222 public void test_binarySearch$II() {
577 public void test_fill$II() {
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 44 void Decl::updateOutOfDate(IdentifierInfo &II) const {
45 getASTContext().getExternalSource()->updateOutOfDateIdentifier(II);
918 const IdentifierInfo *II = ND->getIdentifier();
919 return II && II->isStr("std");
    [all...]
ItaniumMangle.cpp 489 void mangleSourceName(const IdentifierInfo *II);
760 const IdentifierInfo *II = NS->getOriginalNamespace()->getIdentifier();
761 return II && II->isStr("std");
    [all...]
  /external/clang/lib/CodeGen/
CGBlocks.cpp     [all...]
  /external/clang/lib/Driver/
Driver.cpp     [all...]
  /external/clang/lib/Lex/
Lexer.cpp 37 if (IdentifierInfo *II = getIdentifierInfo())
38 return II->getObjCKeywordID() == objcKey;
368 if (const IdentifierInfo *II = Tok.getIdentifierInfo()) {
370 Buffer = II->getNameStart();
371 return II->getLength();
    [all...]
PPDirectives.cpp 123 static MacroDiag shouldWarnOnMacroDef(Preprocessor &PP, IdentifierInfo *II) {
125 StringRef Text = II->getName();
128 if (II->isKeyword(Lang))
135 static MacroDiag shouldWarnOnMacroUndef(Preprocessor &PP, IdentifierInfo *II) {
137 StringRef Text = II->getName();
228 IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
229 if (!II) {
234 II = getIdentifierInfo(Spelling);
236 if (!II->isCPlusPlusOperatorKeyword())
244 << II << MacroNameTok.getKind()
    [all...]
  /external/clang/lib/Parse/
ParseDeclCXX.cpp     [all...]
ParseExprCXX.cpp 82 IdentifierInfo &II, CXXScopeSpec &SS) {
92 TemplateName.setIdentifier(&II, Tok.getLocation());
423 IdentifierInfo &II = *Tok.getIdentifierInfo();
434 if (Actions.IsInvalidUnlessNestedName(getCurScope(), SS, II,
463 getCurScope(), SS, Tok.getLocation(), II, ObjectType)) {
484 *LastII = &II;
499 if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(), II, IdLoc, CCLoc,
517 CheckForTemplateAndDigraph(Next, ObjectType, EnteringContext, II, SS);
524 TemplateName.setIdentifier(&II, Tok.getLocation());
557 << II.getName(
    [all...]
  /external/clang/lib/Sema/
SemaCast.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 117 const IdentifierInfo *II = FD->getIdentifier();
118 if (!II || !(II->getName() == "main" && FD->getNumParams() > 0))
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]
SelectionDAGISel.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsFastISel.cpp 99 bool fastLowerIntrinsicCall(const IntrinsicInst *II) override;
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopRerollPass.cpp 813 if (Instruction *II = dyn_cast<Instruction>(I)) {
814 BaseUsers.push_back(II);
    [all...]
RewriteStatepointsForGC.cpp 429 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
430 switch (II->getIntrinsicID()) {
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 62 bool llvm::InlineFunction(InvokeInst *II, InlineFunctionInfo &IFI,
64 return InlineFunction(CallSite(II), IFI, CalleeAAR, InsertLifetime);
77 LandingPadInliningInfo(InvokeInst *II)
78 : OuterResumeDest(II->getUnwindDest()), InnerResumeDest(nullptr),
83 llvm::BasicBlock *InvokeBB = II->getParent();
484 InvokeInst *II =
487 II->setDebugLoc(CI->getDebugLoc());
488 II->setCallingConv(CI->getCallingConv());
489 II->setAttributes(CI->getAttributes());
493 CI->replaceAllUsesWith(II);
    [all...]

Completed in 696 milliseconds

1 2 3 4 5 6 7 8 91011>>