Searched defs:NV (Results 1 - 10 of 10) sorted by relevance

/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractMapEntryTest.java34 private static final Integer NV = null; field in class:AbstractMapEntryTest
57 assertEquals("foo=null", entry("foo", NV).toString());
58 assertEquals("null=null", entry(NK, NV).toString());
74 assertEquals(control("bar", NV), entry("bar", NV));
88 assertEquals(control("bar", NV).hashCode(), entry("bar", NV).hashCode());
89 assertEquals(control(NK, NV).hashCode(), entry(NK, NV).hashCode());
/external/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp490 Value *NV = UndefValue::get(PN->getType()); local
491 PN->replaceAllUsesWith(NV);
493 VMap[OldI] = NV;
H A DSimplifyCFG.cpp1555 SelectInst *NV = local
1557 PN->replaceAllUsesWith(NV);
1558 NV->takeName(PN);
2242 Value *NV = cast<SelectInst> local
2244 PN->setIncomingValue(PBBIdx, NV);
/external/clang/include/clang/AST/
H A DASTVector.h334 void resize(ASTContext &C, unsigned N, const T &NV) { argument
341 construct_range(this->end(), this->begin()+N, NV);
/external/llvm/include/llvm/ADT/
H A DSmallVector.h407 void resize(unsigned N, const T &NV) { argument
414 std::uninitialized_fill(this->end(), this->begin()+N, NV);
/external/llvm/lib/VMCore/
H A DMetadata.cpp81 virtual void allUsesReplacedWith(Value *NV);
90 void MDNodeOperand::allUsesReplacedWith(Value *NV) { argument
91 getParent()->replaceOperand(this, NV);
/external/llvm/lib/Linker/
H A DLinkModules.cpp727 GlobalValue::VisibilityTypes NV; local
729 if (getLinkageResult(DGV, SGV, NewLinkage, NV, LinkFromSrc))
731 NewVisibility = NV;
789 GlobalValue::VisibilityTypes NV; local
790 if (getLinkageResult(DGV, SF, NewLinkage, NV, LinkFromSrc))
792 NewVisibility = NV;
843 GlobalValue::VisibilityTypes NV; local
845 if (getLinkageResult(DGV, SGA, NewLinkage, NV, LinkFromSrc))
847 NewVisibility = NV;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp1199 Value *NV = NC; local
1200 if (OldRetTy != NV->getType() && !Caller->use_empty()) {
1201 if (!NV->getType()->isVoidTy()) {
1204 NV = NC = CastInst::Create(opcode, NC, OldRetTy);
1218 NV = UndefValue::get(Caller->getType());
1223 ReplaceInstUsesWith(*Caller, NV);
/external/webkit/Source/WebKit/android/content/
H A Daddress_detector.cpp708 NV = 38, // NV Nevada enumerator in enum:USState
821 NM, NM, NM, NM, NM, TX, XX, XX, XX, NV, // 880-889
822 NV, NV, XX, NV, NV, NV, XX, NV, NV, X
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2840 Value *NV = CI->getOperand(1); local
2841 if (NV == LF.OperandValToReplace) {
2843 CI->setOperand(0, NV);
2844 NV = CI->getOperand(1);
2849 const SCEV *N = SE.getSCEV(NV);

Completed in 725 milliseconds