/external/llvm/include/llvm/MC/ |
H A D | MCInstrInfo.h | 33 void InitMCInstrInfo(const MCInstrDesc *D, const unsigned *NI, const char *ND, argument 36 InstrNameIndices = NI;
|
/external/libcxxabi/test/ |
H A D | test_demangle.pass.cpp | 29667 const unsigned NI = sizeof(invalid_cases) / sizeof(invalid_cases[0]); variable [all...] |
/external/clang/lib/Analysis/ |
H A D | ThreadSafetyTIL.cpp | 300 size_t NI = I - NumUnreachableBlocks; local 301 Blocks[NI] = Blocks[I]; 302 Blocks[NI]->BlockID = NI;
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGPrinter.cpp | 70 SDNodeIterator NI = SDNodeIterator::begin(TargetNode); local 71 std::advance(NI, I.getNode()->getOperand(I.getOperand()).getResNo()); 72 return NI;
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGPrinter.cpp | 72 SDNodeIterator NI = SDNodeIterator::begin(TargetNode); local 73 std::advance(NI, I.getNode()->getOperand(I.getOperand()).getResNo()); 74 return NI;
|
H A D | ScheduleDAGSDNodes.cpp | 252 for (SelectionDAG::allnodes_iterator NI = DAG->allnodes_begin(), 253 E = DAG->allnodes_end(); NI != E; ++NI) { 254 SDNode *Node = &*NI; 271 for (SelectionDAG::allnodes_iterator NI = DAG->allnodes_begin(), 272 E = DAG->allnodes_end(); NI != E; ++NI) { 273 NI->setNodeId(-1); 292 SDNode *NI = Worklist.pop_back_val(); local 295 for (unsigned i = 0, e = NI [all...] |
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | StringExtras.h | 248 size_t NI = detail::join_items_size(std::forward<Args>(Items)...); local 249 Result.reserve(NI + (sizeof...(Items) - 1) * NS + 1);
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
H A D | LowerInvoke.cpp | 243 BasicBlock::iterator NI = II->getNormalDest()->getFirstInsertionPt(); local 246 InvokeNum, false, NI); 314 Instruction *NI = InsertValueInst::Create(AI, EI, 0); local 315 NI->insertAfter(EI); 316 AI->replaceAllUsesWith(NI); 319 NI->setOperand(0, AI);
|
H A D | SimplifyCFG.cpp | 584 Instruction *NI = Builder.CreateBr(ThisDef); local 585 (void) NI; 591 << "Through successor TI: " << *TI << "Leaving: " << *NI << "\n"); local 649 Instruction *NI = Builder.CreateBr(TheRealDest); local 650 (void) NI; 653 << "Through successor TI: " << *TI << "Leaving: " << *NI << "\n"); local
|
/external/llvm/utils/TableGen/ |
H A D | DAGISelMatcherGen.cpp | 210 const SDNodeInfo &NI = CGP.getSDNodeInfo(CGP.getSDNodeNamed("imm")); local 211 AddMatcher(new CheckOpcodeMatcher(NI));
|
H A D | CodeGenDAGPatterns.cpp | 1805 const SDNodeInfo &NI = CDP.getSDNodeInfo(getOperator()); local 1808 if (NI.getNumOperands() >= 0 && 1809 getNumChildren() != (unsigned)NI.getNumOperands()) { 1811 itostr(NI.getNumOperands()) + " operands!"); 1815 bool MadeChange = NI.ApplyTypeConstraints(this, TP);
|
/external/swiftshader/third_party/LLVM/utils/TableGen/ |
H A D | DAGISelMatcherGen.cpp | 211 const SDNodeInfo &NI = CGP.getSDNodeInfo(CGP.getSDNodeNamed("imm")); local 212 AddMatcher(new CheckOpcodeMatcher(NI));
|
H A D | CodeGenDAGPatterns.cpp | 1507 const SDNodeInfo &NI = CDP.getSDNodeInfo(getOperator()); local 1510 if (NI.getNumOperands() >= 0 && 1511 getNumChildren() != (unsigned)NI.getNumOperands()) 1513 itostr(NI.getNumOperands()) + " operands!"); 1515 bool MadeChange = NI.ApplyTypeConstraints(this, TP);
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
H A D | SjLjEHPrepare.cpp | 277 Instruction *NI = InsertValueInst::Create(AI, EI, 0); local 278 NI->insertAfter(EI); 279 AI->replaceAllUsesWith(NI); 282 NI->setOperand(0, AI); 812 Instruction *NI = InsertValueInst::Create(AI, EI, 0); local 813 NI->insertAfter(EI); 814 AI->replaceAllUsesWith(NI); 818 NI->setOperand(0, AI);
|
/external/swiftshader/third_party/LLVM/lib/Target/CppBackend/ |
H A D | CPPBackend.cpp | 408 NameSet::iterator NI = UsedNames.find(name); local 409 if (NI != UsedNames.end()) 424 NameSet::iterator NI = UsedNames.find(name); local 425 if (NI != UsedNames.end())
|
/external/clang/include/clang/AST/ |
H A D | StmtOpenMP.h | 483 void setNumIterations(Expr *NI) { argument 488 *std::next(child_begin(), NumIterationsOffset) = NI;
|
/external/clang/lib/StaticAnalyzer/Core/ |
H A D | BugReporterVisitors.cpp | 928 const ExplodedNode *NI = N; local 930 ProgramPoint ProgPoint = NI->getLocation(); 943 NI = NI->getFirstPred(); 944 } while (NI);
|
/external/llvm/lib/Transforms/Utils/ |
H A D | InlineFunction.cpp | 706 Instruction *NI = dyn_cast<Instruction>(VMI->second); local 707 if (!NI) 710 if (MDNode *PM = NI->getMetadata(LLVMContext::MD_mem_parallel_loop_access)) { 712 NI->setMetadata(LLVMContext::MD_mem_parallel_loop_access, M); 713 } else if (NI->mayReadOrWriteMemory()) { 714 NI->setMetadata(LLVMContext::MD_mem_parallel_loop_access, M); 793 Instruction *NI = dyn_cast<Instruction>(VMI->second); local 794 if (!NI) 797 if (MDNode *M = NI->getMetadata(LLVMContext::MD_alias_scope)) { 805 NI 891 Instruction *NI = dyn_cast<Instruction>(VMI->second); local [all...] |
H A D | SimplifyCFG.cpp | 778 Instruction *NI = Builder.CreateBr(ThisDef); local 779 (void)NI; 785 << "Through successor TI: " << *TI << "Leaving: " << *NI local 865 Instruction *NI = Builder.CreateBr(TheRealDest); local 866 (void)NI; 869 << "Through successor TI: " << *TI << "Leaving: " << *NI local
|
/external/clang/lib/Sema/ |
H A D | SemaDeclAttr.cpp | 2697 DeclarationNameInfo NI; local 2705 NI = DRE->getNameInfo(); 2708 << NI.getName(); 2715 NI = ULE->getNameInfo(); 2718 << NI.getName(); 2730 << NI.getName(); 2741 << NI.getName() << ParamTy << Ty;
|
/external/llvm/lib/CodeGen/ |
H A D | MachinePipeliner.cpp | 1831 for (SUnit *NI : N) { 1833 computePath(NI, Path, NodesAdded, I, Visited); 1842 for (SUnit *NI : N) { 1844 computePath(NI, Path, I, NodesAdded, Visited); 1918 NodeSet &NI = *I; local 1921 if (NI.getNode(0)->NodeNum == NJ.getNode(0)->NodeNum) { 1922 if (NJ.compareRecMII(NI) > 0) 1923 NI.setRecMII(NJ.getRecMII()); 2125 SetVector<SUnit *>::iterator NI = NodeOrder.begin(); local 2128 SUnit *SU = *NI; [all...] |
/external/clang/lib/CodeGen/ |
H A D | CGOpenMPRuntime.cpp | 6428 auto NI = Attr->alignments_begin(); local 6443 (*NI) ? (*NI)->EvaluateKnownConstInt(C) 6447 ++NI;
|
/external/clang/tools/libclang/ |
H A D | CIndex.cpp | 2998 const DeclarationNameInfo &NI, SourceRange QLoc, 3004 const DeclarationName::NameKind Kind = NI.getName().getNameKind(); 3012 Pieces.push_back(NI.getLoc()); 3019 NI.getInfo().CXXOperatorName.BeginOpNameLoc)); 3021 NI.getInfo().CXXOperatorName.EndOpNameLoc)); 2997 buildPieces(unsigned NameFlags, bool IsMemberRefExpr, const DeclarationNameInfo &NI, SourceRange QLoc, const SourceRange *TemplateArgsLoc = nullptr) argument
|
/external/robolectric/v3/runtime/ |
H A D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |